summaryrefslogtreecommitdiff
path: root/app/cwm/kbfunc.c
AgeCommit message (Collapse)Author
2024-04-10Grab the pointer against the root window instead of the client we're attemptingOkan Demirmen
to move and/or resize; prevents XNextEvent() from blocking on a client that might have been moved to a Withdrawn state. behavior noticed and reported by zenitds at proton.me - thanks!
2023-07-20Allow cwm(1) to cycle through windows of the same window class as theOkan Demirmen
active window; default key binding to M-grave, respectively Alt-Tilde, like other window managers have as well. from Simon Dassow
2022-02-27cycling fix: when no client is active, warp pointer to last active;Okan Demirmen
from Walter Alejandro Iglesias.
2022-02-26whitespaceOkan Demirmen
2022-01-27Add group-last command that shows only the previously active group; ok okanop
2020-03-20Simplify conditional construct.Tim van der Molen
OK okan@
2020-03-20No need to lookup current client early; move to right before it isOkan Demirmen
needed.
2020-02-27Unrelated style fixes, consistency changes and sorting, appropriateOkan Demirmen
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions.
2020-01-21Ensure the pointer stays within client bounds after a window 'snap' (to edge).Okan Demirmen
reported by Stefan Hagen.
2019-08-13Because cwm warps the pointer during a client move (to stay within the client),Okan Demirmen
there's a window of time where an expose or enternotify event will get generated for a lower client; use a hammer and drain events after keyboard move/resize, until such a time that cwm doesn't warp the pointer. Behavior noticed by kn. ok kn@
2019-03-07Teach client_current() to use a screen to find the current client instead ofOkan Demirmen
iterating over all (fallback if no screen provided for now). Initially convert trivial uses of client_current().
2019-03-07shuffle deck chairs: rename group actions to match intent for clarityOkan Demirmen
2019-03-04Separate out the menu window from the client resize/move geom window; in eachOkan Demirmen
case, create and destroy on-demand. Isolate more menu specific code.
2019-02-25Add 'group-close-[n]' action to close all windows within specified group.Okan Demirmen
heavily based on a diff from Nam Nguyen.
2019-02-22Rename internal functions to delinate between client remove, delete and xprotoOkan Demirmen
delete; 'window-close' is now the proper action, but 'window-delete' as an alias will remain until more interesting changes require breaking configs.
2019-02-13fix missing includesOkan Demirmen
2017-12-29Convert menu-exec-wm from an abritrary exec menu, into a config-based menu fromOkan Demirmen
which one may configure (wm <name> <path_and_args>) (and choose) specific window managers to replace the running one. 'wm cwm cwm' is included by default. No objections and seems sensible to sthen.
2017-12-29As done for buttonrelease, work specific un-cycling and un-highlighting actionsOkan Demirmen
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.
2017-12-29Merge group_toggle_membership_leave into the buttonrelease event and only doOkan Demirmen
border work for a group/ungroup action.
2017-12-29add helper function client_show to bring together like actions for unhide/raiseOkan Demirmen
2017-12-19Use a variable to keep track of flags for menu_filter().Okan Demirmen
2017-12-11Unconditionally show prompt on menus, regardless of invocation.Okan Demirmen
2017-12-07Original idea from Dimitris Papastamos to move windows to corners a while ago;Okan Demirmen
re-proposed by Julien Steinhauser with an updated diff. Apparently this was in the original calmnwm. However, expand the original idea and let clients 'snap' to edges instead, neatly allowing key bindings that snap to adjacent edges (i.e. corners) as well. No default bindings assigned.
2017-12-07give command and group menus their own match callbacksOkan Demirmen
2017-12-07spacingOkan Demirmen
2017-11-30Revert r1.109 (Switch to XWindowEvent() pulling out events that match the maskOkan Demirmen
*and* window.) of mousefunc.c. When a client destroys itself while we are moving or resizing it, XWindowEvent() blocks. Found the hard way by Anton Lazarov, and Lea°hNeukirchen found the right bit to revert - thanks! Reverting since the reason to switch from XMaskEvent was unclear.
2017-07-14remove extra parenthesesOkan Demirmen
2017-07-14Pull over the remaining re-implemented window move/resize functions and createOkan Demirmen
a wrapper so that the key and mouse based move/resize callbacks can be unified. This has already been done with other window operations and menus.
2017-07-12rename one function, matching others, to help upcoming changeOkan Demirmen
2017-07-10Replace fgetln(3) with POSIX getline(3); inspired by brynet and Ingo.Okan Demirmen
feedback and ok brynet@
2017-05-09Alter callbacks to take a struct instead of a growing number of arguments;Okan Demirmen
greatly simplifies upcoming work.
2017-05-01Clean up, unify and accurately calculate edge distance with client move/resizeOkan Demirmen
actions, so as to not lose windows off the edge. inspired by diffs (and feedback) from Vadim Vygonets.
2017-01-05Ensure client stays inbound on key-based resize; based on logic existing inOkan Demirmen
key-based client move; from Vadim Vygonets.
2016-12-06Add search_print_text(), a default callback for mi->print in menu_filter(). ↵Okan Demirmen
While here, normalize the remaining search_print_* argument paramters.
2016-12-06Consistent use of menuq_add for ssh menu.Okan Demirmen
2016-12-01Tame the number of 'exec' and 'path' search_match wrappers. No functionalOkan Demirmen
change now, though more can likely go later, losing the (paritally complete or incomplete/broken) argument completion bits.
2016-12-01Switch ssh menu to search_match_text; like group/window/cmd menus, use only aOkan Demirmen
substring match. The previous matching is only intended for the exec menus.
2016-12-01Change 'menu-window' to display all windows; then add 'menu-window-hidden' forOkan Demirmen
the previous behaviour of 'menu-window'. 'menu-window' becomes the default binding; use 'bind-mouse "1" menu-window-hidden' to restore old behaviour for those who prefer. OK sthen@ (long long time ago on a different version)
2016-11-15Use an additional check with lstat(2) when d_type is unknown.Okan Demirmen
from James McDonald via portable.
2016-11-15revert previous; upcoming changes will hopefully deal with these moreOkan Demirmen
naturally.
2016-11-15Add a wrapper based upon xevent handlers around client move/resize for key andOkan Demirmen
mouse bindings.
2016-10-24Make it clear these are flags.Okan Demirmen
2016-10-24Sprinkle __func__ in appropriate error messages.Okan Demirmen
2016-10-18Refactor callbacks to take a void * so as to not try and generalize intoOkan Demirmen
client_ctx in keypress and buttonpress event handlers; pass appropriate *ctx's based on context. While here, limit some globals, replace defines with appropriate variables and fix some naming.
2016-10-06Rename 2 kbfunc to match closer to what they doOkan Demirmen
2016-10-06Add an argument to the callbacks to pass the xevent context, button orOkan Demirmen
key press. This allows to remove a few hacks to duplicate functions only for behaviour changes; now differing behaviours are pushed down to the callback. Also will allow for previously unavailable actions to be bind-able down the road.
2016-10-03For both kb and mouse move, it is possible to grab a client and move itOkan Demirmen
completely off the screen/region; instead, if the pointer is outside of the client bounds, warp the pointer to the closest edge before moving.
2016-10-03client_ptrwarp should not deal with unhiding or raising clients (non ptrOkan Demirmen
requests); most callers do this already - deal with the few that do not. client_ptrwarp becomes a simple wrapper (setpos) but it will be expanded.
2016-09-22Continue merging kb and mouse functions: foldOkan Demirmen
mousefunc_menu_{client,cmd,group} into the respective kbfunc_menu_{client,cmd,group} functions; simply pass a flag down from config denoting mouse action behaviour.
2015-11-17If a client does not set increment values, use 'moveamount' as a way toOkan Demirmen
scale keyboard based resizes; extend kbfunc_amount(). Behaviour noted by, tested by, and ok sthen@