Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | make client_mtf static | okan | 2012-12-17 | -6/+4 |
| | ||||
* | create and use menuq_clear() helper; from Tiago Cunha | okan | 2012-12-17 | -39/+26 |
| | ||||
* | current_client() returns _curcc, so use it where appropriate | okan | 2012-12-17 | -7/+7 |
| | ||||
* | screen font -> xftfont | okan | 2012-12-17 | -10/+10 |
| | ||||
* | knf | okan | 2012-12-17 | -31/+34 |
| | ||||
* | non-trivial menu drawing rewrite, moving to Xft and solving various | okan | 2012-12-17 | -72/+140 |
| | | | | font/color drawing issues; from Alexander Polakov | |||
* | zap extra lines | okan | 2012-11-29 | -3/+1 |
| | ||||
* | specific last match for autogroup; few iterations with Kent Spillner. | okan | 2012-11-29 | -9/+12 |
| | ||||
* | x_setupscreen -> screen_init; no functional change. | okan | 2012-11-29 | -60/+59 |
| | ||||
* | remove dead extern | okan | 2012-11-29 | -2/+2 |
| | ||||
* | add xasprintf() for upcoming changes. | okan | 2012-11-28 | -2/+21 |
| | ||||
* | ever since the 9wm code bits were removed or replaced, this file has | okan | 2012-11-28 | -14/+0 |
| | | | | | | been a no-op, for each source file has a complete license marker (ISC). no objections from oga, who did the 9wm rewrite/remove work in 2008. | |||
* | replace hand rolled font_make() with XftFontOpenName() and merge into | okan | 2012-11-28 | -26/+11 |
| | | | | font_init(). | |||
* | add some checks | okan | 2012-11-16 | -1/+8 |
| | ||||
* | variable name consistency; from Thomas Pfaff | okan | 2012-11-14 | -20/+18 |
| | ||||
* | tab-complete buglet fix: once exec_path is completed, allow for | okan | 2012-11-14 | -3/+1 |
| | | | | subsequent completion; from Alexander Polakov | |||
* | sort | okan | 2012-11-09 | -30/+30 |
| | ||||
* | fix some warnings; inspired by a diff from Thordur Bjornsson. | okan | 2012-11-08 | -10/+11 |
| | ||||
* | style nit; from Tiago Cunha. | okan | 2012-11-07 | -3/+2 |
| | ||||
* | add comment why we mouse unbind, just like kbd | okan | 2012-11-07 | -1/+2 |
| | ||||
* | now that we have FOREACH_SAFE queue macros, use them where appropriate; | okan | 2012-11-07 | -9/+3 |
| | | | | from Tiago Cunha. | |||
* | plug a leak when using 'unmap' for kbd/mouse bindings; from Tiago Cunha. | okan | 2012-11-07 | -3/+7 |
| | ||||
* | get rid of the xfree() wrapper around free(); from Tiago Cunha. | okan | 2012-11-07 | -54/+45 |
| | ||||
* | clarify windowname and windowclass values are pulled from the WM_CLASS | okan | 2012-11-07 | -2/+2 |
| | | | | property; from Kent Spillner | |||
* | zap trailing space | okan | 2012-11-07 | -3/+3 |
| | ||||
* | missing headers; from Thordur Bjornsson. | okan | 2012-11-07 | -2/+4 |
| | ||||
* | spacing | okan | 2012-11-07 | -3/+3 |
| | ||||
* | tab completion support for menus; from Alexander Polakov. | okan | 2012-11-07 | -12/+139 |
| | | | | ok sthen@ on an older incarnation | |||
* | try to clarify xprop(1) output, with respect to WM_CLASS, without going | okan | 2012-11-01 | -3/+4 |
| | | | | overboard; suggested idea by jmc | |||
* | no longer a reason to carry conf_path in struct conf, so dice. | okan | 2012-10-31 | -12/+9 |
| | ||||
* | replace 'reload' with 'restart', which merely re-exec's cwm using the | okan | 2012-10-31 | -65/+26 |
| | | | | | | | existing argv; same idea with respect to argv saving as Alexander Polakov. reload support was half-complete and is getting in the way. agreed to by many | |||
* | on reload, run each client through conf_client to pick up potential | okan | 2012-10-29 | -2/+7 |
| | | | | | | | ignore and bwidth changes; also add a hack for existing maximized windows so they don't inherit a new bwidth. based on a diff from, and discussion with, Tiago Cunha. | |||
* | clarify autogroup option; based on diffs from kspillner@acm.org with | okan | 2012-10-28 | -10/+18 |
| | | | | feedback from jmc | |||
* | comment what this whole bit does, not just part of it. | okan | 2012-10-23 | -3/+2 |
| | ||||
* | add a height to struct menu and use it in the most obvious of places. | okan | 2012-10-23 | -9/+11 |
| | ||||
* | treat menu width the same as the height is treated when deciding its | okan | 2012-10-23 | -4/+6 |
| | | | | max size and location; partially from a diff from Alexander Polakov. | |||
* | Stop drawing when menu doesn't fit inside the screen; picked from a | okan | 2012-10-23 | -2/+7 |
| | | | | larger diff from Alexander Polakov. | |||
* | revert previous for now until a way to test more than a few encodings is found | okan | 2012-09-12 | -5/+5 |
| | ||||
* | be explicit in which key masks we allow during keypress and buttonpress | okan | 2012-09-10 | -5/+5 |
| | | | | events; from Alexander Polakov - makes non-us layout reliable. | |||
* | replace with xu_getprop wrapper used everywhere else. | okan | 2012-09-09 | -13/+7 |
| | ||||
* | extend client_resize so that it can know when to reset max flags and | okan | 2012-09-09 | -12/+17 |
| | | | | | | bwidth; this allows a client to be resized from a max state, which now gets treated like a non-max'd client. based on a diff that does part of this in a different way from Alexander Polakov. | |||
* | support multibyte input to menu code; from Alexander Polakov with a tiny tweak. | okan | 2012-08-07 | -23/+26 |
| | ||||
* | Further simplify Xinerama init and re-init on XRR events. | okan | 2012-07-18 | -22/+9 |
| | | | | | | | | | | | While testing for Xinerama during setup was done display-wide, each time XineramaQueryScreens() is called either in start-up or due to an XRR event, the library re-tests for the Xinerama extension anyway before moving on; so the initial test is redundant and allows another global to go away with one other change: always fill in sc->xinerama (and _no), regardless of the success of malloc in XineramaQueryScreens(), and use it to see if Xinerama dimensions exist when asked by client and/or menu code. | |||
* | unify various max routines to match client placement and partially menu ones | okan | 2012-07-16 | -5/+14 |
| | | | | when calculating screen dimensions. | |||
* | check value | okan | 2012-07-16 | -2/+2 |
| | ||||
* | move the HasXinerama check into screen_find_xinerama and simplify logic; | okan | 2012-07-16 | -36/+30 |
| | | | | moves closer to logic in menu code. | |||
* | re-use geom struct in client_ctx (saved)geometry. | okan | 2012-07-13 | -100/+95 |
| | ||||
* | convert xmax/ymax uses to view geometry. | okan | 2012-07-13 | -37/+32 |
| | ||||
* | introduce screen "view" area and "work" area (gap applied) to simplify | okan | 2012-07-13 | -2/+21 |
| | | | | various blocks that require understanding the screen geometry. | |||
* | fix atom for setting WM_STATE. | okan | 2012-07-08 | -2/+2 |
| |