search for: compactionstateinitbutton

Displaying 6 results from an estimated 6 matches for "compactionstateinitbutton".

2006 Oct 16
2
Edge + Mouse button draft patches
...part -------------- diff --git a/plugins/rotate.c b/plugins/rotate.c index 152e1d6..6952722 100644 --- a/plugins/rotate.c +++ b/plugins/rotate.c @@ -1774,6 +1774,7 @@ rotateDisplayInitOptions (RotateDisplay o->value.action.state |= CompActionStateInitKey; o->value.action.state |= CompActionStateInitButton; o->value.action.type = CompBindingTypeKey; + o->value.action.button.button = 0; o->value.action.key.modifiers = ROTATE_RIGHT_MODIFIERS_DEFAULT; o->value.action.key.keycode = XKeysymToKeycode (display, @@ -1902,6 +1903,7 @@ #define ROTATE_TO_OPTION(n) \...
2006 Oct 25
2
[PATCH] Edge buttons
...SE; o->value.action.edgeMask = 0; + o->value.action.edgeButton = -1; o->value.action.state = CompActionStateInitEdge; o->value.action.state |= CompActionStateInitEdgeDnd; o->value.action.state |= CompActionStateInitKey; o->value.action.state |= CompActionStateInitButton; o->value.action.type = CompBindingTypeKey; + o->value.action.button.button = 0; o->value.action.key.modifiers = ROTATE_RIGHT_MODIFIERS_DEFAULT; o->value.action.key.keycode = XKeysymToKeycode (display, @@ -1789,6 +1792,7 @@ rotateDisplayInitOptions (RotateDisplay...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...0; > + o->value.action.edgeButton = -1; > o->value.action.state = CompActionStateInitEdge; > o->value.action.state |= CompActionStateInitEdgeDnd; > o->value.action.state |= CompActionStateInitKey; > o->value.action.state |= CompActionStateInitButton; > o->value.action.type = CompBindingTypeKey; > + o->value.action.button.button = 0; > o->value.action.key.modifiers = ROTATE_RIGHT_MODIFIERS_DEFAULT; > o->value.action.key.keycode = > XKeysymToKeycode (display, > @@ -1789,6 +1792,7 @@ rot...
2007 Aug 05
1
[PATCH] Unbound modifiers and CompNoMask
...expected) --- src/event.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/event.c b/src/event.c index 3cd7435..1710c43 100644 --- a/src/event.c +++ b/src/event.c @@ -262,7 +262,8 @@ triggerButtonPressBindings (CompDisplay *d, { CompActionState state = CompActionStateInitButton; CompAction *action; - unsigned int modMask = REAL_MOD_MASK & ~d->ignoredModMask; + unsigned int modMask = (REAL_MOD_MASK & ~d->ignoredModMask) + | CompNoMask; unsigned int bindMods; unsigned int edge = 0; @@ -368,7 +3...
2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
--- include/compiz.h | 17 ++++++- metadata/core.xml.in | 7 +++ src/display.c | 5 ++- src/event.c | 130 +++++++++++++++++++++++++++++++++++++++++++++----- 4 files changed, 143 insertions(+), 16 deletions(-) diff --git a/include/compiz.h b/include/compiz.h index dd34f00..abb1169 100644 --- a/include/compiz.h +++ b/include/compiz.h @@ -26,7 +26,7 @@ #ifndef
2006 Jun 08
1
[PATCH] raise window key binding
With raise_on_click disabled, I wanted to be able to raise a window with a button click sometimes. It seemed logical to do something like the lower window key binding. So I did it. It was quite simple, but here is the patch anyway. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/octet-stream Size: 3680 bytes Desc: not available