summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>2012-09-05 13:46:15 +0000
committerMike Blumenkrantz <michael.blumenkrantz@gmail.com>2012-09-05 13:46:15 +0000
commitf1e4a5909fde7e39b8a9853b5c5eb241c90a57a2 (patch)
treefe1a1479d43a012e2062f050c87b685ef3676a5a /config
parent765c24f6c60bf274ce62c12ff74a2757f5facf5c (diff)
downloadenlightenment-f1e4a5909fde7e39b8a9853b5c5eb241c90a57a2.tar.gz
add two new maximize modes: left and right
these will maximize a window to either the left or the right half of the screen, respectively work started by etrunko in ticket #1422 SVN revision: 76198
Diffstat (limited to 'config')
-rw-r--r--config/mobile/e.src16
-rw-r--r--config/standard/e.src16
2 files changed, 32 insertions, 0 deletions
diff --git a/config/mobile/e.src b/config/mobile/e.src
index 88c318732f..4f74b74d55 100644
--- a/config/mobile/e.src
+++ b/config/mobile/e.src
@@ -556,6 +556,22 @@ group "E_Config" struct {
}
group "E_Config_Binding_Key" struct {
value "context" int: 9;
+ value "modifiers" int: 8;
+ value "key" string: "Left";
+ value "action" string: "window_maximized_toggle";
+ value "params" string: "default left";
+ value "any_mod" uchar: 0;
+ }
+ group "E_Config_Binding_Key" struct {
+ value "context" int: 9;
+ value "modifiers" int: 8;
+ value "key" string: "Right";
+ value "action" string: "window_maximized_toggle";
+ value "params" string: "default right";
+ value "any_mod" uchar: 0;
+ }
+ group "E_Config_Binding_Key" struct {
+ value "context" int: 9;
value "modifiers" int: 6;
value "key" string: "r";
value "action" string: "window_shaded_toggle";
diff --git a/config/standard/e.src b/config/standard/e.src
index c9efef7ae1..98cd62a49b 100644
--- a/config/standard/e.src
+++ b/config/standard/e.src
@@ -1342,6 +1342,22 @@ group "E_Config" struct {
}
group "E_Config_Binding_Key" struct {
value "context" int: 9;
+ value "modifiers" int: 8;
+ value "key" string: "Left";
+ value "action" string: "window_maximized_toggle";
+ value "params" string: "default left";
+ value "any_mod" uchar: 0;
+ }
+ group "E_Config_Binding_Key" struct {
+ value "context" int: 9;
+ value "modifiers" int: 8;
+ value "key" string: "Right";
+ value "action" string: "window_maximized_toggle";
+ value "params" string: "default right";
+ value "any_mod" uchar: 0;
+ }
+ group "E_Config_Binding_Key" struct {
+ value "context" int: 9;
value "modifiers" int: 6;
value "key" string: "r";
value "action" string: "window_shaded_toggle";