diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-17 15:41:50 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-04-17 15:41:50 +0900 |
commit | b22746e828f56d2a7d9568888fe4e3266e9cda57 (patch) | |
tree | a0c2b428241c0da2cd9852b29d746f2d25e2c2fc /config | |
parent | 528a6a96b436e2b29944e37b8415fdbbba0476f2 (diff) |
ctxpopup: apply key binding
Summary: This patch applies key binding to elc_ctxpopup.
Test Plan: None
Reviewers: Hermet, raster
Differential Revision: https://phab.enlightenment.org/D754
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src | 83 | ||||
-rw-r--r-- | config/mobile/base.src | 83 | ||||
-rw-r--r-- | config/standard/base.src | 83 |
3 files changed, 249 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src index 64e3026c5..61e043802 100644 --- a/config/default/base.src +++ b/config/default/base.src | |||
@@ -249,6 +249,89 @@ group "Elm_Config" struct { | |||
249 | } | 249 | } |
250 | group "bindings" list { | 250 | group "bindings" list { |
251 | group "Elm_Config_Bindings_Widget" struct { | 251 | group "Elm_Config_Bindings_Widget" struct { |
252 | value "name" string: "Elc_Ctxpopup"; | ||
253 | group "key_bindings" list { | ||
254 | group "Elm_Config_Binding_Key" struct { | ||
255 | value "context" int: 0; | ||
256 | value "key" string: "Tab"; | ||
257 | value "action" string: "move"; | ||
258 | value "params" string: "previous"; | ||
259 | group "modifiers" list { | ||
260 | group "Elm_Config_Binding_Modifier" struct { | ||
261 | value "mod" string: "Shift"; | ||
262 | value "flag" uchar: 1; | ||
263 | } | ||
264 | } | ||
265 | } | ||
266 | group "Elm_Config_Binding_Key" struct { | ||
267 | value "context" int: 0; | ||
268 | value "key" string: "Tab"; | ||
269 | value "action" string: "move"; | ||
270 | value "params" string: "next"; | ||
271 | group "modifiers" list { | ||
272 | group "Elm_Config_Binding_Modifier" struct { | ||
273 | value "mod" string: "Shift"; | ||
274 | value "flag" uchar: 0; | ||
275 | } | ||
276 | } | ||
277 | } | ||
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 | group "Elm_Config_Binding_Key" struct { | ||
327 | value "context" int: 0; | ||
328 | value "key" string: "Escape"; | ||
329 | value "action" string: "escape"; | ||
330 | value "params" string: ""; | ||
331 | } | ||
332 | } | ||
333 | } | ||
334 | group "Elm_Config_Bindings_Widget" struct { | ||
252 | value "name" string: "Elc_Fileselector"; | 335 | value "name" string: "Elc_Fileselector"; |
253 | group "key_bindings" list { | 336 | group "key_bindings" list { |
254 | group "Elm_Config_Binding_Key" struct { | 337 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/mobile/base.src b/config/mobile/base.src index 8f3355706..a40d3766d 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src | |||
@@ -253,6 +253,89 @@ group "Elm_Config" struct { | |||
253 | } | 253 | } |
254 | group "bindings" list { | 254 | group "bindings" list { |
255 | group "Elm_Config_Bindings_Widget" struct { | 255 | group "Elm_Config_Bindings_Widget" struct { |
256 | value "name" string: "Elc_Ctxpopup"; | ||
257 | group "key_bindings" list { | ||
258 | group "Elm_Config_Binding_Key" struct { | ||
259 | value "context" int: 0; | ||
260 | value "key" string: "Tab"; | ||
261 | value "action" string: "move"; | ||
262 | value "params" string: "previous"; | ||
263 | group "modifiers" list { | ||
264 | group "Elm_Config_Binding_Modifier" struct { | ||
265 | value "mod" string: "Shift"; | ||
266 | value "flag" uchar: 1; | ||
267 | } | ||
268 | } | ||
269 | } | ||
270 | group "Elm_Config_Binding_Key" struct { | ||
271 | value "context" int: 0; | ||
272 | value "key" string: "Tab"; | ||
273 | value "action" string: "move"; | ||
274 | value "params" string: "next"; | ||
275 | group "modifiers" list { | ||
276 | group "Elm_Config_Binding_Modifier" struct { | ||
277 | value "mod" string: "Shift"; | ||
278 | value "flag" uchar: 0; | ||
279 | } | ||
280 | } | ||
281 | } | ||
282 | group "Elm_Config_Binding_Key" struct { | ||
283 | value "context" int: 0; | ||
284 | value "key" string: "Left"; | ||
285 | value "action" string: "move"; | ||
286 | value "params" string: "left"; | ||
287 | } | ||
288 | group "Elm_Config_Binding_Key" struct { | ||
289 | value "context" int: 0; | ||
290 | value "key" string: "KP_Left"; | ||
291 | value "action" string: "move"; | ||
292 | value "params" string: "left"; | ||
293 | } | ||
294 | group "Elm_Config_Binding_Key" struct { | ||
295 | value "context" int: 0; | ||
296 | value "key" string: "Right"; | ||
297 | value "action" string: "move"; | ||
298 | value "params" string: "right"; | ||
299 | } | ||
300 | group "Elm_Config_Binding_Key" struct { | ||
301 | value "context" int: 0; | ||
302 | value "key" string: "KP_Right"; | ||
303 | value "action" string: "move"; | ||
304 | value "params" string: "right"; | ||
305 | } | ||
306 | group "Elm_Config_Binding_Key" struct { | ||
307 | value "context" int: 0; | ||
308 | value "key" string: "Up"; | ||
309 | value "action" string: "move"; | ||
310 | value "params" string: "up"; | ||
311 | } | ||
312 | group "Elm_Config_Binding_Key" struct { | ||
313 | value "context" int: 0; | ||
314 | value "key" string: "KP_Up"; | ||
315 | value "action" string: "move"; | ||
316 | value "params" string: "up"; | ||
317 | } | ||
318 | group "Elm_Config_Binding_Key" struct { | ||
319 | value "context" int: 0; | ||
320 | value "key" string: "Down"; | ||
321 | value "action" string: "move"; | ||
322 | value "params" string: "down"; | ||
323 | } | ||
324 | group "Elm_Config_Binding_Key" struct { | ||
325 | value "context" int: 0; | ||
326 | value "key" string: "KP_Down"; | ||
327 | value "action" string: "move"; | ||
328 | value "params" string: "down"; | ||
329 | } | ||
330 | group "Elm_Config_Binding_Key" struct { | ||
331 | value "context" int: 0; | ||
332 | value "key" string: "Escape"; | ||
333 | value "action" string: "escape"; | ||
334 | value "params" string: ""; | ||
335 | } | ||
336 | } | ||
337 | } | ||
338 | group "Elm_Config_Bindings_Widget" struct { | ||
256 | value "name" string: "Elc_Fileselector"; | 339 | value "name" string: "Elc_Fileselector"; |
257 | group "key_bindings" list { | 340 | group "key_bindings" list { |
258 | group "Elm_Config_Binding_Key" struct { | 341 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/standard/base.src b/config/standard/base.src index e4b903baf..4b58b5334 100644 --- a/config/standard/base.src +++ b/config/standard/base.src | |||
@@ -250,6 +250,89 @@ group "Elm_Config" struct { | |||
250 | } | 250 | } |
251 | group "bindings" list { | 251 | group "bindings" list { |
252 | group "Elm_Config_Bindings_Widget" struct { | 252 | group "Elm_Config_Bindings_Widget" struct { |
253 | value "name" string: "Elc_Ctxpopup"; | ||
254 | group "key_bindings" list { | ||
255 | group "Elm_Config_Binding_Key" struct { | ||
256 | value "context" int: 0; | ||
257 | value "key" string: "Tab"; | ||
258 | value "action" string: "move"; | ||
259 | value "params" string: "previous"; | ||
260 | group "modifiers" list { | ||
261 | group "Elm_Config_Binding_Modifier" struct { | ||
262 | value "mod" string: "Shift"; | ||
263 | value "flag" uchar: 1; | ||
264 | } | ||
265 | } | ||
266 | } | ||
267 | group "Elm_Config_Binding_Key" struct { | ||
268 | value "context" int: 0; | ||
269 | value "key" string: "Tab"; | ||
270 | value "action" string: "move"; | ||
271 | value "params" string: "next"; | ||
272 | group "modifiers" list { | ||
273 | group "Elm_Config_Binding_Modifier" struct { | ||
274 | value "mod" string: "Shift"; | ||
275 | value "flag" uchar: 0; | ||
276 | } | ||
277 | } | ||
278 | } | ||
279 | group "Elm_Config_Binding_Key" struct { | ||
280 | value "context" int: 0; | ||
281 | value "key" string: "Left"; | ||
282 | value "action" string: "move"; | ||
283 | value "params" string: "left"; | ||
284 | } | ||
285 | group "Elm_Config_Binding_Key" struct { | ||
286 | value "context" int: 0; | ||
287 | value "key" string: "KP_Left"; | ||
288 | value "action" string: "move"; | ||
289 | value "params" string: "left"; | ||
290 | } | ||
291 | group "Elm_Config_Binding_Key" struct { | ||
292 | value "context" int: 0; | ||
293 | value "key" string: "Right"; | ||
294 | value "action" string: "move"; | ||
295 | value "params" string: "right"; | ||
296 | } | ||
297 | group "Elm_Config_Binding_Key" struct { | ||
298 | value "context" int: 0; | ||
299 | value "key" string: "KP_Right"; | ||
300 | value "action" string: "move"; | ||
301 | value "params" string: "right"; | ||
302 | } | ||
303 | group "Elm_Config_Binding_Key" struct { | ||
304 | value "context" int: 0; | ||
305 | value "key" string: "Up"; | ||
306 | value "action" string: "move"; | ||
307 | value "params" string: "up"; | ||
308 | } | ||
309 | group "Elm_Config_Binding_Key" struct { | ||
310 | value "context" int: 0; | ||
311 | value "key" string: "KP_Up"; | ||
312 | value "action" string: "move"; | ||
313 | value "params" string: "up"; | ||
314 | } | ||
315 | group "Elm_Config_Binding_Key" struct { | ||
316 | value "context" int: 0; | ||
317 | value "key" string: "Down"; | ||
318 | value "action" string: "move"; | ||
319 | value "params" string: "down"; | ||
320 | } | ||
321 | group "Elm_Config_Binding_Key" struct { | ||
322 | value "context" int: 0; | ||
323 | value "key" string: "KP_Down"; | ||
324 | value "action" string: "move"; | ||
325 | value "params" string: "down"; | ||
326 | } | ||
327 | group "Elm_Config_Binding_Key" struct { | ||
328 | value "context" int: 0; | ||
329 | value "key" string: "Escape"; | ||
330 | value "action" string: "escape"; | ||
331 | value "params" string: ""; | ||
332 | } | ||
333 | } | ||
334 | } | ||
335 | group "Elm_Config_Bindings_Widget" struct { | ||
253 | value "name" string: "Elc_Fileselector"; | 336 | value "name" string: "Elc_Fileselector"; |
254 | group "key_bindings" list { | 337 | group "key_bindings" list { |
255 | group "Elm_Config_Binding_Key" struct { | 338 | group "Elm_Config_Binding_Key" struct { |