aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2014-08-18Get rid of nhidden in group_ctx; it actually never reported correctlyokan-2/+1
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().
2014-02-08Make sure we cycle through existing client's group membership and setokan-1/+2
the hidden state on the group; important to know group hidden state after a re-exec or restart of cwm (as easily seen in group menu).
2014-02-03Introduce a region queue and replace screen's XineramaScreenInfo; weokan-3/+9
still use Xinerama to populate the regions per screen, but will switch at a more appropriate time.
2014-02-03Move redundant bits from screen_init (while dealing with existingokan-2/+2
clients) directly into client_init, performing the X roundtrip only once. With the previous change in maprequest, this moves decision making into one place for creating new clients.
2014-02-02No need to store screen colormap and visual; rather just use the Xokan-3/+1
macros in the one place they are needed.
2014-02-02The menu already limits entries with MENU_MAXENTRY, so don't botherokan-5/+4
holding a command name limit as well.
2014-01-30Switch ignoreq to winname struct since it's basically the same thing;okan-10/+4
removes limit on name matching.
2014-01-30Move cwm_status around to avoid header fu, and remove extraneous signalokan-2/+1
header from xevents.c; noticed by Christian Neukirchen.
2014-01-30Remove duplicate mouse functions and instead use the kbfunc ones. Nookan-9/+1
user visable changes at this point, but they'll merge at an appropriate time.
2014-01-29Minimize trivial differences between a few kb and mb functions.okan-2/+2
2014-01-29Merge keybinding and mousebinding queues into using the same mergedokan-16/+12
struct, binding; they were essentially the same accept for what was 'pressed', keysym or button.
2014-01-29Check command name/path for truncation and provide user feedback duringokan-2/+2
config parse (and use conf_cmd_add to populate defaults); based on a discussion with Tiago Cunha. While this looks ugly, there are likely some other changes here to come.
2014-01-28Check ignore windowname for truncation and provide user feedback duringokan-2/+2
config parse; based on a discussion with Tiago Cunha.
2014-01-22Somewhat streamline event loop/restart/quit handling; most notableokan-4/+8
change allows a restart to trigger proper teardown first, even though teardown is not (yet) complete. After some discussion with oga@nicotinebsd.org regarding a more complicated version/idea.
2014-01-21Sprinkle a few more const; from Tiago Cunha.okan-3/+3
2014-01-20merge KBFLAG_NEEDCLIENT and MOUSEBIND_CTX_*; brings kbfunc and mousefuncokan-4/+3
bits even closer.
2014-01-20Use argument to pass down flags for mousefunc cyclegroup; removesokan-3/+1
rcyclegroup wrapper need - now similar to kbfunc.
2014-01-20constify and rename some confusing variables around cmdq.okan-7/+8
2014-01-20 - remove redundant range check for buttons in conf_bind_mouse.okan-3/+5
- make conf_bind_kbd return error on non-matches to match what conf_bind_mouse does. - rename some variables while here for clarity. - constify bind and cmd. from Tiago Cunha.
2014-01-20Add a function that adds an entry to a menuq, normalizing a common codeokan-1/+2
path; from Tiago Cunha.
2014-01-03use consistent typesokan-12/+12
2014-01-02bring mousefunc closer to kbfuncokan-13/+20
2014-01-02gc keycode in keybinding since we only deal with keysym nowokan-2/+1
2013-12-16Implement support for EWMH's _NET_WM_STATE_FULLSCREEN hint.okan-3/+8
Since we already have a form of 'maximize', we need to differentiate between 'maximize' and the new 'fullscreen' mode. The 'maximize' mode will continue to honor gap but now *retains* the border, matching the 'vert/horz maximize' behaviour. The new 'fullscreen' mode supports and follows the _NET_WM_STATE_FULLSCREEN hint, allowing the client perform additional window modifications; in this mode, cwm(1) will *ignore* gap, remove borders and freeze(move/resize) the client. Additionally, 'fullscreen' mode will remember various combinations of previous states. * default keybinding changes: CM-f 'fullscreen', CM-m 'maximize' (re-map as desired). Positive feedback from a few, testing and ok sthen@
2013-12-13Teach screen_find_xinerama() to apply gap only when told to do so;okan-2/+6
adjust callers. Needed for an upcoming feature.
2013-12-13Add support for XUrgency and matching _NET_WM_STATE_DEMANDS_ATTENTIONokan-2/+6
ewmh hint; urgencyborder is configurable. The urgency flag will stick, even while on a client in a non-viewable group, until the client receives focus (where the border is reset). Initial diff from Thomas Adam with some changes/enhancements from me.
2013-12-12ICCCM explicitly states that server time (CurrentTime) should *not* beokan-2/+3
used for focus events, but rather the timestamp of the generated event. Track the last event timestamp and send it down for a WM_TAKE_FOCUS ClientMessage. I suspect we should do this for clients that don't announce this Atom as well, though the raciness gets us into a bind. Solves focus order issue since WM_TAKE_FOCUS; fix verified by sthen@ ok sthen@
2013-12-11Add client wrapper for XWMHints to support XA_WM_HINTS in PropertyNotifyokan-1/+2
events; based off a diff from Thomas Adam.
2013-12-11Remove extra work and simplify client state handling.okan-4/+3
2013-12-11Stash Class and WM Hints in client_ctxokan-3/+3
2013-11-27like gap, make snapdist per screenokan-1/+2
2013-11-27Rewrite active/inactive client handling in client_setactive();okan-5/+3
client_leave() served no real purpose, likewise no reason to handle LeaveNotify events since an EnterNotify will process the next active client (and we don't have anything important to process anyway), so xev_handle_leavenotify() goes as well. Allows a simplification of client_mtf() and client_cycle_leave() for clarity. While here, unify a few client_current() checks. No intended behaviour change.
2013-11-12Alter the r1.35 of event.c race fix. Remove the forward looking eventokan-2/+2
queue check (removing the need for a server grab/ungrab) - if the client is going away, let it fall all the way through to a DestroyNotify event. There's no longer a need for us to manually destroy a client ourselves (removing yet another server grab/ungrab). Instead, when the UnmapNotify event is synthetic, simply set the state to Withdrawn (as per ICCCM), else Iconic (in our case 'hidden'). Verified with test case from the 2009 race which was the original reason for r1.35 of event.c.
2013-11-08stash WMProtocols in flagsokan-7/+3
2013-11-02The only reason we need to keep XSizeHints in our client_ctx is forokan-2/+2
flags, so just add one to hints; consolidates sizehints and shrinks. Additionally don't abuse PSize for XGetWMNormalHints() failures.
2013-11-01re-add support for WM_TAKE_FOCUS, and additionally this time only callokan-1/+2
XSetInputFocus() for clients that have the InputHint; latter fix discovered by Valery Masiutsin with a PoC patch - solves keyboard input focus loss for java apps.
2013-10-25A client_delete should behave differently depending on whether theokan-2/+2
triggering event was unmap (with pending destroy) log destroy; we only need to grab/ungrab the server lock, set WithdrawnState and XRemoveFromSaveSet clients coming from an unmap event - doing so for clients coming from destroy are already gone, hence we generate errors.
2013-10-20wrap key ungrab like btn ungrab, for it'll be used againokan-1/+2
2013-10-19Using xu_btn_ungrab() buttons during client_leave doesn't work (errorokan-2/+2
BadValue) when the modifier is already AnyModifier . Instead alter xu_btn_ungrab() to ungrab AnyButton/AnyModifier and call it only when a client is coming into focus in client_setactive(), instead of iterating over ignore mods - matches how we handle key grabs.
2013-10-03unify type; no changeokan-2/+2
2013-07-16max -> nitemsokan-4/+4
2013-07-15shuffle down protoypesokan-51/+48
2013-07-15simplify atom handling; allows us to limit to one round-trip to serverokan-8/+4
for gathering Atoms.
2013-07-09since the root and event window are the same in the case of a buttonokan-2/+2
event on the screen's root window, there's no need to pass down the entire XButtonEvent event, at least to group_menu(), the only callback which takes an argument at this point; instead use the already populated screen.
2013-07-08add support for mouse based group {,r}cycle; from Rodrigo Mosconi. notokan-1/+5
bound by default.
2013-07-08move kbfunc and mousefunc closer togetherokan-10/+11
2013-07-08clarify kbd vs mouse functionsokan-3/+3
2013-06-17move Cursors into conf.okan-7/+12
2013-06-10move synthetic responses and have client_msg only work with WM_PROTOCOLS,okan-3/+3
since that's all ClientMessageEvent is for anyway.
2013-05-27fix type in a ClientMessage (xu_sendmsg).okan-2/+2