Displaying 6 results from an estimated 6 matches for "compactionstatetermkey".
2006 Oct 16
2
Edge + Mouse button draft patches
...tton)
- action->state |= CompActionStateTermButton;
+ if (!(action->edgeMask & d->mouseOnEdge))
+ {
+ if (state & CompActionStateInitButton)
+ action->state |= CompActionStateTermButton;
- if (state & CompActionStateInitKey)
- action->state |= CompActionStateTermKey;
+ if (state & CompActionStateInitKey)
+ action->state |= CompActionStateTermKey;
+ }
}
}
@@ -1372,9 +1375,11 @@ scaleDisplayInitOptions (ScaleDisplay *s
o->value.action.terminate = scaleTerminate;
o->value.action.bell = FALSE;
o->value.a...
2006 Oct 25
2
[PATCH] Edge buttons
...tton)
- action->state |= CompActionStateTermButton;
+ if (!(action->edgeMask & d->mouseOnEdge))
+ {
+ if (state & CompActionStateInitButton)
+ action->state |= CompActionStateTermButton;
- if (state & CompActionStateInitKey)
- action->state |= CompActionStateTermKey;
+ if (state & CompActionStateInitKey)
+ action->state |= CompActionStateTermKey;
+ }
}
}
@@ -1372,9 +1375,11 @@ scaleDisplayInitOptions (ScaleDisplay *s
o->value.action.terminate = scaleTerminate;
o->value.action.bell = FALSE;
o->value.a...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...; + if (!(action->edgeMask & d->mouseOnEdge))
> + {
> + if (state & CompActionStateInitButton)
> + action->state |= CompActionStateTermButton;
>
> - if (state & CompActionStateInitKey)
> - action->state |= CompActionStateTermKey;
> + if (state & CompActionStateInitKey)
> + action->state |= CompActionStateTermKey;
> + }
> }
> }
>
> @@ -1372,9 +1375,11 @@ scaleDisplayInitOptions (ScaleDisplay *s
> o->value.action.terminate = scaleTerminate;...
2007 Aug 05
1
[PATCH] Unbound modifiers and CompNoMask
...ned int modMask = (REAL_MOD_MASK & ~d->ignoredModMask)
+ | CompNoMask;
unsigned int bindMods;
if (event->xkey.keycode == d->escapeKeyCode)
@@ -438,7 +440,8 @@ triggerKeyReleaseBindings (CompDisplay *d,
{
CompActionState state = CompActionStateTermKey;
CompAction *action;
- unsigned int modMask = REAL_MOD_MASK & ~d->ignoredModMask;
+ unsigned int modMask = (REAL_MOD_MASK & ~d->ignoredModMask)
+ | CompNoMask;
unsigned int bindMods;
unsigned int mods...
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 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
...ext, 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;
unsigned short *color;
ANNO_DISPLAY (s->displa...