search for: compactionstateinitkey

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

2006 Oct 25
2
[PATCH] Edge buttons
...tion.terminate = 0; o->value.action.bell = FALSE; 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; @@ -1769,11 +1770,13 @@ rotateDisplayInitOptions (RotateDisplay o->value.action.terminate = 0; o->value.action.bell = FALSE; o->value.action.edgeMask = 0; + o->value.action.edgeButton = -1; o->value.action.state = CompActionStateInitEdge; o-&gt...
2006 Oct 16
2
Edge + Mouse button draft patches
...eWindow = event->xcrossing.window; -------------- next 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,...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...on.bell = FALSE; > 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; > @@ -1769,11 +1770,13 @@ rotateDisplayInitOptions (RotateDisplay > o->value.action.terminate = 0; > o->value.action.bell = FALSE; > o->value.action.edgeMask = 0; > + o->value.action.edgeButton = -1; > o->value.action.sta...
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
2006 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
...quot;, 36.0); + + annoDrawText (s, x, y, text, family, size, slant, weight, + fillColor, strokeColor, strokeWidth); + } + } + } + + return FALSE; + +} + static Bool annoInitiate (CompDisplay *d, CompAction *action, @@ -174,24 +535,28 @@ if (state & CompActionStateInitKey) action->state |= CompActionStateTermKey; - annoLastPointerX = pointerX; - annoLastPointerY = pointerY; + as->startX = annoLastPointerX = pointerX; + as->startY = annoLastPointerY = pointerY; cr = annoCairoContext (s); if (cr) { + as->eraseMode = FALSE; unsigne...