seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=ed1c3ff53267629d180922f0c993deb631a6121d
commit ed1c3ff53267629d180922f0c993deb631a6121d Author: Daniel Juyung Seo <[email protected]> Date: Sat Mar 22 19:21:38 2014 +0900 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. --- config/mobile/base.src | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/config/mobile/base.src b/config/mobile/base.src index 64d6920..9fa7520 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; + } + } + } + } } --
