Displaying 3 results from an estimated 3 matches for "mouseonedg".
Did you mean:
mouseonedge
2006 Oct 16
2
Edge + Mouse button draft patches
...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 @@ triggerButtonPressBindings (CompDisplay
{
if (action->button.button == event->x...
2006 Oct 25
2
[PATCH] Edge buttons
...+ 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_SYNC_TO_VBLANK 8
-#define COMP_SCREEN_OPTION_NUM 9
+#defi...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...gt; 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_SYNC_TO_VBLANK 8
> -#d...