Lots of work... Add an entry widget (semi-broken), image burning now works, xdnd stuff.

This commit is contained in:
Jaime Thomas
2008-12-09 01:12:16 +00:00
parent cefb0a7a76
commit 32640312d9
19 changed files with 913 additions and 45 deletions

View File

@ -1,6 +1,8 @@
#ifndef ECDB_MISC_H
#define ECDB_MISC_H
// At some point I should move the ecdb_project_* stuff into its own file,
// and the init and shutdown stuff into ecdb.c
Ecdb_Project *ecdb_project_new(void);
int ecdb_project_init(Ecdb_Project *proj);
void ecdb_project_destroy(Ecdb_Project *proj);
@ -16,4 +18,12 @@ char *ecdb_strip_next_argument(const char *strip);
char *ecdb_strip_string(const char *strip);
void ecdb_button_icon_swallow(Evas *e, Evas_Object *b,
const char *iname);
// Also consider moving dnd stuff into its own file
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);
#endif