From 1228afe8e0671cbb022b0456a8c570c80b6d04e7 Mon Sep 17 00:00:00 2001 From: Gustavo Lima Chaves Date: Thu, 18 Nov 2010 10:01:36 +0000 Subject: [PATCH] Elementary's header little fixes. SVN revision: 54682 --- legacy/elementary/src/lib/Elementary.h.in | 32 +++++++++++++++-------- legacy/elementary/src/lib/elm_main.c | 7 +++++ 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/legacy/elementary/src/lib/Elementary.h.in b/legacy/elementary/src/lib/Elementary.h.in index 4af619597e..2ad269d9ce 100644 --- a/legacy/elementary/src/lib/Elementary.h.in +++ b/legacy/elementary/src/lib/Elementary.h.in @@ -634,6 +634,17 @@ extern "C" { EAPI double elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj); EAPI void elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t); EAPI double elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj); + /* available styles: + * default + * anchor + * hoversel_vertical + * hoversel_vertical_entry + */ + /* smart callbacks called: + * "clicked" - the user clicked the button + * "repeated" - the user pressed the button without releasing it + * "unpressed" - when the button is unpressed (released) + */ /* fileselector */ EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent); @@ -656,6 +667,16 @@ extern "C" { EAPI Eina_Bool elm_fileselector_button_is_save_get(const Evas_Object *obj); EAPI void elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value); EAPI Eina_Bool elm_fileselector_button_inwin_mode_get(const Evas_Object *obj); + /* available styles: + * default + * anchor + * hoversel_vertical + * hoversel_vertical_entry + */ + /* smart callbacks called: + * "file,chosen" - the user has selected a path, whose string pointer comes + as event info + */ EAPI Evas_Object *elm_fileselector_entry_add(Evas_Object *parent); EAPI void elm_fileselector_entry_button_label_set(Evas_Object *obj, const char *label); @@ -679,17 +700,6 @@ extern "C" { EAPI Eina_Bool elm_fileselector_entry_inwin_mode_get(const Evas_Object *obj); EAPI void elm_fileselector_entry_selected_set(Evas_Object *obj, const char *path); EAPI const char *elm_fileselector_entry_selected_get(const Evas_Object *obj); - /* available styles: - * default - * anchor - * hoversel_vertical - * hoversel_vertical_entry - */ - /* smart callbacks called: - * "clicked" - the user clicked the button - * "repeated" - the user pressed the button without releasing it - * "unpressed" - when the button is unpressed (released) - */ /* scroller policy */ typedef enum _Elm_Scroller_Policy diff --git a/legacy/elementary/src/lib/elm_main.c b/legacy/elementary/src/lib/elm_main.c index 4a860b79be..d42a924f8b 100644 --- a/legacy/elementary/src/lib/elm_main.c +++ b/legacy/elementary/src/lib/elm_main.c @@ -1401,6 +1401,13 @@ elm_profile_all_set(const char *profile) #endif } +/** + * @defgroup Engine Elementary Engine + * + * These are functions setting and querying which rendering engine + * Elementary will use for drawing its windows' pixels. + */ + /** * Get Elementary's rendering engine in use. *