diff options
author | Daniel Juyung Seo <seojuyung2@gmail.com> | 2014-03-22 19:21:38 +0900 |
---|---|---|
committer | Daniel Juyung Seo <seojuyung2@gmail.com> | 2014-03-22 19:21:38 +0900 |
commit | ed1c3ff53267629d180922f0c993deb631a6121d (patch) | |
tree | a14539648756e8292423f7be69fc2a495c39882f | |
parent | 994d3121664ee4ca98682d9a01ea2ca167f9ae8c (diff) | |
download | elementary-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.src | 66 |
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; + } + } + } + } } |