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.
This commit is contained in:
Daniel Juyung Seo 2014-03-22 19:21:38 +09:00
parent e61185831d
commit cc006b547f
1 changed files with 66 additions and 0 deletions

View File

@ -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;
}
}
}
}
}