Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2020-03-18 | Unrelated style fixes, consistency changes and sorting, appropriate ↵ | okan | -25/+23 | |
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions. | ||||
2019-03-07 | zip extra lines | okan | -6/+2 | |
2019-03-07 | gc clientq inside groups, instead use the better maintained one per-screen | okan | -20/+29 | |
2019-03-07 | shuffle deck chairs: rename group actions to match intent for clarity | okan | -18/+18 | |
2019-03-01 | Tie group number and name together during config. | okan | -8/+3 | |
2019-02-28 | Move the group index (desktop number) check to the only 2 callers that require | okan | -13/+1 | |
checking due to ewmh. | ||||
2019-02-28 | Ensure we don't action on the last group when the requested one is not found. | okan | -20/+18 | |
2019-02-28 | Selectively hide and show clients based on state; merge client_unhide() and | okan | -4/+6 | |
client_show(). | ||||
2019-02-25 | Add 'group-close-[n]' action to close all windows within specified group. | okan | -1/+18 | |
heavily based on a diff from Nam Nguyen. | ||||
2018-01-23 | If the requested group number is invalid, bail but don't kill cwm. | okan | -4/+4 | |
2017-12-29 | Merge group_toggle_membership_leave into the buttonrelease event and only do | okan | -9/+2 | |
border work for a group/ungroup action. | ||||
2017-02-10 | Fix group hidden state when a client wants to be on all desktops on start; | okan | -2/+2 | |
reported by Vadim Vygonets with diff, but another approach was taken. | ||||
2016-10-24 | Sprinkle __func__ in appropriate error messages. | okan | -4/+4 | |
2016-10-18 | Refactor callbacks to take a void * so as to not try and generalize into | okan | -12/+12 | |
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-04 | Turn CALMWM_NGROUPS define into variable, ngroups. | okan | -5/+5 | |
2016-09-02 | Simplify group_holds_only_hidden(); from Vadim Vygonets. | okan | -11/+4 | |
2015-11-10 | Start cleaning up name vs function differences; replace magic numbers. | okan | -2/+2 | |
2015-08-27 | Mechanical change: group->gc | okan | -7/+7 | |
2015-08-27 | Re-add lost chunk in group_cycle from r1.113. | okan | -1/+4 | |
2015-08-25 | Further simplify _NET_WM_DESKTOP handling using new group_assign(). | okan | -7/+4 | |
2015-08-25 | oops; remove left over debug print | okan | -3/+1 | |
2015-08-25 | Allowing sending a valid 'nogroup' (0) group_ctx to group_assign() | okan | -6/+7 | |
(since we init all groups), though assigning the client's group to NULL for 'sticky'; use this simplification in a few places (others to follow). | ||||
2015-08-25 | Split out sticky mode checks and the restoring of a client's group and | okan | -33/+46 | |
_NET_WM_DESKTOP from the config-based auto-grouping; no (intentional) behavior changes. Needed for further work in cleaning up this area. | ||||
2015-08-23 | Move CLIENT_STICKY logic from client hide/unhide to group hide/unhide; | okan | -5/+9 | |
rationale being that clients should be able to hide/unhide independently of group switching. | ||||
2015-08-21 | Bring group and client cycle closer together. | okan | -21/+35 | |
2015-06-28 | replace assert usage | okan | -4/+3 | |
2015-03-28 | Introduce a xreallocarray and convert a few xcalloc instances that do | okan | -2/+2 | |
not require zero'ing. | ||||
2015-01-19 | Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX | okan | -2/+3 | |
and HOST_NAME_MAX+1, respectively. ok doug@ | ||||
2014-10-08 | make group_init work like other *_init's | okan | -15/+14 | |
2014-09-27 | these have nothing to do with 'sticky', but rather group membership; rename. | okan | -6/+3 | |
2014-09-27 | Pass just the group to group_setactive instead of the screen and an | okan | -13/+9 | |
index which then needed to be found in a queue. | ||||
2014-09-23 | Update _NET_CURRENT_DESKTOP with the screen's group_active->num. | okan | -4/+4 | |
2014-09-23 | Move stuff that doesn't belong in group_init; while here, explicitly | okan | -12/+3 | |
initialize hideall and cycling. | ||||
2014-09-17 | Use a similarly named check as sticky for hidden check in a group. | okan | -10/+6 | |
2014-09-17 | Introduce a check to see if a group holds only 'sticky' clients and use | okan | -2/+15 | |
this check to decide if a group is virtually empty. Rationale: if a group contains *only* 'sticky' clients, it should be skipped while cycling through groups. Apply similar logic to the group menu. Based on an idea from phessler@, who also tested another version. | ||||
2014-09-08 | name the group client queue appropriately, like other queues | okan | -11/+11 | |
2014-09-08 | Now that a group knows its screen, only pass down the group_ctx. | okan | -17/+17 | |
2014-09-07 | Add screen_ctx to group_ctx, and populate on init. | okan | -1/+2 | |
2014-09-07 | Get rid of a redundant array of groups per screen; we already have a | okan | -9/+23 | |
link to the group queue for each screen. | ||||
2014-09-06 | Rework group names: stash the group name inside the group_ctx as opposed | okan | -53/+3 | |
to having to manage an array outside in screen_ctx for group names and shortcuts. Simplifies (and moves bits for) reading, and constructing data for, EWMH's _NET_DESKTOP_NAMES. | ||||
2014-09-01 | Merge group_menu into mousefunc_menu_group. | okan | -37/+4 | |
2014-08-25 | Since the flatting out of sc->group_names is only for setting | okan | -25/+3 | |
NET_DESKTOP_NAMES, merge the helper into xu_ewmh_net_desktop_names, where we actually set the property. | ||||
2014-08-25 | Implement _NET_WM_STATE_STICKY, bound to CM-s by default; allows any | okan | -1/+3 | |
client to 'stick' to all desktops (ewmh speak) or groups - this currently has the same affect as setting a client's group to 'nogroup', with the exception that the client can also be in a group, so when un-sticking, the client will go back to its original group/desktop. | ||||
2014-08-24 | gc->hidden has never consistently kept track of a group's state; | okan | -30/+19 | |
group_show() and group_hide() are not the only ways a group can change state - if all clients in a group are either hidden or unhidden, then that group's state should change, as well as the various EWMH ways. Instead of trying to keep track in a wide variety of places, simply query the clients in a group before needing to take action based on the group's state. Solves long standing confusion of when a group is hidden or not. | ||||
2014-08-22 | Fix nogroup regression, where nogroup became an actual group - the | okan | -13/+12 | |
symantics between cwm groups and ewmh got in the way. Ensure a client that wants to be in nogroup stays in nogroup (thus stays in view), even when (re)reading NET_WM_DESKTOP. Paritially reverts patchset 644 (2014-02-07 13:09 PST) which deals with a NULL cc->group. All to be revisited when NET_WM_STATE_STICKY hits cwm. Reported by many; testing and ok phessler. | ||||
2014-08-20 | Purely mechanical; unify 'num', 'no' and 'shortcut'. | okan | -20/+20 | |
2014-08-20 | Split off group window restacking. | okan | -5/+16 | |
2014-08-20 | fix a misleading comment and function name | okan | -6/+6 | |
2014-08-19 | Pull highstack from group_ctx (and useless calculations of); in the one | okan | -17/+10 | |
place that we use highstack, replace that usage with a local variable (for now until stacking is done properly). | ||||
2014-08-18 | Get rid of nhidden in group_ctx; it actually never reported correctly | okan | -8/+6 | |
since nhidden wasn't incremented nor decremeted in all the right places, thus confusing matters. We don't need to carry a count around, so just use a local variable in the one place we need one to supply XRestackWindows(). |