summaryrefslogtreecommitdiff
path: root/config/standard
diff options
context:
space:
mode:
authorJaeun Choi <jaeun12.choi@samsung.com>2014-04-15 16:09:12 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2014-04-15 16:09:12 +0900
commit96d2f454cc85c5b4dd1b534a694694e2d35ddc2c (patch)
tree55162b87cedc24ab9e5fe38d8697f88b0fddd8af /config/standard
parentafa54eb810848f93ce352516de6b05f0f2bd3bfa (diff)
downloadelementary-96d2f454cc85c5b4dd1b534a694694e2d35ddc2c.tar.gz
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/standard')
-rw-r--r--config/standard/base.src35
1 files changed, 35 insertions, 0 deletions
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 {
}
}
}
+ group "Elm_Config_Bindings_Widget" struct {
+ value "name" string: "Elm_Video";
+ group "key_bindings" list {
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "Left";
+ value "action" string: "move";
+ value "params" string: "left";
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "KP_Left";
+ value "action" string: "move";
+ value "params" string: "left";
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "Right";
+ value "action" string: "move";
+ value "params" string: "right";
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "KP_Right";
+ value "action" string: "move";
+ value "params" string: "right";
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "space";
+ value "action" string: "play";
+ value "params" string: "";
+ }
+ }
+ }
}
}