summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/calmwm.h b/calmwm.h
index 08ffac9..71018b5 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -205,10 +205,14 @@ struct xevent {
 
 TAILQ_HEAD(xevent_q, xevent);
 
-#define CWM_BIGMOVE	0x1000
-enum directions {
-	CWM_UP = 0, CWM_DOWN, CWM_LEFT, CWM_RIGHT,
-};
+#define CWM_MOVE	0x01
+#define CWM_RESIZE	0x02
+#define CWM_PTRMOVE	0x04
+#define CWM_BIGMOVE	0x08
+#define CWM_UP		0x10
+#define CWM_DOWN	0x20
+#define CWM_LEFT	0x40
+#define CWM_RIGHT	0x80
 
 /*
  * Match a window.
@@ -447,11 +451,9 @@ void			 kbfunc_client_nogroup(struct client_ctx *, void *);
 void			 kbfunc_client_maximize(struct client_ctx *, void *);
 void			 kbfunc_client_vmaximize(struct client_ctx *, void *);
 void			 kbfunc_quit_wm(struct client_ctx *, void *);
-void			 kbfunc_client_move(struct client_ctx *, void *);
-void			 kbfunc_client_resize(struct client_ctx *, void *);
+void			 kbfunc_moveresize(struct client_ctx *, void *);
 void			 kbfunc_menu_search(struct client_ctx *, void *);
 void			 kbfunc_exec(struct client_ctx *, void *);
-void			 kbfunc_ptrmove(struct client_ctx *, void *);
 void			 kbfunc_ssh(struct client_ctx *, void *);
 void			 kbfunc_term(struct client_ctx *, void *);
 void			 kbfunc_lock(struct client_ctx *, void *);