Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-10 | Grab the pointer against the root window instead of the client we're attempting | Okan 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-20 | Allow cwm(1) to cycle through windows of the same window class as the | Okan Demirmen | |
active window; default key binding to M-grave, respectively Alt-Tilde, like other window managers have as well. from Simon Dassow | |||
2022-02-27 | cycling fix: when no client is active, warp pointer to last active; | Okan Demirmen | |
from Walter Alejandro Iglesias. | |||
2022-02-26 | whitespace | Okan Demirmen | |
2022-01-27 | Add group-last command that shows only the previously active group; ok okan | op | |
2020-03-20 | Simplify conditional construct. | Tim van der Molen | |
OK okan@ | |||
2020-03-20 | No need to lookup current client early; move to right before it is | Okan Demirmen | |
needed. | |||
2020-02-27 | Unrelated style fixes, consistency changes and sorting, appropriate | Okan Demirmen | |
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions. | |||
2020-01-21 | Ensure the pointer stays within client bounds after a window 'snap' (to edge). | Okan Demirmen | |
reported by Stefan Hagen. | |||
2019-08-13 | Because 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-07 | Teach client_current() to use a screen to find the current client instead of | Okan Demirmen | |
iterating over all (fallback if no screen provided for now). Initially convert trivial uses of client_current(). | |||
2019-03-07 | shuffle deck chairs: rename group actions to match intent for clarity | Okan Demirmen | |
2019-03-04 | Separate out the menu window from the client resize/move geom window; in each | Okan Demirmen | |
case, create and destroy on-demand. Isolate more menu specific code. | |||
2019-02-25 | Add 'group-close-[n]' action to close all windows within specified group. | Okan Demirmen | |
heavily based on a diff from Nam Nguyen. | |||
2019-02-22 | Rename internal functions to delinate between client remove, delete and xproto | Okan 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-13 | fix missing includes | Okan Demirmen | |
2017-12-29 | Convert menu-exec-wm from an abritrary exec menu, into a config-based menu from | Okan 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-29 | As done for buttonrelease, work specific un-cycling and un-highlighting actions | Okan 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-29 | Merge group_toggle_membership_leave into the buttonrelease event and only do | Okan Demirmen | |
border work for a group/ungroup action. | |||
2017-12-29 | add helper function client_show to bring together like actions for unhide/raise | Okan Demirmen | |
2017-12-19 | Use a variable to keep track of flags for menu_filter(). | Okan Demirmen | |
2017-12-11 | Unconditionally show prompt on menus, regardless of invocation. | Okan Demirmen | |
2017-12-07 | Original 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-07 | give command and group menus their own match callbacks | Okan Demirmen | |
2017-12-07 | spacing | Okan Demirmen | |
2017-11-30 | Revert r1.109 (Switch to XWindowEvent() pulling out events that match the mask | Okan 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-14 | remove extra parentheses | Okan Demirmen | |
2017-07-14 | Pull over the remaining re-implemented window move/resize functions and create | Okan 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-12 | rename one function, matching others, to help upcoming change | Okan Demirmen | |
2017-07-10 | Replace fgetln(3) with POSIX getline(3); inspired by brynet and Ingo. | Okan Demirmen | |
feedback and ok brynet@ | |||
2017-05-09 | Alter callbacks to take a struct instead of a growing number of arguments; | Okan Demirmen | |
greatly simplifies upcoming work. | |||
2017-05-01 | Clean up, unify and accurately calculate edge distance with client move/resize | Okan Demirmen | |
actions, so as to not lose windows off the edge. inspired by diffs (and feedback) from Vadim Vygonets. | |||
2017-01-05 | Ensure client stays inbound on key-based resize; based on logic existing in | Okan Demirmen | |
key-based client move; from Vadim Vygonets. | |||
2016-12-06 | Add 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-06 | Consistent use of menuq_add for ssh menu. | Okan Demirmen | |
2016-12-01 | Tame the number of 'exec' and 'path' search_match wrappers. No functional | Okan Demirmen | |
change now, though more can likely go later, losing the (paritally complete or incomplete/broken) argument completion bits. | |||
2016-12-01 | Switch ssh menu to search_match_text; like group/window/cmd menus, use only a | Okan Demirmen | |
substring match. The previous matching is only intended for the exec menus. | |||
2016-12-01 | Change 'menu-window' to display all windows; then add 'menu-window-hidden' for | Okan 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-15 | Use an additional check with lstat(2) when d_type is unknown. | Okan Demirmen | |
from James McDonald via portable. | |||
2016-11-15 | revert previous; upcoming changes will hopefully deal with these more | Okan Demirmen | |
naturally. | |||
2016-11-15 | Add a wrapper based upon xevent handlers around client move/resize for key and | Okan Demirmen | |
mouse bindings. | |||
2016-10-24 | Make it clear these are flags. | Okan Demirmen | |
2016-10-24 | Sprinkle __func__ in appropriate error messages. | Okan Demirmen | |
2016-10-18 | Refactor callbacks to take a void * so as to not try and generalize into | Okan 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-06 | Rename 2 kbfunc to match closer to what they do | Okan Demirmen | |
2016-10-06 | Add an argument to the callbacks to pass the xevent context, button or | Okan 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-03 | For both kb and mouse move, it is possible to grab a client and move it | Okan 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-03 | client_ptrwarp should not deal with unhiding or raising clients (non ptr | Okan 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-22 | Continue merging kb and mouse functions: fold | Okan 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-17 | If a client does not set increment values, use 'moveamount' as a way to | Okan Demirmen | |
scale keyboard based resizes; extend kbfunc_amount(). Behaviour noted by, tested by, and ok sthen@ |