summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2014-03-22 19:21:38 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2014-03-22 19:21:38 +0900
commited1c3ff53267629d180922f0c993deb631a6121d (patch)
treea14539648756e8292423f7be69fc2a495c39882f
parent994d3121664ee4ca98682d9a01ea2ca167f9ae8c (diff)
downloadelementary-ed1c3ff53267629d180922f0c993deb631a6121d.tar.gz
mobile config: Added key bindings to mobile profile.
We can still use keyboards with Mobile profile when you attach your keyboard with bluetooth or connect the keyboard physically.
-rw-r--r--config/mobile/base.src66
1 files changed, 66 insertions, 0 deletions
diff --git a/config/mobile/base.src b/config/mobile/base.src
index 64d6920b0..9fa752099 100644
--- a/config/mobile/base.src
+++ b/config/mobile/base.src
@@ -249,4 +249,70 @@ group "Elm_Config" struct {
}
}
}
+ group "bindings" list {
+ group "Elm_Config_Bindings_Widget" struct {
+ value "name" string: "Elm_Button";
+ group "key_bindings" list {
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "Return";
+ value "action" string: "activate";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "KP_Enter";
+ value "action" string: "activate";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "space";
+ value "action" string: "activate";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ }
+ }
+ group "Elm_Config_Bindings_Widget" struct {
+ value "name" string: "Elm_Panel";
+ group "key_bindings" list {
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "Return";
+ value "action" string: "toggle";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "KP_Enter";
+ value "action" string: "toggle";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "modifiers" string: "None";
+ value "key" string: "space";
+ value "action" string: "toggle";
+ value "params" string: "";
+ value "any_mod" uchar: 1;
+ value "no_string" uchar: 0;
+ }
+ }
+ }
+ }
}