diff options
author | Hosang Kim <hosang12.kim@samsung.com> | 2019-02-26 16:52:54 +0900 |
---|---|---|
committer | 김호상/Tizen Platform Lab(SR)/Engineer/삼성전자 <CORP\hosang12.kim@hosang.tn.corp.samsungelectronics.net> | 2019-02-26 16:53:13 +0900 |
commit | 493b095add08d0dba5860a34a4f769f271966d4e (patch) | |
tree | 540c814c0716b5c5228dbb884d628ea10683a131 /data/elementary/config/standard/base.src.in | |
parent | 27c848c35a0fbe2efa9f83e057313a74327b2047 (diff) |
efl_ui_scroller: apply handling focus.
Summary: Focus manager is applied to process key events.
Test Plan: elementary_test -> efl.ui.scroller
Reviewers: SanghyeonLee, YOhoho, marcelhollerbach, bu5hm4n
Reviewed By: bu5hm4n
Subscribers: woohyun, Jaehyun_Cho, bu5hm4n, cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D7776
Diffstat (limited to '')
-rw-r--r-- | data/elementary/config/standard/base.src.in | 103 |
1 files changed, 102 insertions, 1 deletions
diff --git a/data/elementary/config/standard/base.src.in b/data/elementary/config/standard/base.src.in index bf9aaf4c24..ccfa97b05e 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: 131092; | 2 | value "config_version" int: 131093; |
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; |
@@ -3136,5 +3136,106 @@ group "Elm_Config" struct { | |||
3136 | } | 3136 | } |
3137 | } | 3137 | } |
3138 | } | 3138 | } |
3139 | group "Elm_Config_Bindings_Widget" struct { | ||
3140 | value "name" string: "Efl.Ui.Scroller"; | ||
3141 | group "key_bindings" list { | ||
3142 | group "Elm_Config_Binding_Key" struct { | ||
3143 | value "context" int: 0; | ||
3144 | value "key" string: "Left"; | ||
3145 | value "action" string: "move"; | ||
3146 | value "params" string: "left"; | ||
3147 | } | ||
3148 | group "Elm_Config_Binding_Key" struct { | ||
3149 | value "context" int: 0; | ||
3150 | value "key" string: "KP_Left"; | ||
3151 | value "action" string: "move"; | ||
3152 | value "params" string: "left"; | ||
3153 | } | ||
3154 | group "Elm_Config_Binding_Key" struct { | ||
3155 | value "context" int: 0; | ||
3156 | value "key" string: "Right"; | ||
3157 | value "action" string: "move"; | ||
3158 | value "params" string: "right"; | ||
3159 | } | ||
3160 | group "Elm_Config_Binding_Key" struct { | ||
3161 | value "context" int: 0; | ||
3162 | value "key" string: "KP_Right"; | ||
3163 | value "action" string: "move"; | ||
3164 | value "params" string: "right"; | ||
3165 | } | ||
3166 | group "Elm_Config_Binding_Key" struct { | ||
3167 | value "context" int: 0; | ||
3168 | value "key" string: "Up"; | ||
3169 | value "action" string: "move"; | ||
3170 | value "params" string: "up"; | ||
3171 | } | ||
3172 | group "Elm_Config_Binding_Key" struct { | ||
3173 | value "context" int: 0; | ||
3174 | value "key" string: "KP_Up"; | ||
3175 | value "action" string: "move"; | ||
3176 | value "params" string: "up"; | ||
3177 | } | ||
3178 | group "Elm_Config_Binding_Key" struct { | ||
3179 | value "context" int: 0; | ||
3180 | value "key" string: "Down"; | ||
3181 | value "action" string: "move"; | ||
3182 | value "params" string: "down"; | ||
3183 | } | ||
3184 | group "Elm_Config_Binding_Key" struct { | ||
3185 | value "context" int: 0; | ||
3186 | value "key" string: "KP_Down"; | ||
3187 | value "action" string: "move"; | ||
3188 | value "params" string: "down"; | ||
3189 | } | ||
3190 | group "Elm_Config_Binding_Key" struct { | ||
3191 | value "context" int: 0; | ||
3192 | value "key" string: "Home"; | ||
3193 | value "action" string: "move"; | ||
3194 | value "params" string: "first"; | ||
3195 | } | ||
3196 | group "Elm_Config_Binding_Key" struct { | ||
3197 | value "context" int: 0; | ||
3198 | value "key" string: "KP_Home"; | ||
3199 | value "action" string: "move"; | ||
3200 | value "params" string: "first"; | ||
3201 | } | ||
3202 | group "Elm_Config_Binding_Key" struct { | ||
3203 | value "context" int: 0; | ||
3204 | value "key" string: "End"; | ||
3205 | value "action" string: "move"; | ||
3206 | value "params" string: "last"; | ||
3207 | } | ||
3208 | group "Elm_Config_Binding_Key" struct { | ||
3209 | value "context" int: 0; | ||
3210 | value "key" string: "KP_End"; | ||
3211 | value "action" string: "move"; | ||
3212 | value "params" string: "last"; | ||
3213 | } | ||
3214 | group "Elm_Config_Binding_Key" struct { | ||
3215 | value "context" int: 0; | ||
3216 | value "key" string: "Prior"; | ||
3217 | value "action" string: "move"; | ||
3218 | value "params" string: "prior"; | ||
3219 | } | ||
3220 | group "Elm_Config_Binding_Key" struct { | ||
3221 | value "context" int: 0; | ||
3222 | value "key" string: "KP_Prior"; | ||
3223 | value "action" string: "move"; | ||
3224 | value "params" string: "prior"; | ||
3225 | } | ||
3226 | group "Elm_Config_Binding_Key" struct { | ||
3227 | value "context" int: 0; | ||
3228 | value "key" string: "Next"; | ||
3229 | value "action" string: "move"; | ||
3230 | value "params" string: "next"; | ||
3231 | } | ||
3232 | group "Elm_Config_Binding_Key" struct { | ||
3233 | value "context" int: 0; | ||
3234 | value "key" string: "KP_Next"; | ||
3235 | value "action" string: "move"; | ||
3236 | value "params" string: "next"; | ||
3237 | } | ||
3238 | } | ||
3239 | } | ||
3139 | } | 3240 | } |
3140 | } | 3241 | } |