diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-15 14:40:38 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-04-15 14:40:38 +0900 |
commit | bc4153058d122f78f78d6efd65d9201e5a6bf6e5 (patch) | |
tree | 3ca991650e45dba669f40e283462925ab85f7f18 /config | |
parent | 820f3dc907250c0c08ed8431b50567e58d6dab5c (diff) |
hoversel: apply key binding
Summary: This patch applied key bindiing to elc_hoversel.
Test Plan: None
Reviewers: Hermet, raster
Reviewed By: Hermet
Differential Revision: https://phab.enlightenment.org/D729
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src | 53 | ||||
-rw-r--r-- | config/mobile/base.src | 53 | ||||
-rw-r--r-- | config/standard/base.src | 53 |
3 files changed, 159 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src index 2ec352758..10866d3e1 100644 --- a/config/default/base.src +++ b/config/default/base.src | |||
@@ -272,6 +272,59 @@ group "Elm_Config" struct { | |||
272 | } | 272 | } |
273 | } | 273 | } |
274 | group "Elm_Config_Bindings_Widget" struct { | 274 | group "Elm_Config_Bindings_Widget" struct { |
275 | value "name" string: "Elc_Hoversel"; | ||
276 | group "key_bindings" list { | ||
277 | group "Elm_Config_Binding_Key" struct { | ||
278 | value "context" int: 0; | ||
279 | value "key" string: "Left"; | ||
280 | value "action" string: "move"; | ||
281 | value "params" string: "left"; | ||
282 | } | ||
283 | group "Elm_Config_Binding_Key" struct { | ||
284 | value "context" int: 0; | ||
285 | value "key" string: "KP_Left"; | ||
286 | value "action" string: "move"; | ||
287 | value "params" string: "left"; | ||
288 | } | ||
289 | group "Elm_Config_Binding_Key" struct { | ||
290 | value "context" int: 0; | ||
291 | value "key" string: "Right"; | ||
292 | value "action" string: "move"; | ||
293 | value "params" string: "right"; | ||
294 | } | ||
295 | group "Elm_Config_Binding_Key" struct { | ||
296 | value "context" int: 0; | ||
297 | value "key" string: "KP_Right"; | ||
298 | value "action" string: "move"; | ||
299 | value "params" string: "right"; | ||
300 | } | ||
301 | group "Elm_Config_Binding_Key" struct { | ||
302 | value "context" int: 0; | ||
303 | value "key" string: "Up"; | ||
304 | value "action" string: "move"; | ||
305 | value "params" string: "up"; | ||
306 | } | ||
307 | group "Elm_Config_Binding_Key" struct { | ||
308 | value "context" int: 0; | ||
309 | value "key" string: "KP_Up"; | ||
310 | value "action" string: "move"; | ||
311 | value "params" string: "up"; | ||
312 | } | ||
313 | group "Elm_Config_Binding_Key" struct { | ||
314 | value "context" int: 0; | ||
315 | value "key" string: "Down"; | ||
316 | value "action" string: "move"; | ||
317 | value "params" string: "down"; | ||
318 | } | ||
319 | group "Elm_Config_Binding_Key" struct { | ||
320 | value "context" int: 0; | ||
321 | value "key" string: "KP_Down"; | ||
322 | value "action" string: "move"; | ||
323 | value "params" string: "down"; | ||
324 | } | ||
325 | } | ||
326 | } | ||
327 | group "Elm_Config_Bindings_Widget" struct { | ||
275 | value "name" string: "Elm_Button"; | 328 | value "name" string: "Elm_Button"; |
276 | group "key_bindings" list { | 329 | group "key_bindings" list { |
277 | group "Elm_Config_Binding_Key" struct { | 330 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/mobile/base.src b/config/mobile/base.src index 5e6d1b8e4..50bd08275 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src | |||
@@ -276,6 +276,59 @@ group "Elm_Config" struct { | |||
276 | } | 276 | } |
277 | } | 277 | } |
278 | group "Elm_Config_Bindings_Widget" struct { | 278 | group "Elm_Config_Bindings_Widget" struct { |
279 | value "name" string: "Elc_Hoversel"; | ||
280 | group "key_bindings" list { | ||
281 | group "Elm_Config_Binding_Key" struct { | ||
282 | value "context" int: 0; | ||
283 | value "key" string: "Left"; | ||
284 | value "action" string: "move"; | ||
285 | value "params" string: "left"; | ||
286 | } | ||
287 | group "Elm_Config_Binding_Key" struct { | ||
288 | value "context" int: 0; | ||
289 | value "key" string: "KP_Left"; | ||
290 | value "action" string: "move"; | ||
291 | value "params" string: "left"; | ||
292 | } | ||
293 | group "Elm_Config_Binding_Key" struct { | ||
294 | value "context" int: 0; | ||
295 | value "key" string: "Right"; | ||
296 | value "action" string: "move"; | ||
297 | value "params" string: "right"; | ||
298 | } | ||
299 | group "Elm_Config_Binding_Key" struct { | ||
300 | value "context" int: 0; | ||
301 | value "key" string: "KP_Right"; | ||
302 | value "action" string: "move"; | ||
303 | value "params" string: "right"; | ||
304 | } | ||
305 | group "Elm_Config_Binding_Key" struct { | ||
306 | value "context" int: 0; | ||
307 | value "key" string: "Up"; | ||
308 | value "action" string: "move"; | ||
309 | value "params" string: "up"; | ||
310 | } | ||
311 | group "Elm_Config_Binding_Key" struct { | ||
312 | value "context" int: 0; | ||
313 | value "key" string: "KP_Up"; | ||
314 | value "action" string: "move"; | ||
315 | value "params" string: "up"; | ||
316 | } | ||
317 | group "Elm_Config_Binding_Key" struct { | ||
318 | value "context" int: 0; | ||
319 | value "key" string: "Down"; | ||
320 | value "action" string: "move"; | ||
321 | value "params" string: "down"; | ||
322 | } | ||
323 | group "Elm_Config_Binding_Key" struct { | ||
324 | value "context" int: 0; | ||
325 | value "key" string: "KP_Down"; | ||
326 | value "action" string: "move"; | ||
327 | value "params" string: "down"; | ||
328 | } | ||
329 | } | ||
330 | } | ||
331 | group "Elm_Config_Bindings_Widget" struct { | ||
279 | value "name" string: "Elm_Button"; | 332 | value "name" string: "Elm_Button"; |
280 | group "key_bindings" list { | 333 | group "key_bindings" list { |
281 | group "Elm_Config_Binding_Key" struct { | 334 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/standard/base.src b/config/standard/base.src index f044de9eb..bd7a1625c 100644 --- a/config/standard/base.src +++ b/config/standard/base.src | |||
@@ -273,6 +273,59 @@ group "Elm_Config" struct { | |||
273 | } | 273 | } |
274 | } | 274 | } |
275 | group "Elm_Config_Bindings_Widget" struct { | 275 | group "Elm_Config_Bindings_Widget" struct { |
276 | value "name" string: "Elc_Hoversel"; | ||
277 | group "key_bindings" list { | ||
278 | group "Elm_Config_Binding_Key" struct { | ||
279 | value "context" int: 0; | ||
280 | value "key" string: "Left"; | ||
281 | value "action" string: "move"; | ||
282 | value "params" string: "left"; | ||
283 | } | ||
284 | group "Elm_Config_Binding_Key" struct { | ||
285 | value "context" int: 0; | ||
286 | value "key" string: "KP_Left"; | ||
287 | value "action" string: "move"; | ||
288 | value "params" string: "left"; | ||
289 | } | ||
290 | group "Elm_Config_Binding_Key" struct { | ||
291 | value "context" int: 0; | ||
292 | value "key" string: "Right"; | ||
293 | value "action" string: "move"; | ||
294 | value "params" string: "right"; | ||
295 | } | ||
296 | group "Elm_Config_Binding_Key" struct { | ||
297 | value "context" int: 0; | ||
298 | value "key" string: "KP_Right"; | ||
299 | value "action" string: "move"; | ||
300 | value "params" string: "right"; | ||
301 | } | ||
302 | group "Elm_Config_Binding_Key" struct { | ||
303 | value "context" int: 0; | ||
304 | value "key" string: "Up"; | ||
305 | value "action" string: "move"; | ||
306 | value "params" string: "up"; | ||
307 | } | ||
308 | group "Elm_Config_Binding_Key" struct { | ||
309 | value "context" int: 0; | ||
310 | value "key" string: "KP_Up"; | ||
311 | value "action" string: "move"; | ||
312 | value "params" string: "up"; | ||
313 | } | ||
314 | group "Elm_Config_Binding_Key" struct { | ||
315 | value "context" int: 0; | ||
316 | value "key" string: "Down"; | ||
317 | value "action" string: "move"; | ||
318 | value "params" string: "down"; | ||
319 | } | ||
320 | group "Elm_Config_Binding_Key" struct { | ||
321 | value "context" int: 0; | ||
322 | value "key" string: "KP_Down"; | ||
323 | value "action" string: "move"; | ||
324 | value "params" string: "down"; | ||
325 | } | ||
326 | } | ||
327 | } | ||
328 | group "Elm_Config_Bindings_Widget" struct { | ||
276 | value "name" string: "Elm_Button"; | 329 | value "name" string: "Elm_Button"; |
277 | group "key_bindings" list { | 330 | group "key_bindings" list { |
278 | group "Elm_Config_Binding_Key" struct { | 331 | group "Elm_Config_Binding_Key" struct { |