summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorPaulo Zanoni <przanoni@src.gnome.org>2007-07-10 03:05:15 +0000
committerPaulo Zanoni <przanoni@src.gnome.org>2007-07-10 03:05:15 +0000
commit50e482c2509992074576f3f98b02604765cbb8fb (patch)
tree6fae9e351e15677f568ab85659556a87fede43d1 /src/common.h
parentd8fd99eb79bdb002f5fd05b261c76b7b63c5e9fa (diff)
downloadmetacity-50e482c2509992074576f3f98b02604765cbb8fb.tar.gz
Corrected RadioButtons.
Adds option to enable/disable device access to windows. Corrects a few bugs. svn path=/branches/multiple_pointer_x/; revision=3265
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h39
1 files changed, 20 insertions, 19 deletions
diff --git a/src/common.h b/src/common.h
index 8571c9f3..5501c781 100644
--- a/src/common.h
+++ b/src/common.h
@@ -52,28 +52,29 @@ typedef enum
typedef enum
{
- META_MENU_OP_DELETE = 1 << 0,
- META_MENU_OP_MINIMIZE = 1 << 1,
- META_MENU_OP_UNMAXIMIZE = 1 << 2,
- META_MENU_OP_MAXIMIZE = 1 << 3,
- META_MENU_OP_UNSHADE = 1 << 4,
- META_MENU_OP_SHADE = 1 << 5,
- META_MENU_OP_UNSTICK = 1 << 6,
- META_MENU_OP_STICK = 1 << 7,
- META_MENU_OP_WORKSPACES = 1 << 8,
- META_MENU_OP_MOVE = 1 << 9,
- META_MENU_OP_RESIZE = 1 << 10,
- META_MENU_OP_ABOVE = 1 << 11,
- META_MENU_OP_UNABOVE = 1 << 12,
- META_MENU_OP_MOVE_LEFT = 1 << 13,
- META_MENU_OP_MOVE_RIGHT = 1 << 14,
- META_MENU_OP_MOVE_UP = 1 << 15,
- META_MENU_OP_MOVE_DOWN = 1 << 16,
+ META_MENU_OP_DELETE = 1 << 0,
+ META_MENU_OP_MINIMIZE = 1 << 1,
+ META_MENU_OP_UNMAXIMIZE = 1 << 2,
+ META_MENU_OP_MAXIMIZE = 1 << 3,
+ META_MENU_OP_UNSHADE = 1 << 4,
+ META_MENU_OP_SHADE = 1 << 5,
+ META_MENU_OP_UNSTICK = 1 << 6,
+ META_MENU_OP_STICK = 1 << 7,
+ META_MENU_OP_WORKSPACES = 1 << 8,
+ META_MENU_OP_MOVE = 1 << 9,
+ META_MENU_OP_RESIZE = 1 << 10,
+ META_MENU_OP_ABOVE = 1 << 11,
+ META_MENU_OP_UNABOVE = 1 << 12,
+ META_MENU_OP_MOVE_LEFT = 1 << 13,
+ META_MENU_OP_MOVE_RIGHT = 1 << 14,
+ META_MENU_OP_MOVE_UP = 1 << 15,
+ META_MENU_OP_MOVE_DOWN = 1 << 16,
#ifdef MPX
- META_MENU_OP_RECOVER = 1 << 17,
+ META_MENU_OP_RECOVER = 1 << 17,
META_MENU_OP_CLIENT_POINTER = 1 << 18,
+ META_MENU_OP_ALLOW_ACCESS = 1 << 19
#else
- META_MENU_OP_RECOVER = 1 << 17
+ META_MENU_OP_RECOVER = 1 << 17
#endif
} MetaMenuOp;