diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-11 09:52:24 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-11 09:52:24 +0000 |
| commit | 6ae8608aede5e9972f19ea29ce1790a68a507ef9 (patch) | |
| tree | ab1b315e32e5f3192fd42150cc6895e1cfa012a9 /scripts | |
| parent | 5af3950710c00891c4508100d59301a6903c7b79 (diff) | |
make stacked cycling work without a modifier-key binding, i think. cleaner checking for modifiers in motion and stackedcycle.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/motion.py | 23 | ||||
| -rw-r--r-- | scripts/stackedcycle.py | 19 |
2 files changed, 24 insertions, 18 deletions
diff --git a/scripts/motion.py b/scripts/motion.py index e0a1d352..ef05b279 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -80,15 +80,15 @@ _motion_mask = 0 def _motion_grab(data): global _motion_mask, _inmove, _inresize; - if data.action == ob.KeyAction.Release: - # have all the modifiers this started with been released? - if not _motion_mask & data.state: - if _inmove: - _end_move(data) - elif _inresize: - _end_resize(data) - else: - raise RuntimeError + # are all the modifiers this started with still pressed? + print _motion_mask, data.state + if not _motion_mask == data.state: + if _inmove: + _end_move(data) + elif _inresize: + _end_resize(data) + else: + raise RuntimeError _last_x = 0 _last_y = 0 @@ -160,13 +160,14 @@ def _move(data): # not-normal windows dont get moved if not data.client.normal(): return - global _screen, _client, _cx, _cy, _dx, _dy + global _screen, _client, _cx, _cy, _dx, _dy, _motion_mask _screen = data.screen _client = data.client _cx = data.press_clientx _cy = data.press_clienty _dx = data.xroot - data.pressx _dy = data.yroot - data.pressy + _motion_mask = data.state _do_move() global _inmove if not _inmove: @@ -245,6 +246,7 @@ def _resize(data): if not data.client.normal(): return global _screen, _client, _cx, _cy, _cw, _ch, _px, _py, _dx, _dy + global _motion_mask _screen = data.screen _client = data.client _cx = data.press_clientx @@ -255,6 +257,7 @@ def _resize(data): _py = data.pressy _dx = data.xroot - _px _dy = data.yroot - _py + _motion_mask = data.state _do_resize() global _inresize if not _inresize: diff --git a/scripts/stackedcycle.py b/scripts/stackedcycle.py index 6e46503d..1667a54a 100644 --- a/scripts/stackedcycle.py +++ b/scripts/stackedcycle.py @@ -218,15 +218,18 @@ class _cycledata: done = 0 notreverting = 1 # have all the modifiers this started with been released? - if (data.action == ob.KeyAction.Release and - not self.state & data.state): + if not self.state == data.state: done = 1 - # has Escape been pressed? - elif data.action == ob.KeyAction.Press and data.key == "Escape": - done = 1 - notreverting = 0 - # revert - self.menupos = 0 + elif data.action == ob.KeyAction.Press: + # has Escape been pressed? + if data.key == "Escape": + done = 1 + notreverting = 0 + # revert + self.menupos = 0 + # has Enter been pressed? + elif data.key == "Return": + done = 1 if done: # activate, and deiconify/unshade/raise |
