summaryrefslogtreecommitdiff
path: root/config
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
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')
-rw-r--r--config/default/base.src35
-rw-r--r--config/mobile/base.src35
-rw-r--r--config/standard/base.src35
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 {
}
}
}
+ 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: "";
+ }
+ }
+ }
}
}
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 {
}
}
}
+ 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: "";
+ }
+ }
+ }
}
}
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: "";
+ }
+ }
+ }
}
}