aboutsummaryrefslogtreecommitdiffstats
path: root/kbfunc.c (unfollow)
Commit message (Collapse)AuthorLines
2021-04-27Remove wm menuWynn Wolf Arbor-27/+0
Whilst arguably useful for certain people, or in rare cases, this functionality is not needed in the general case. This will also remove a memory leak where fallback was not properly freed.
2021-04-27Remove ssh menuWynn Wolf Arbor-66/+0
There is no point in keeping this functionality. Saving a few key strokes is not worth the added complexity of the window manager parsing the known_hosts file.
2021-04-27Add BSD compatibility functions and headersWynn Wolf Arbor-1/+1
Original file locations in the OpenBSD tree: - lib/libc/stdlib/reallocarray.c - lib/libc/stdlib/strtonum.c - lib/libc/string/strlcat.c - lib/libc/string/strlcpy.c - sys/sys/queue.h
2020-03-26Simplify conditional construct.tim-6/+3
OK okan@
2020-03-26No need to lookup current client early; move to right before it is needed.okan-4/+2
2020-03-18Unrelated style fixes, consistency changes and sorting, appropriate ↵okan-14/+56
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions.
2020-03-18Ensure the pointer stays within client bounds after a window 'snap' (to edge).okan-1/+2
reported by Stefan Hagen.
2019-08-24Because cwm warps the pointer during a client move (to stay within the ↵okan-1/+3
client), 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-2/+2
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-10/+10
2019-03-04Separate out the menu window from the client resize/move geom window; in eachokan-11/+10
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-1/+7
heavily based on a diff from Nam Nguyen.
2019-02-22Rename internal functions to delinate between client remove, delete and xprotookan-3/+3
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-1/+2
2017-12-29Convert menu-exec-wm from an abritrary exec menu, into a config-based menu fromokan-29/+31
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-3/+10
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-2/+2
border work for a group/ungroup action.
2017-12-29add helper function client_show to bring together like actions for unhide/raiseokan-5/+2
2017-12-19Use a variable to keep track of flags for menu_filter().okan-14/+22
2017-12-11Unconditionally show prompt on menus, regardless of invocation.okan-6/+4
2017-12-07Original idea from Dimitris Papastamos to move windows to corners a while ago;okan-1/+37
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-6/+5
2017-12-07spacingokan-4/+3
2017-11-30Revert r1.109 (Switch to XWindowEvent() pulling out events that match the maskokan-3/+3
*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-3/+3
2017-07-14Pull over the remaining re-implemented window move/resize functions and createokan-3/+140
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-2/+2
2017-07-10Replace fgetln(3) with POSIX getline(3); inspired by brynet and Ingo.okan-12/+11
feedback and ok brynet@
2017-05-09Alter callbacks to take a struct instead of a growing number of arguments;okan-51/+50
greatly simplifies upcoming work.
2017-05-01Clean up, unify and accurately calculate edge distance with client move/resizeokan-44/+22
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-1/+5
key-based client move; from Vadim Vygonets.
2016-12-06Add search_print_text(), a default callback for mi->print in menu_filter(). ↵okan-4/+4
While here, normalize the remaining search_print_* argument paramters.
2016-12-06Consistent use of menuq_add for ssh menu.okan-2/+2
2016-12-01Tame the number of 'exec' and 'path' search_match wrappers. No functionalokan-2/+2
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-2/+2
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-2/+3
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-4/+11
from James McDonald via portable.
2016-11-15revert previous; upcoming changes will hopefully deal with these moreokan-23/+1
naturally.
2016-11-15Add a wrapper based upon xevent handlers around client move/resize for key andokan-1/+23
mouse bindings.
2016-10-24Make it clear these are flags.okan-7/+7
2016-10-24Sprinkle __func__ in appropriate error messages.okan-4/+4
2016-10-18Refactor callbacks to take a void * so as to not try and generalize intookan-167/+171
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-3/+3
2016-10-06Add an argument to the callbacks to pass the xevent context, button orokan-36/+36
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-2/+14
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-1/+3
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-8/+23
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-8/+10
scale keyboard based resizes; extend kbfunc_amount(). Behaviour noted by, tested by, and ok sthen@
2015-11-12more client vs screen context differencesokan-5/+5
2015-11-12If a client sets hints, honor them for kb resize requests, just like weokan-5/+5
do for mouse based resize requests. Based on a patch from Vadim Vygonets.