Displaying 6 results from an estimated 6 matches for "_compdisplay".
Did you mean:
compdisplay
2007 Sep 24
1
[PATCH] added key bindings for window raise/lower
Hi all,
Did a pretty simple patch to allow raising/lowering window using key
bindings, which I personally use a lot in other window managers.
As simple as it is, it changes the size of the _CompDisplay so we
probably need to bump up the abi version if this is accepted?
Thanks.
Pigeon.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: window_raise_lower_key.patch
Type: text/x-diff
Size: 0 bytes
Desc: not available
Url : http://lists.freedesktop.org/archive...
2006 Oct 18
1
[PATCH] Compiz Events
...(CompDisplay *display,
+ char *pluginName,
+ char *eventName,
+ CompOption *option,
+ int nOption);
+
typedef Bool (*CallBackProc) (void *closure);
typedef void (*ForEachWindowProc) (CompWindow *window,
@@ -749,7 +755,8 @@ struct _CompDisplay {
InitPluginForDisplayProc initPluginForDisplay;
FiniPluginForDisplayProc finiPluginForDisplay;
- HandleEventProc handleEvent;
+ HandleEventProc handleEvent;
+ HandleCompizEventProc handleCompizEvent;
CompPrivate *privates;
};
@@ -853,6 +860,12 @@ setDisplayActi...
2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
...SPLAY_OPTION_PING_DELAY 58
-#define COMP_DISPLAY_OPTION_NUM 59
+#define COMP_DISPLAY_OPTION_EDGE_DELAY 59
+#define COMP_DISPLAY_OPTION_NUM 60
typedef CompOption *(*GetDisplayOptionsProc) (CompDisplay *display,
int *count);
@@ -904,6 +905,8 @@ struct _CompDisplay {
CompTimeoutHandle autoRaiseHandle;
Window autoRaiseWindow;
+ CompTimeoutHandle edgeDelayHandle;
+
CompOptionValue plugin;
Bool dirtyPluginList;
@@ -1107,6 +1110,16 @@ findCursorAtDisplay (CompDisplay *display);
/* event.c */
+typedef struct _CompDelayedEd...
2006 Oct 16
2
Edge + Mouse button draft patches
...n bindings. I do not mind this limitation too much
but I would like to hear if I am doing something wrong.
-------------- next part --------------
diff --git a/include/compiz.h b/include/compiz.h
index 61a9de5..f3c6e6c 100644
--- a/include/compiz.h
+++ b/include/compiz.h
@@ -751,6 +751,8 @@ struct _CompDisplay {
HandleEventProc handleEvent;
+ unsigned int mouseOnEdge;
+
CompPrivate *privates;
};
-------------- next part --------------
diff --git a/src/event.c b/src/event.c
index 2d182be..b228dde 100644
--- a/src/event.c
+++ b/src/event.c
@@ -266,12 +266,18 @@ triggerButtonPressBinding...
2006 Oct 25
2
[PATCH] Edge buttons
...nclude/compiz.h
index 6161f99..8e32f2d 100644
--- a/include/compiz.h
+++ b/include/compiz.h
@@ -343,7 +343,8 @@ struct _CompAction {
Bool bell;
- unsigned int edgeMask;
+ unsigned int edgeMask;
+ int edgeButton;
};
typedef struct {
@@ -751,6 +752,8 @@ struct _CompDisplay {
HandleEventProc handleEvent;
+ unsigned int mouseOnEdge;
+
CompPrivate *privates;
};
@@ -1125,7 +1128,8 @@ #define COMP_SCREEN_OPTION_OPACITY_STEP
#define COMP_SCREEN_OPTION_UNREDIRECT_FS 6
#define COMP_SCREEN_OPTION_DEFAULT_ICON 7
#define COMP_SCREEN_OPTION_S...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...compiz.h
> +++ b/include/compiz.h
> @@ -343,7 +343,8 @@ struct _CompAction {
>
> Bool bell;
>
> - unsigned int edgeMask;
> + unsigned int edgeMask;
> + int edgeButton;
> };
>
> typedef struct {
> @@ -751,6 +752,8 @@ struct _CompDisplay {
>
> HandleEventProc handleEvent;
>
> + unsigned int mouseOnEdge;
> +
> CompPrivate *privates;
> };
>
> @@ -1125,7 +1128,8 @@ #define COMP_SCREEN_OPTION_OPACITY_STEP
> #define COMP_SCREEN_OPTION_UNREDIRECT_FS 6
> #define COMP_SCREEN_OPT...