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 /config | |
parent | 994d3121664ee4ca98682d9a01ea2ca167f9ae8c (diff) |
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.
Diffstat (limited to 'config')
-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 { | |||
249 | } | 249 | } |
250 | } | 250 | } |
251 | } | 251 | } |
252 | group "bindings" list { | ||
253 | group "Elm_Config_Bindings_Widget" struct { | ||
254 | value "name" string: "Elm_Button"; | ||
255 | group "key_bindings" list { | ||
256 | group "Elm_Config_Binding_Key" struct { | ||
257 | value "context" int: 0; | ||
258 | value "modifiers" string: "None"; | ||
259 | value "key" string: "Return"; | ||
260 | value "action" string: "activate"; | ||
261 | value "params" string: ""; | ||
262 | value "any_mod" uchar: 1; | ||
263 | value "no_string" uchar: 0; | ||
264 | } | ||
265 | group "Elm_Config_Binding_Key" struct { | ||
266 | value "context" int: 0; | ||
267 | value "modifiers" string: "None"; | ||
268 | value "key" string: "KP_Enter"; | ||
269 | value "action" string: "activate"; | ||
270 | value "params" string: ""; | ||
271 | value "any_mod" uchar: 1; | ||
272 | value "no_string" uchar: 0; | ||
273 | } | ||
274 | group "Elm_Config_Binding_Key" struct { | ||
275 | value "context" int: 0; | ||
276 | value "modifiers" string: "None"; | ||
277 | value "key" string: "space"; | ||
278 | value "action" string: "activate"; | ||
279 | value "params" string: ""; | ||
280 | value "any_mod" uchar: 1; | ||
281 | value "no_string" uchar: 0; | ||
282 | } | ||
283 | } | ||
284 | } | ||
285 | group "Elm_Config_Bindings_Widget" struct { | ||
286 | value "name" string: "Elm_Panel"; | ||
287 | group "key_bindings" list { | ||
288 | group "Elm_Config_Binding_Key" struct { | ||
289 | value "context" int: 0; | ||
290 | value "modifiers" string: "None"; | ||
291 | value "key" string: "Return"; | ||
292 | value "action" string: "toggle"; | ||
293 | value "params" string: ""; | ||
294 | value "any_mod" uchar: 1; | ||
295 | value "no_string" uchar: 0; | ||
296 | } | ||
297 | group "Elm_Config_Binding_Key" struct { | ||
298 | value "context" int: 0; | ||
299 | value "modifiers" string: "None"; | ||
300 | value "key" string: "KP_Enter"; | ||
301 | value "action" string: "toggle"; | ||
302 | value "params" string: ""; | ||
303 | value "any_mod" uchar: 1; | ||
304 | value "no_string" uchar: 0; | ||
305 | } | ||
306 | group "Elm_Config_Binding_Key" struct { | ||
307 | value "context" int: 0; | ||
308 | value "modifiers" string: "None"; | ||
309 | value "key" string: "space"; | ||
310 | value "action" string: "toggle"; | ||
311 | value "params" string: ""; | ||
312 | value "any_mod" uchar: 1; | ||
313 | value "no_string" uchar: 0; | ||
314 | } | ||
315 | } | ||
316 | } | ||
317 | } | ||
252 | } | 318 | } |