Displaying 4 results from an estimated 4 matches for "compactionst".
Did you mean:
compactions
2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
...XOpenDisplay (name);
if (!d->display)
{
diff --git a/src/event.c b/src/event.c
index 335cd56..35cc472 100644
--- a/src/event.c
+++ b/src/event.c
@@ -680,6 +680,60 @@ triggerEdgeLeaveBindings (CompDisplay *d,
}
static Bool
+triggerAllEdgeEnterBindings (CompDisplay *d,
+ CompActionState state,
+ unsigned int edge,
+ CompOption *argument,
+ int nArgument)
+{
+ CompOption *option;
+ int nOption;
+ CompPlugin *p;
+
+ for (p = getPlugins(); p; p = p->next)
+ {
+ if (p->vTable->getDisplayOptions)
+ {
+ option = (*p->vTable-...
2007 Aug 05
1
[PATCH] Unbound modifiers and CompNoMask
...tly into gmail works as 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;
un...
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
...tents.y1 = y + extents.y_bearing - 2.0;
+ reg.extents.x2 = x + extents.width + 20.0;
+ reg.extents.y2 = y + extents.height;
+
+
+ as->content = TRUE;
+ damageScreenRegion (s, ®);
+
+ }
+}
+
+
+static Bool
+annoRemoteInitiate (CompDisplay *d,
+ CompAction *action,
+ CompActionState state,
+ CompOption *option,
+ int nOption)
+{
+ CompScreen *s;
+ Window xid;
+ char *tool;
+ cairo_t *cr;
+
+ xid = getIntOptionNamed (option, nOption, "root", 0);
+
+ tool = getStringOptionNamed (option, nOption, "tool", &q...