2008-12-09 19:46:00 +00:00
|
|
|
/* vim: set sw=3 ts=3 sts=3 expandtab: */
|
2008-04-01 21:30:41 +00:00
|
|
|
#ifndef ECDB_MISC_H
|
|
|
|
#define ECDB_MISC_H
|
|
|
|
|
2008-12-09 01:12:16 +00:00
|
|
|
// At some point I should move the ecdb_project_* stuff into its own file,
|
|
|
|
// and the init and shutdown stuff into ecdb.c
|
2008-12-09 05:47:59 +00:00
|
|
|
Ecdb_Project *ecdb_project_new(void);
|
|
|
|
int ecdb_project_init(Ecdb_Project *proj);
|
|
|
|
void ecdb_project_destroy(Ecdb_Project *proj);
|
|
|
|
void ecdb_project_type_set(Ecdb_Project *proj, unsigned int t);
|
|
|
|
void ecdb_projects_free(void *data);
|
|
|
|
int ecdb_shutdown(void *data, int type, void *event);
|
|
|
|
int ecdb_burn_init(void);
|
|
|
|
int ecdb_image_init(void);
|
2008-04-01 21:30:41 +00:00
|
|
|
|
2008-09-12 20:13:57 +00:00
|
|
|
/* This is misc after all */
|
2008-12-09 05:47:59 +00:00
|
|
|
int ecdb_match_keyword(const char *chk, const char *key, int len);
|
|
|
|
char *ecdb_strip_next_argument(const char *strip);
|
|
|
|
char *ecdb_strip_string(const char *strip);
|
2008-12-21 04:37:50 +00:00
|
|
|
int ecdb_speed_convert(Ecdb_Drive_Info *drive, int sel);
|
2008-12-09 01:12:16 +00:00
|
|
|
|
|
|
|
// Also consider moving dnd stuff into its own file
|
2008-12-09 05:47:59 +00:00
|
|
|
int ecdb_dnd_position(void *data, int type, void *event);
|
|
|
|
int ecdb_dnd_drop(void *data, int type, void *event);
|
|
|
|
int ecdb_dnd_selection(void *data, int type, void *event);
|
|
|
|
void ecdb_dnd_entry_dnd_set(Evas_Object *o,
|
|
|
|
Ecore_X_Selection_Data_Files *files);
|
2008-12-09 01:12:16 +00:00
|
|
|
|
2008-04-01 21:30:41 +00:00
|
|
|
#endif
|