diff options
author | okan | 2013-07-08 18:39:20 +0000 |
---|---|---|
committer | okan | 2013-07-08 18:39:20 +0000 |
commit | ee5ad9e95b20897654c9830178f8f707b65adbe8 (patch) | |
tree | 62b269e17ff50d137c5d39262d73d2e596f37b47 /calmwm.h | |
parent | 63e9ed547d2b6c27553b71a57d79d8afce15e2c5 (diff) | |
download | cwm-ee5ad9e95b20897654c9830178f8f707b65adbe8.tar.gz |
add support for mouse based group {,r}cycle; from Rodrigo Mosconi. not
bound by default.
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 6 |
1 files changed, 5 insertions, 1 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.215 2013/07/08 18:19:22 okan Exp $ + * $OpenBSD: calmwm.h,v 1.216 2013/07/08 18:39:20 okan Exp $ */ #ifndef _CALMWM_H_ @@ -424,12 +424,16 @@ void kbfunc_ssh(struct client_ctx *, union arg *); void kbfunc_term(struct client_ctx *, union arg *); void kbfunc_tile(struct client_ctx *, union arg *); +void mousefunc_client_cyclegroup(struct client_ctx *, + void *); void mousefunc_client_grouptoggle(struct client_ctx *, void *); void mousefunc_client_hide(struct client_ctx *, void *); void mousefunc_client_lower(struct client_ctx *, void *); void mousefunc_client_move(struct client_ctx *, void *); void mousefunc_client_raise(struct client_ctx *, void *); +void mousefunc_client_rcyclegroup(struct client_ctx *, + void *); void mousefunc_client_resize(struct client_ctx *, void *); void mousefunc_menu_cmd(struct client_ctx *, void *); void mousefunc_menu_group(struct client_ctx *, void *); |