diff --git a/legacy/elementary/ChangeLog b/legacy/elementary/ChangeLog index f660f80650..b44a213c94 100644 --- a/legacy/elementary/ChangeLog +++ b/legacy/elementary/ChangeLog @@ -127,12 +127,10 @@ _Elm_Win_Smart_Data to allow grouping based on engine. 2012-05-29 Rob Bradford - * Move X related cursor items into their own substruct of Elm_Cursor to make supporting cursors on other platforms cleaner. 2012-05-30 Rob Bradford - * Add support for setting the cursor under Wayland: * Introduce a configure option and #define to as per other engines * Add always-built API function to allow identification of running @@ -192,20 +190,13 @@ After the item is long-pressed, it can be moved. 2012-06-14 Michael Bouchaud - * Add an enum to Elm_Calendar_Mark_Repeat_Type: ELM_CALENDAR_LAST_DAY_OF_MONTH 2012-06-15 Michael Bouchaud - * elm_progressbar: elm_progressbar_format_function_set to add a callback function to format the unit string. 2012-06-16 Davide Andreoli - * elm_map: add elm_map_overlay_del_cb_set to be notify when an overlay is deleted. - -2012-06-14 Daniel Willmann - * elm_progressbar: Add "changed" signal to be emitted when the value - is changed. Can be used for complex custom unit formats. diff --git a/legacy/elementary/src/examples/progressbar_example.c b/legacy/elementary/src/examples/progressbar_example.c index e0620c8e01..06e17b38b5 100644 --- a/legacy/elementary/src/examples/progressbar_example.c +++ b/legacy/elementary/src/examples/progressbar_example.c @@ -17,10 +17,9 @@ typedef struct Progressbar_Example Evas_Object *pb2; /* pulsing */ Evas_Object *pb3; Evas_Object *pb4; - Evas_Object *pb5; - Evas_Object *pb6; /* pulsing */ - Evas_Object *pb7; - Evas_Object *pb8; /* pulsing */ + Evas_Object *pb5; /* pulsing */ + Evas_Object *pb6; + Evas_Object *pb7; /* pulsing */ Eina_Bool run; Ecore_Timer *timer; @@ -41,8 +40,7 @@ _progressbar_example_value_set(void *data) elm_progressbar_value_set(example_data.pb1, progress); elm_progressbar_value_set(example_data.pb3, progress); elm_progressbar_value_set(example_data.pb4, progress); - elm_progressbar_value_set(example_data.pb5, progress); - elm_progressbar_value_set(example_data.pb7, progress); + elm_progressbar_value_set(example_data.pb6, progress); if (progress < 1.0) return ECORE_CALLBACK_RENEW; @@ -56,8 +54,8 @@ _progressbar_example_start(void *data, void *event_info) { elm_progressbar_pulse(example_data.pb2, EINA_TRUE); - elm_progressbar_pulse(example_data.pb6, EINA_TRUE); - elm_progressbar_pulse(example_data.pb8, EINA_TRUE); + elm_progressbar_pulse(example_data.pb5, EINA_TRUE); + elm_progressbar_pulse(example_data.pb7, EINA_TRUE); if (!example_data.run) { @@ -74,8 +72,8 @@ _progressbar_example_stop(void *data, void *event_info) { elm_progressbar_pulse(example_data.pb2, EINA_FALSE); - elm_progressbar_pulse(example_data.pb6, EINA_FALSE); - elm_progressbar_pulse(example_data.pb8, EINA_FALSE); + elm_progressbar_pulse(example_data.pb5, EINA_FALSE); + elm_progressbar_pulse(example_data.pb7, EINA_FALSE); if (example_data.run) { @@ -100,21 +98,6 @@ _progress_format_free(char *str) free(str); } -static void -_on_changed(void *data, Evas_Object *obj, void *event_info) -{ - double progress; - int files; - char text[30]; - - /* Count down from 3 minutes */ - progress = elm_progressbar_value_get(obj); - files = (1-progress) * 12000; - snprintf(text, 29, "%i files remaining", files); - - elm_progressbar_unit_format_set(obj, text); -} - static void _on_done(void *data, Evas_Object *obj, @@ -184,17 +167,6 @@ elm_main(int argc, evas_object_show(pb); example_data.pb3 = pb; - /* pb with callback function */ - pb = elm_progressbar_add(win); - elm_progressbar_unit_format_set(pb, NULL); - evas_object_size_hint_align_set(pb, EVAS_HINT_FILL, 0.5); - evas_object_size_hint_weight_set(pb, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); - elm_box_pack_end(bx, pb); - evas_object_show(ic1); - evas_object_show(pb); - evas_object_smart_callback_add(pb, "changed", _on_changed, NULL); - example_data.pb4 = pb; - hbx = elm_box_add(win); elm_box_horizontal_set(hbx, EINA_TRUE); evas_object_size_hint_weight_set(hbx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); @@ -210,7 +182,7 @@ elm_main(int argc, elm_box_pack_end(hbx, pb); elm_object_text_set(pb, "percent"); evas_object_show(pb); - example_data.pb5 = pb; + example_data.pb4 = pb; /* vertical pb, with pulse and custom (small) span size */ pb = elm_progressbar_add(win); @@ -223,7 +195,7 @@ elm_main(int argc, elm_object_text_set(pb, "Infinite bounce"); elm_box_pack_end(hbx, pb); evas_object_show(pb); - example_data.pb6 = pb; + example_data.pb5 = pb; ic2 = elm_icon_add(win); elm_icon_file_set(ic2, buf, NULL); @@ -242,7 +214,7 @@ elm_main(int argc, elm_box_pack_end(hbx, pb); evas_object_show(ic2); evas_object_show(pb); - example_data.pb7 = pb; + example_data.pb6 = pb; /* "wheel" style progress bar */ pb = elm_progressbar_add(win); @@ -252,7 +224,7 @@ elm_main(int argc, evas_object_size_hint_weight_set(pb, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); elm_box_pack_end(bx, pb); evas_object_show(pb); - example_data.pb8 = pb; + example_data.pb7 = pb; bt_bx = elm_box_add(win); elm_box_horizontal_set(bt_bx, EINA_TRUE); diff --git a/legacy/elementary/src/lib/elm_progressbar.c b/legacy/elementary/src/lib/elm_progressbar.c index db531bf01b..1c23e0a218 100644 --- a/legacy/elementary/src/lib/elm_progressbar.c +++ b/legacy/elementary/src/lib/elm_progressbar.c @@ -4,8 +4,6 @@ static const char PROGRESSBAR_SMART_NAME[] = "elm_progressbar"; -static const char SIG_CHANGED[] = "changed"; - #define MIN_RATIO_LVL 0.0 #define MAX_RATIO_LVL 1.0 @@ -56,18 +54,11 @@ struct _Elm_Progressbar_Smart_Data ((obj), PROGRESSBAR_SMART_NAME, __func__)) \ return -/* smart callbacks coming from elm progressbar objects (besides the - * ones coming from elm layout): */ -static const Evas_Smart_Cb_Description _smart_callbacks[] = { - {SIG_CHANGED, ""}, - {NULL, NULL} -}; - /* Inheriting from elm_layout. Besides, we need no more than what is * there */ EVAS_SMART_SUBCLASS_NEW (PROGRESSBAR_SMART_NAME, _elm_progressbar, Elm_Layout_Smart_Class, - Elm_Layout_Smart_Class, elm_layout_smart_class_get, _smart_callbacks); + Elm_Layout_Smart_Class, elm_layout_smart_class_get, NULL); static const Elm_Layout_Part_Alias_Description _content_aliases[] = { @@ -373,7 +364,6 @@ elm_progressbar_value_set(Evas_Object *obj, _val_set(obj); _units_set(obj); - evas_object_smart_callback_call(obj, SIG_CHANGED, NULL); } EAPI double diff --git a/legacy/elementary/src/lib/elm_progressbar.h b/legacy/elementary/src/lib/elm_progressbar.h index 75b7a1dd4f..40b8840e51 100644 --- a/legacy/elementary/src/lib/elm_progressbar.h +++ b/legacy/elementary/src/lib/elm_progressbar.h @@ -33,10 +33,6 @@ * This widget inherits from the @ref Layout one, so that all the * functions acting on it also work for progress bar objects. * - * This widget emits the following signals, besides the ones sent from - * @ref Layout: - * @li @c "changed" - when the value is changed - * * This widget has the following styles: * - @c "default" * - @c "wheel" (simple style, no text, no progression, only