diff options
author | rhp <rhp> | 2001-07-03 01:45:43 +0000 |
---|---|---|
committer | rhp <rhp> | 2001-07-03 01:45:43 +0000 |
commit | 7d79a37c9de437acd06d19ca97c57acdb8e8c31f (patch) | |
tree | 06250023eb1774be71529d1901b10f6ce2ad4b16 /src/common.h | |
parent | 43f807c5e16ca46ef3de02656c0b9f3b4ba0e940 (diff) | |
download | metacity-7d79a37c9de437acd06d19ca97c57acdb8e8c31f.tar.gz |
...
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/common.h b/src/common.h index aacb8f40..4bbe5017 100644 --- a/src/common.h +++ b/src/common.h @@ -28,18 +28,19 @@ typedef enum { - META_FRAME_ALLOWS_DELETE = 1 << 0, - META_FRAME_ALLOWS_MENU = 1 << 1, - META_FRAME_ALLOWS_MINIMIZE = 1 << 2, - META_FRAME_ALLOWS_MAXIMIZE = 1 << 3, - META_FRAME_ALLOWS_RESIZE = 1 << 4, - META_FRAME_TRANSIENT = 1 << 5, - META_FRAME_HAS_FOCUS = 1 << 6, - META_FRAME_SHADED = 1 << 7, - META_FRAME_STUCK = 1 << 8, - META_FRAME_MAXIMIZED = 1 << 9, - META_FRAME_ALLOWS_SHADE = 1 << 10, - META_FRAME_ALLOWS_MOVE = 1 << 11 + META_FRAME_ALLOWS_DELETE = 1 << 0, + META_FRAME_ALLOWS_MENU = 1 << 1, + META_FRAME_ALLOWS_MINIMIZE = 1 << 2, + META_FRAME_ALLOWS_MAXIMIZE = 1 << 3, + META_FRAME_ALLOWS_VERTICAL_RESIZE = 1 << 4, + META_FRAME_ALLOWS_HORIZONTAL_RESIZE = 1 << 5, + META_FRAME_TRANSIENT = 1 << 6, + META_FRAME_HAS_FOCUS = 1 << 7, + META_FRAME_SHADED = 1 << 8, + META_FRAME_STUCK = 1 << 9, + META_FRAME_MAXIMIZED = 1 << 10, + META_FRAME_ALLOWS_SHADE = 1 << 11, + META_FRAME_ALLOWS_MOVE = 1 << 12 } MetaFrameFlags; typedef enum |