aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h
diff options
context:
space:
mode:
authortodd2007-06-27 13:28:22 +0000
committertodd2007-06-27 13:28:22 +0000
commit87387d9bcaf92813d3dd4ed8e389aa98725f3b19 (patch)
tree476b140e8a7449689c82a95b2d55fad4064a1499 /calmwm.h
parentd159196cb5b6b857a36ebbc97e19e6205ab1c98d (diff)
downloadcwm-87387d9bcaf92813d3dd4ed8e389aa98725f3b19.tar.gz
implement keyboard initiated movement of windows
enhanced version of diff originally from niallo@ man bits from niallo@ ok niallo@ japser@
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/calmwm.h b/calmwm.h
index 5a47cb9..7d15b82 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: calmwm.h,v 1.7 2007/06/26 19:34:26 niallo Exp $
+ * $Id: calmwm.h,v 1.8 2007/06/27 13:28:22 todd Exp $
*/
#ifndef _CALMWM_H_
@@ -204,6 +204,11 @@ enum kbtype {
KB__LAST
};
+#define CWM_BIGMOVE 0x1000
+enum directions {
+ CWM_UP=0, CWM_DOWN, CWM_LEFT, CWM_RIGHT,
+};
+
#define KBFLAG_NEEDCLIENT 0x01
#define KBFLAG_FINDCLIENT 0x02
@@ -426,6 +431,7 @@ void kbfunc_client_prevgroup(struct client_ctx *, void *);
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_client_move(struct client_ctx *, void *);
void kbfunc_menu_search(struct client_ctx *, void *);
void kbfunc_exec(struct client_ctx *, void *);
void kbfunc_ssh(struct client_ctx *, void *);