diff options
author | okan | 2015-11-12 21:28:03 +0000 |
---|---|---|
committer | okan | 2015-11-12 21:28:03 +0000 |
commit | 5585a9d186c32b1f39e9d4ede435dac4343420fd (patch) | |
tree | 062775e6177661520ec4bd3f73ec51015745df99 /calmwm.h | |
parent | fbe1f956e5e6aadb5e7dfb2e6dd760d444ea2fe1 (diff) | |
download | cwm-5585a9d186c32b1f39e9d4ede435dac4343420fd.tar.gz |
more client vs screen context differences
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -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. * - * $OpenBSD: calmwm.h,v 1.310 2015/11/12 18:26:41 okan Exp $ + * $OpenBSD: calmwm.h,v 1.311 2015/11/12 21:28:03 okan Exp $ */ #ifndef _CALMWM_H_ @@ -462,12 +462,7 @@ void screen_update_geometry(struct screen_ctx *); void screen_updatestackingorder(struct screen_ctx *); void kbfunc_client_cycle(struct client_ctx *, union arg *); -void kbfunc_client_cyclegroup(struct client_ctx *, - union arg *); void kbfunc_client_delete(struct client_ctx *, union arg *); -void kbfunc_client_group(struct client_ctx *, union arg *); -void kbfunc_client_grouponly(struct client_ctx *, - union arg *); void kbfunc_client_grouptoggle(struct client_ctx *, union arg *); void kbfunc_client_hide(struct client_ctx *, union arg *); @@ -476,8 +471,6 @@ void kbfunc_client_lower(struct client_ctx *, union arg *); void kbfunc_client_move(struct client_ctx *, union arg *); void kbfunc_client_movetogroup(struct client_ctx *, union arg *); -void kbfunc_client_nogroup(struct client_ctx *, - union arg *); void kbfunc_client_raise(struct client_ctx *, union arg *); void kbfunc_client_rcycle(struct client_ctx *, union arg *); void kbfunc_client_resize(struct client_ctx *, union arg *); @@ -498,6 +491,11 @@ void kbfunc_cwm_status(struct client_ctx *, union arg *); void kbfunc_exec(struct client_ctx *, union arg *); void kbfunc_exec_lock(struct client_ctx *, union arg *); void kbfunc_exec_term(struct client_ctx *, union arg *); +void kbfunc_group_alltoggle(struct client_ctx *, + union arg *); +void kbfunc_group_cycle(struct client_ctx *, union arg *); +void kbfunc_group_only(struct client_ctx *, union arg *); +void kbfunc_group_toggle(struct client_ctx *, union arg *); void kbfunc_menu_exec(struct client_ctx *, union arg *); void kbfunc_menu_client(struct client_ctx *, union arg *); void kbfunc_menu_cmd(struct client_ctx *, union arg *); |