diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-08-24 23:54:42 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-08-24 23:54:42 +0000 |
commit | 8264d987202e2b67dc116f7fa876f41470eb04d8 (patch) | |
tree | 3caff32c9072382f4d38f23c435dd7c4d2dba66f /app/cwm/calmwm.h | |
parent | 2eab1059f3e79528b291c772dfa0951a972cc7f8 (diff) |
Add a keybinding to allow horizontal maximisation of a window (CMS-enter).
based on a diff by Thomas Pfaff; thanks!
ok okan@
Diffstat (limited to 'app/cwm/calmwm.h')
-rw-r--r-- | app/cwm/calmwm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/cwm/calmwm.h b/app/cwm/calmwm.h index b90862229..ac32b5631 100644 --- a/app/cwm/calmwm.h +++ b/app/cwm/calmwm.h @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.96 2009/08/24 23:49:04 okan Exp $ + * $Id: calmwm.h,v 1.97 2009/08/24 23:54:41 oga Exp $ */ #ifndef _CALMWM_H_ @@ -96,6 +96,8 @@ TAILQ_HEAD(screen_ctx_q, screen_ctx); #define CLIENT_MAXIMIZED 0x08 #define CLIENT_DOVMAXIMIZE 0x10 #define CLIENT_VMAXIMIZED 0x20 +#define CLIENT_DOHMAXIMIZE 0x40 +#define CLIENT_HMAXIMIZED 0x80 #define CLIENT_HIGHLIGHT_GROUP 1 #define CLIENT_HIGHLIGHT_UNGROUP 2 @@ -347,6 +349,7 @@ void client_ptrsave(struct client_ctx *); void client_draw_border(struct client_ctx *); void client_maximize(struct client_ctx *); void client_vertmaximize(struct client_ctx *); +void client_horizmaximize(struct client_ctx *); void client_map(struct client_ctx *); void client_mtf(struct client_ctx *); struct client_ctx *client_cycle(int); @@ -436,6 +439,8 @@ void kbfunc_client_maximize(struct client_ctx *, union arg *); void kbfunc_client_vmaximize(struct client_ctx *, union arg *); +void kbfunc_client_hmaximize(struct client_ctx *, + union arg *); void kbfunc_reload(struct client_ctx *, union arg *); void kbfunc_quit_wm(struct client_ctx *, union arg *); void kbfunc_moveresize(struct client_ctx *, union arg *); |