diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-15 16:09:12 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-04-15 16:09:12 +0900 |
commit | 96d2f454cc85c5b4dd1b534a694694e2d35ddc2c (patch) | |
tree | 55162b87cedc24ab9e5fe38d8697f88b0fddd8af /config | |
parent | afa54eb810848f93ce352516de6b05f0f2bd3bfa (diff) |
video: apply key binding
Summary: This patch applies key binding to elm_video.
Test Plan: None
Reviewers: Hermet, raster
Differential Revision: https://phab.enlightenment.org/D738
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src | 35 | ||||
-rw-r--r-- | config/mobile/base.src | 35 | ||||
-rw-r--r-- | config/standard/base.src | 35 |
3 files changed, 105 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src index b5ef14165..b92d99e2e 100644 --- a/config/default/base.src +++ b/config/default/base.src | |||
@@ -1435,5 +1435,40 @@ group "Elm_Config" struct { | |||
1435 | } | 1435 | } |
1436 | } | 1436 | } |
1437 | } | 1437 | } |
1438 | group "Elm_Config_Bindings_Widget" struct { | ||
1439 | value "name" string: "Elm_Video"; | ||
1440 | group "key_bindings" list { | ||
1441 | group "Elm_Config_Binding_Key" struct { | ||
1442 | value "context" int: 0; | ||
1443 | value "key" string: "Left"; | ||
1444 | value "action" string: "move"; | ||
1445 | value "params" string: "left"; | ||
1446 | } | ||
1447 | group "Elm_Config_Binding_Key" struct { | ||
1448 | value "context" int: 0; | ||
1449 | value "key" string: "KP_Left"; | ||
1450 | value "action" string: "move"; | ||
1451 | value "params" string: "left"; | ||
1452 | } | ||
1453 | group "Elm_Config_Binding_Key" struct { | ||
1454 | value "context" int: 0; | ||
1455 | value "key" string: "Right"; | ||
1456 | value "action" string: "move"; | ||
1457 | value "params" string: "right"; | ||
1458 | } | ||
1459 | group "Elm_Config_Binding_Key" struct { | ||
1460 | value "context" int: 0; | ||
1461 | value "key" string: "KP_Right"; | ||
1462 | value "action" string: "move"; | ||
1463 | value "params" string: "right"; | ||
1464 | } | ||
1465 | group "Elm_Config_Binding_Key" struct { | ||
1466 | value "context" int: 0; | ||
1467 | value "key" string: "space"; | ||
1468 | value "action" string: "play"; | ||
1469 | value "params" string: ""; | ||
1470 | } | ||
1471 | } | ||
1472 | } | ||
1438 | } | 1473 | } |
1439 | } | 1474 | } |
diff --git a/config/mobile/base.src b/config/mobile/base.src index 622e2d65d..19c5bcba7 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src | |||
@@ -1439,5 +1439,40 @@ group "Elm_Config" struct { | |||
1439 | } | 1439 | } |
1440 | } | 1440 | } |
1441 | } | 1441 | } |
1442 | group "Elm_Config_Bindings_Widget" struct { | ||
1443 | value "name" string: "Elm_Video"; | ||
1444 | group "key_bindings" list { | ||
1445 | group "Elm_Config_Binding_Key" struct { | ||
1446 | value "context" int: 0; | ||
1447 | value "key" string: "Left"; | ||
1448 | value "action" string: "move"; | ||
1449 | value "params" string: "left"; | ||
1450 | } | ||
1451 | group "Elm_Config_Binding_Key" struct { | ||
1452 | value "context" int: 0; | ||
1453 | value "key" string: "KP_Left"; | ||
1454 | value "action" string: "move"; | ||
1455 | value "params" string: "left"; | ||
1456 | } | ||
1457 | group "Elm_Config_Binding_Key" struct { | ||
1458 | value "context" int: 0; | ||
1459 | value "key" string: "Right"; | ||
1460 | value "action" string: "move"; | ||
1461 | value "params" string: "right"; | ||
1462 | } | ||
1463 | group "Elm_Config_Binding_Key" struct { | ||
1464 | value "context" int: 0; | ||
1465 | value "key" string: "KP_Right"; | ||
1466 | value "action" string: "move"; | ||
1467 | value "params" string: "right"; | ||
1468 | } | ||
1469 | group "Elm_Config_Binding_Key" struct { | ||
1470 | value "context" int: 0; | ||
1471 | value "key" string: "space"; | ||
1472 | value "action" string: "play"; | ||
1473 | value "params" string: ""; | ||
1474 | } | ||
1475 | } | ||
1476 | } | ||
1442 | } | 1477 | } |
1443 | } | 1478 | } |
diff --git a/config/standard/base.src b/config/standard/base.src index 0bafe712e..f60f26353 100644 --- a/config/standard/base.src +++ b/config/standard/base.src | |||
@@ -1436,5 +1436,40 @@ group "Elm_Config" struct { | |||
1436 | } | 1436 | } |
1437 | } | 1437 | } |
1438 | } | 1438 | } |
1439 | group "Elm_Config_Bindings_Widget" struct { | ||
1440 | value "name" string: "Elm_Video"; | ||
1441 | group "key_bindings" list { | ||
1442 | group "Elm_Config_Binding_Key" struct { | ||
1443 | value "context" int: 0; | ||
1444 | value "key" string: "Left"; | ||
1445 | value "action" string: "move"; | ||
1446 | value "params" string: "left"; | ||
1447 | } | ||
1448 | group "Elm_Config_Binding_Key" struct { | ||
1449 | value "context" int: 0; | ||
1450 | value "key" string: "KP_Left"; | ||
1451 | value "action" string: "move"; | ||
1452 | value "params" string: "left"; | ||
1453 | } | ||
1454 | group "Elm_Config_Binding_Key" struct { | ||
1455 | value "context" int: 0; | ||
1456 | value "key" string: "Right"; | ||
1457 | value "action" string: "move"; | ||
1458 | value "params" string: "right"; | ||
1459 | } | ||
1460 | group "Elm_Config_Binding_Key" struct { | ||
1461 | value "context" int: 0; | ||
1462 | value "key" string: "KP_Right"; | ||
1463 | value "action" string: "move"; | ||
1464 | value "params" string: "right"; | ||
1465 | } | ||
1466 | group "Elm_Config_Binding_Key" struct { | ||
1467 | value "context" int: 0; | ||
1468 | value "key" string: "space"; | ||
1469 | value "action" string: "play"; | ||
1470 | value "params" string: ""; | ||
1471 | } | ||
1472 | } | ||
1473 | } | ||
1439 | } | 1474 | } |
1440 | } | 1475 | } |