ingroup elementary option added
authorWooHyun Jung <wh0705.jung@samsung.com>
Thu, 5 Aug 2010 01:05:16 +0000 (10:05 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Thu, 5 Aug 2010 01:05:16 +0000 (10:05 +0900)
src/lib/elm_cbhm_helper.c
src/lib/elm_label.c
src/lib/elm_navigationbar.c
src/lib/elm_slider.c

index 9e8a599..cd4876e 100644 (file)
@@ -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
index ead6299..d68c7ad 100644 (file)
@@ -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
index 001d756..c41f5a2 100644 (file)
@@ -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.
index 2f9d466..7027d92 100644 (file)
@@ -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);
 }