From 4a1afdf24399aec5fa5f724661eae926955da195 Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Thu, 5 Aug 2010 10:05:16 +0900 Subject: [PATCH] ingroup elementary option added --- src/lib/elm_cbhm_helper.c | 1 + src/lib/elm_label.c | 1 + src/lib/elm_navigationbar.c | 3 ++- src/lib/elm_slider.c | 4 ++++ 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_cbhm_helper.c b/src/lib/elm_cbhm_helper.c index 9e8a599..cd4876e 100644 --- a/src/lib/elm_cbhm_helper.c +++ b/src/lib/elm_cbhm_helper.c @@ -7,6 +7,7 @@ /** * @defgroup CBHM_helper CBHM_helper + * @ingroup Elementary * * retrieving date from Clipboard History Manager * CBHM_helper supports to get CBHM's contents diff --git a/src/lib/elm_label.c b/src/lib/elm_label.c index ead6299..d68c7ad 100644 --- a/src/lib/elm_label.c +++ b/src/lib/elm_label.c @@ -3,6 +3,7 @@ /** * @defgroup Label Label + * @ingroup Elementary * * Display text, with simple html-like markup. The theme of course * can invent new markup tags and style them any way it likes diff --git a/src/lib/elm_navigationbar.c b/src/lib/elm_navigationbar.c index 001d756..c41f5a2 100644 --- a/src/lib/elm_navigationbar.c +++ b/src/lib/elm_navigationbar.c @@ -2,7 +2,8 @@ #include "elm_priv.h" /** - * @addtogroup NavigationBar NavigationBar + * @defgroup NavigationBar NavigationBar + * @ingroup Elementary * * The pager is an object that allows flipping (with animation) between 1 or * more of objects, much like a stack of windows within the window. diff --git a/src/lib/elm_slider.c b/src/lib/elm_slider.c index 2f9d466..7027d92 100644 --- a/src/lib/elm_slider.c +++ b/src/lib/elm_slider.c @@ -295,6 +295,8 @@ _drag(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, ecore_timer_del(wd->mv_timer); wd->mv_timer = NULL; } + edje_object_signal_emit(wd->slider, "elm,state,drag", "elm"); + edje_object_message_signal_process(wd->slider); _val_fetch(data); _units_set(data); _indicator_set(data); @@ -313,6 +315,8 @@ _drag_start(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUS elm_widget_scroll_hold_push(data); _val_fetch(data); evas_object_smart_callback_call(data, SIG_DRAG_START, NULL); + edje_object_signal_emit(wd->slider, "elm,state,drag", "elm"); + edje_object_message_signal_process(wd->slider); _units_set(data); _indicator_set(data); } -- 2.7.4