diff options
author | okan | 2017-12-29 18:50:43 +0000 |
---|---|---|
committer | okan | 2017-12-29 18:50:43 +0000 |
commit | 94fa8f6008663944358afaeb58a1217cf564a95c (patch) | |
tree | 4bdd8f886ccf464e30724d945a5843cbdfbc9bb7 /calmwm.h | |
parent | 2752425282f3222e609d25dee2df4f4d666274d5 (diff) | |
download | cwm-94fa8f6008663944358afaeb58a1217cf564a95c.tar.gz |
As done for buttonrelease, work specific un-cycling and un-highlighting actions
into the keyrelease event, only performing what's actually needed for each;
should result in much fewer events against keyreleases. No intended behaviour
change.
Additionally, like we do for group membership, grab the keyboard only when
required for cycling.
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 4 |
1 files changed, 2 insertions, 2 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.349 2017/12/29 16:55:50 okan Exp $ + * $OpenBSD: calmwm.h,v 1.350 2017/12/29 18:50:43 okan Exp $ */ #ifndef _CALMWM_H_ @@ -389,7 +389,6 @@ void client_applysizehints(struct client_ctx *); void client_config(struct client_ctx *); struct client_ctx *client_current(void); void client_cycle(struct screen_ctx *, int); -void client_cycle_leave(struct screen_ctx *); void client_delete(struct client_ctx *); void client_draw_border(struct client_ctx *); struct client_ctx *client_find(Window); @@ -401,6 +400,7 @@ void client_lower(struct client_ctx *); void client_map(struct client_ctx *); void client_msg(struct client_ctx *, Atom, Time); void client_move(struct client_ctx *); +void client_mtf(struct client_ctx *); int client_inbound(struct client_ctx *, int, int); struct client_ctx *client_init(Window, struct screen_ctx *, int); void client_ptr_inbound(struct client_ctx *, int); |