Work on a combo

This commit is contained in:
Jaime Thomas
2008-12-19 05:48:23 +00:00
parent 8f7fe94f52
commit c0bba3cb11
13 changed files with 509 additions and 60 deletions

View File

@ -16,4 +16,12 @@ Evas_Object *ecdb_entry_add(Evas_Object *parent, const char *name);
void ecdb_entry_text_set(Evas_Object *e, const char *text);
char *ecdb_entry_text_get(Evas_Object *e);
// I am unsure about whether to use elementary here or not... It would be nice
Evas_Object *ecdb_combo_add(Evas_Object *parent, const char *name);
void ecdb_combo_header_set(Evas_Object *c, const char *text);
void ecdb_combo_append(Evas_Object *c, Evas_Object *o);
void ecdb_combo_expand(Evas_Object *c);
void ecdb_combo_collapse(Evas_Object *c);
#endif