diff options
author | Bowon Ryu <bowon.ryu@samsung.com> | 2018-08-21 15:31:49 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2018-08-21 15:31:49 +0900 |
commit | 522c5250abd5200d62e84ac50ffbe8a4eb524f6c (patch) | |
tree | 374d022d5a09a3e955fb4584ffed36cae52f5b49 /data/elementary/config/standard/base.src.in | |
parent | 8312a99a92c1d7ad535ce89ee49f0eb26123c8a3 (diff) |
efl_ui_tab_bar: implement select key bindings.
Summary:
by key bindings..
now we can select TAB with the Return/Space key.
Test Plan: elementary_test -to efl.ui.tab_pager
Reviewers: Jaehyun_Cho, Hermet
Reviewed By: Jaehyun_Cho
Subscribers: YOhoho, cedric, #reviewers, #committers, zmike
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D6779
Diffstat (limited to '')
-rw-r--r-- | data/elementary/config/standard/base.src.in | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/data/elementary/config/standard/base.src.in b/data/elementary/config/standard/base.src.in index ae0de27562..538cb368ea 100644 --- a/data/elementary/config/standard/base.src.in +++ b/data/elementary/config/standard/base.src.in | |||
@@ -1,5 +1,5 @@ | |||
1 | group "Elm_Config" struct { | 1 | group "Elm_Config" struct { |
2 | value "config_version" int: 131089; | 2 | value "config_version" int: 131090; |
3 | value "entry_select_allow" uchar: 1; | 3 | value "entry_select_allow" uchar: 1; |
4 | value "engine" string: ""; | 4 | value "engine" string: ""; |
5 | value "vsync" uchar: 0; | 5 | value "vsync" uchar: 0; |
@@ -2625,6 +2625,29 @@ group "Elm_Config" struct { | |||
2625 | } | 2625 | } |
2626 | } | 2626 | } |
2627 | group "Elm_Config_Bindings_Widget" struct { | 2627 | group "Elm_Config_Bindings_Widget" struct { |
2628 | value "name" string: "Efl.Ui.Tab_Bar"; | ||
2629 | group "key_bindings" list { | ||
2630 | group "Elm_Config_Binding_Key" struct { | ||
2631 | value "context" int: 0; | ||
2632 | value "key" string: "Return"; | ||
2633 | value "action" string: "select"; | ||
2634 | value "params" string: ""; | ||
2635 | } | ||
2636 | group "Elm_Config_Binding_Key" struct { | ||
2637 | value "context" int: 0; | ||
2638 | value "key" string: "KP_Enter"; | ||
2639 | value "action" string: "select"; | ||
2640 | value "params" string: ""; | ||
2641 | } | ||
2642 | group "Elm_Config_Binding_Key" struct { | ||
2643 | value "context" int: 0; | ||
2644 | value "key" string: "space"; | ||
2645 | value "action" string: "select"; | ||
2646 | value "params" string: ""; | ||
2647 | } | ||
2648 | } | ||
2649 | } | ||
2650 | group "Elm_Config_Bindings_Widget" struct { | ||
2628 | value "name" string: "Efl.Ui.Video"; | 2651 | value "name" string: "Efl.Ui.Video"; |
2629 | group "key_bindings" list { | 2652 | group "key_bindings" list { |
2630 | group "Elm_Config_Binding_Key" struct { | 2653 | group "Elm_Config_Binding_Key" struct { |