diff options
author | Amitesh Singh <amitesh.sh@samsung.com> | 2016-11-03 12:00:17 +0530 |
---|---|---|
committer | Amitesh Singh <amitesh.sh@samsung.com> | 2016-11-03 12:00:17 +0530 |
commit | 0bcb0302fb647b43cef4e633cf0c0b16e5521e04 (patch) | |
tree | 8a8740ec411786877b242dd7fbbfd93eb6fe1ac2 /config | |
parent | b0d2e987f3a37291cd1e1090ba0812c3b4a0ed67 (diff) | |
download | efl-0bcb0302fb647b43cef4e633cf0c0b16e5521e04.tar.gz |
efl_ui_clock: Merge datetime/dayselector/clock widgets into efl_ui_clock.
Summary:
Datetime widget is module based, so datetime widget is used as base for efl_ui_clock and merged dayselector/clock features into efl_ui_clock.
Added day selection and seconds support in efl_ui_clock.
Added clock features like auto updation of time, stop timer etc in efl_ui_clock.
Added API to enable/disable edit_mode. efl_ui_clock can be configurable to display either only day/date/time or display any two of them or display all three.
Added efl_ui_clock.c and test_ui_clock.c. Theme and Module is added in another patch by Amitesh.
Original author is Yeshwanth <r.yeshwanth@samsung.com>. I have polished this patch a bit and make it compatible with current EFL code.
Test Plan: test_ui_clock
Reviewers: bu5hm4n, tasn, yashu21985, jpeg, cedric, raster
Subscribers: CHAN, woohyun
Differential Revision: https://phab.enlightenment.org/D3938
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src.in | 4 | ||||
-rw-r--r-- | config/mobile/base.src.in | 4 | ||||
-rw-r--r-- | config/standard/base.src.in | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/config/default/base.src.in b/config/default/base.src.in index 90188f3827..9f27fd4f5a 100644 --- a/config/default/base.src.in +++ b/config/default/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131084; + value "config_version" int: 131085; value "engine" string: ""; value "vsync" uchar: 0; value "thumbscroll_enable" uchar: 1; @@ -39,7 +39,7 @@ group "Elm_Config" struct { value "finger_size" int: 10; value "fps" double: 60.0; value "theme" string: "default"; - value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api"; + value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api:clock_input_ctxpopup>clock/api"; value "tooltip_delay" double: 1.0; value "cursor_engine_only" uchar: 0; value "focus_highlight_enable" uchar: 0; diff --git a/config/mobile/base.src.in b/config/mobile/base.src.in index 5619970c93..fedba06f64 100644 --- a/config/mobile/base.src.in +++ b/config/mobile/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131084; + value "config_version" int: 131085; value "engine" string: ""; value "vsync" uchar: 0; value "thumbscroll_enable" uchar: 1; @@ -39,7 +39,7 @@ group "Elm_Config" struct { value "finger_size" int: 40; value "fps" double: 60.0; value "theme" string: "default"; - value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api"; + value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api:clock_input_ctxpopup>clock/api"; value "tooltip_delay" double: 1.0; value "cursor_engine_only" uchar: 0; value "focus_highlight_enable" uchar: 0; diff --git a/config/standard/base.src.in b/config/standard/base.src.in index 849185f6e5..b201a3edd9 100644 --- a/config/standard/base.src.in +++ b/config/standard/base.src.in @@ -1,5 +1,5 @@ group "Elm_Config" struct { - value "config_version" int: 131084; + value "config_version" int: 131085; value "engine" string: ""; value "vsync" uchar: 0; value "thumbscroll_enable" uchar: 0; @@ -39,7 +39,7 @@ group "Elm_Config" struct { value "finger_size" int: 10; value "fps" double: 60.0; value "theme" string: "default"; - value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api"; + value "modules" string: "prefs>prefs_iface:access_output>access/api:datetime_input_ctxpopup>datetime/api:clock_input_ctxpopup>clock/api"; value "tooltip_delay" double: 1.0; value "cursor_engine_only" uchar: 0; value "focus_highlight_enable" uchar: 0; |