aboutsummaryrefslogtreecommitdiff
path: root/wm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-11 21:41:49 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-11 21:41:49 +0200
commit48b6e9a3968e54a87f022c8e68b5bec5423cb75f (patch)
tree0c2fccdc7b2b18996840e8043bc1a95a1c897f40 /wm.h
parentb9da4b082eb658b4142b61c149212f414f7653b6 (diff)
added basic mouse support (actually we don't need more)
Diffstat (limited to 'wm.h')
-rw-r--r--wm.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/wm.h b/wm.h
index 7ee6103..b647a3e 100644
--- a/wm.h
+++ b/wm.h
@@ -13,19 +13,6 @@
typedef struct Client Client;
typedef struct Key Key;
-typedef enum Align Align;
-
-enum Align {
- NORTH = 0x01,
- EAST = 0x02,
- SOUTH = 0x04,
- WEST = 0x08,
- NEAST = NORTH | EAST,
- NWEST = NORTH | WEST,
- SEAST = SOUTH | EAST,
- SWEST = SOUTH | WEST,
- CENTER = NEAST | SWEST
-};
/* atoms */
enum { WMProtocols, WMDelete, WMLast };
@@ -40,7 +27,6 @@ enum { RFloat, RGrid, RLast };
struct Client {
char name[256];
char tag[256];
- unsigned int border;
int proto;
Bool fixedsize;
Window win;