summary refs log tree commit diff
path: root/calmwm.h
Commit message (Collapse)AuthorAgeFilesLines
* Teach client_current() to use a screen to find the current client instead ofokan2019-03-071-1/+1
| | | | | iterating over all (fallback if no screen provided for now). Initially convert trivial uses of client_current().
* gc clientq inside groups, instead use the better maintained one per-screenokan2019-03-071-2/+0
|
* shuffle deck chairs: rename group actions to match intent for clarityokan2019-03-071-3/+3
|
* Separate out the menu window from the client resize/move geom window; in eachokan2019-03-041-8/+7
| | | | case, create and destroy on-demand. Isolate more menu specific code.
* fix a few misplaced (and misnamed) ewmh root window functionsokan2019-03-041-2/+2
|
* Tie group number and name together during config.okan2019-03-011-1/+2
|
* Selectively hide and show clients based on state; merge client_unhide() andokan2019-02-281-1/+0
| | | | client_show().
* Add 'group-close-[n]' action to close all windows within specified group.okan2019-02-251-0/+2
| | | | heavily based on a diff from Nam Nguyen.
* Rename internal functions to delinate between client remove, delete and xprotookan2019-02-221-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.
* Use the original client border width to adjust initial placement of clientsokan2018-11-081-0/+1
| | | | | | | | | | | containing {P,US}Position requests where they are explicitly set to 'ignore' in cwmrc(5); clients are unaware that their border will be altered (removed in this case) when calcuating position and thus end up a factor of their original border width off once mapped by cwm(1). cwm(1) will essentially shift the client to the edge if the original request's position and border match. Window offset noticed by at least Andre Stoebe via bugs@, and others since (and likely before). Thanks!
* Remove unused prototype; from Ross L Richardson.okan2018-07-161-1/+0
|
* Store the screen's visual type and colormap.okan2018-02-131-0/+2
|
* Consolidate region 'view' and 'area'.okan2018-02-131-1/+0
|
* limit scope of screen_apply_gap()okan2018-02-091-1/+0
|
* Clean up conf_file/homedir and conf_init() bits.okan2018-02-091-4/+2
|
* Slightly expand and expose verbose debugging.okan2018-02-041-9/+8
|
* Add a simple debug logging mechanism.okan2018-02-021-0/+10
|
* Simplification; use asprintf where appropriate now.okan2018-02-021-4/+4
|
* Use func attributes where appropriate.okan2018-02-011-2/+5
|
* Generate name_to_func[] in a clean and readable fashion.okan2018-01-231-1/+9
|
* Convert menu-exec-wm from an abritrary exec menu, into a config-based menu fromokan2017-12-291-4/+8
| | | | | | | | 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.
* As done for buttonrelease, work specific un-cycling and un-highlighting actionsokan2017-12-291-1/+1
| | | | | | | | | 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.
* Merge group_toggle_membership_leave into the buttonrelease event and only dookan2017-12-291-2/+1
| | | | border work for a group/ungroup action.
* add helper function client_show to bring together like actions for unhide/raiseokan2017-12-291-0/+1
|
* Add support for _NET_WM_STATE_SKIP_PAGER and _NET_WM_STATE_SKIP_TASKBAR; eerilyokan2017-12-191-1/+10
| | | | | | | close to cwm's 'ignore'. Roughly based on an initial diff from Walter Alejandro Iglesias, but with support for both Atoms and without cwm-based bindings.
* remove duplicate ExposureMaskokan2017-12-151-2/+2
|
* Unconditionally show prompt on menus, regardless of invocation.okan2017-12-111-2/+2
|
* Original idea from Dimitris Papastamos to move windows to corners a while ago;okan2017-12-071-0/+1
| | | | | | | | | 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.
* give command and group menus their own match callbacksokan2017-12-071-0/+4
|
* stash dir into conf since it'll be of useokan2017-12-071-1/+1
|
* Pull over the remaining re-implemented window move/resize functions and createokan2017-07-141-3/+0
| | | | | 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.
* rename one function, matching others, to help upcoming changeokan2017-07-121-1/+1
|
* Alter callbacks to take a struct instead of a growing number of arguments;okan2017-05-091-60/+50
| | | | greatly simplifies upcoming work.
* Clean up, unify and accurately calculate edge distance with client move/resizeokan2017-05-011-0/+1
| | | | | | actions, so as to not lose windows off the edge. inspired by diffs (and feedback) from Vadim Vygonets.
* Switch bwidth type; unfortunately X11 is inconsistent.okan2017-04-261-1/+1
|
* Add search_print_text(), a default callback for mi->print in menu_filter(). ↵okan2016-12-061-0/+1
| | | | | | While here, normalize the remaining search_print_* argument paramters.
* Tame the number of 'exec' and 'path' search_match wrappers. No functionalokan2016-12-011-3/+1
| | | | | change now, though more can likely go later, losing the (paritally complete or incomplete/broken) argument completion bits.
* Change 'menu-window' to display all windows; then add 'menu-window-hidden' forokan2016-12-011-0/+2
| | | | | | | | 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)
* revert previous; upcoming changes will hopefully deal with these moreokan2016-11-151-2/+0
| | | | naturally.
* Add a wrapper based upon xevent handlers around client move/resize for key andokan2016-11-151-0/+2
| | | | mouse bindings.
* Define callbacks, then default bindings.okan2016-11-141-1/+1
|
* Get rid of 'matchname'; it's too surprising to have the menu change duringokan2016-10-241-1/+0
| | | | | | client search as different potential str matches are cycled through. If there's interest, the only string that doesn't exist in the listing is the window's class - that can be added of course, but it makes the line too long imho.
* Refactor callbacks to take a void * so as to not try and generalize intookan2016-10-181-120/+122
| | | | | | | | 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.
* remove another unused protookan2016-10-121-1/+0
|
* Rename 2 kbfunc to match closer to what they dookan2016-10-061-3/+3
|
* Add an argument to the callbacks to pass the xevent context, button orokan2016-10-061-37/+37
| | | | | | | 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.
* Stash wmname into conf.okan2016-10-051-1/+1
|
* When removing xrandr regions, ensure clients are within the bounds ofokan2016-10-041-0/+1
| | | | | | the screen; adapted from an ancient diff from Sviatoslav Chagaev. Things in this area will likely change, but put this in so it works now and serves as a reminder.
* Calculate client nameqlen in client_setname(), the only place it'sokan2016-10-041-2/+1
| | | | needed/used.
* Turn CALMWM_NGROUPS define into variable, ngroups.okan2016-10-041-1/+1
|