about summary refs log tree commit diff
path: root/calmwm.c
Commit message (Collapse)AuthorAgeFilesLines
* cvsimportChristian Neukirchen2013-12-131-0/+1
|\
| * ICCCM explicitly states that server time (CurrentTime) should *not* beokan2013-12-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | 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@
* | cvsimportokan2013-07-161-1/+3
|\|
| * simplify atom handling; allows us to limit to one round-trip to serverokan2013-07-151-1/+3
| | | | | | | | for gathering Atoms.
* | cvsimportokan2013-07-101-3/+1
|\|
| * whitespace and style fixes; from Tiago Cunha and one from me.okan2013-07-081-3/+1
| |
* | cvsimportokan2013-06-201-23/+6
|\|
| * move Cursors into conf.okan2013-06-171-11/+1
| |
| * now that we have conf_screen, which configures individual screensokan2013-06-171-12/+5
| | | | | | | | | | *after* config parsing, we no longer need to split up display/screen initialization, so collapse.
* | cvsimportChristian Neukirchen2013-05-291-9/+1
|\|
| * get rid of long standing XXX: now that we configure screens based onokan2013-05-221-8/+0
| | | | | | | | config options, add the keybinding GrabKey calls here
| * if -> ifdefokan2013-05-141-1/+1
| |
* | cvsimportokan2013-04-141-8/+2
|\|
| * makes no sense to set an error handler which uses X_Dpy before XOpenDisplay.okan2013-04-121-2/+0
| |
| * push Screenq into screen_initokan2013-04-121-6/+2
| |
* | cvsimportokan2012-12-191-67/+30
|\|
| * simplify config file setup; with Tiago Cunhaokan2012-12-181-3/+18
| |
| * pull user home directory via getenv or getpwuid and stash it so we don'tokan2012-12-171-0/+11
| | | | | | | | need to do this everytime; with Tiago Cunha
| * non-trivial menu drawing rewrite, moving to Xft and solving variousokan2012-12-171-5/+0
| | | | | | | | font/color drawing issues; from Alexander Polakov
| * zap extra linesokan2012-11-291-2/+0
| |
| * x_setupscreen -> screen_init; no functional change.okan2012-11-291-57/+1
| |
* | Use vendored queue.h everywhereChristian Neukirchen2012-11-261-1/+1
|/
* sortokan2012-11-091-1/+1
|
* replace 'reload' with 'restart', which merely re-exec's cwm using theokan2012-10-311-0/+2
| | | | | | | 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
* support multibyte input to menu code; from Alexander Polakov with a tiny tweak.okan2012-08-071-0/+5
|
* Further simplify Xinerama init and re-init on XRR events.okan2012-07-181-5/+2
| | | | | | | | | | | 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.
* querying for Xinerama should be done per display, not per screen, sookan2012-07-061-11/+4
| | | | | move chuck to display init; allows some shuffling to occur limiting screen_init_xinerama()'s scope while keeping order intact.
* the display's width and height are updated after an XRandR event so weokan2012-07-051-2/+2
| | | | | | don't need to pass down the new values to screen_update_geometry(); so just read the width/height values directly for both uses of screen_update_geometry(). prep for further changes in this area.
* instead of using the menu window for _NET_SUPPORTING_WM_CHECK, create aokan2012-05-161-2/+3
| | | | | | | dummy one to use instead; allows us to not have to wait for menu_init(), so re-shuffle _NET_SUPPORTED slightly. ok sthen@
* knf, some from a diff from Tiago Cunha.okan2012-05-131-0/+2
|
* allow configurable menu font color; from Alexander Polakov with a tweakokan2011-09-081-1/+0
| | | | | | from me. ok oga@
* We are inconsistent when it comes to function returns, so just go allokan2011-07-251-3/+4
| | | | | | the way with the cwm specific parts. ok oga@
* Clarify defines and make them not look like non-local ones; started by aokan2011-07-231-2/+2
| | | | | | small diff from Thomas Pfaff. ok oga@
* add 'normal' cursor and shuffle the others we use to make a bit moreokan2011-06-241-10/+11
| | | | | | | | sense and to be slightly less un-expected. from Alexander Polakov. re-use 'normal' cursor now instead XC_hand1 for menu selection. i really wish X had real docs and made sense. ok on earlier diff with '?' removed (but it's back now) oga@
* replace the non-working check to see if another wm is running with aokan2011-06-241-19/+20
| | | | | | | method that actually works. checking for icccm compliant wm's should also be done first, but that's another diff (noted by oga). ok oga@
* tag and comment cleanup; ok oga@okan2011-05-111-1/+1
|
* grab events on the root window *before* we look for existing windows.oga2010-04-121-6/+6
| | | | | | | This closes a race we were hitting often where stuff started right before cwm may not get noticed and not have borders. ok okan@. Prompted by something todd noticed.
* - allow per-screen gap; not (yet) user configurable.okan2010-01-271-0/+1
| | | | | | - teach _NET_WORKAREA about gap. ok oga@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+10
| | | | | | are required. encourged to go all the way by oga@
* pull these headers only into files that need them.okan2009-12-151-0/+3
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-1/+0
| | | | | | separate commits. ok oga@
* Implement _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT andoga2009-12-101-11/+4
| | | | | | _NET_DESKTOP_GEOMETRY. ok okan@
* finish unfucking the screen_ctx handling.oga2009-12-101-7/+2
| | | | | | | | | | | | | remove screen_current() it was utterly bogus when nscreens > 1. pass a fake client_ctx in the case where there's no client and the kbfunc or mousefunc doesn't need a real one, it just contains the current screen, modify these functions so that they pass down the screen context to their callees. make groups per screen, it's the only way it makes sense in this regard. ok okan@.
* start fixing screen_ctx usage, for it is utterly broken. bring fontokan2009-12-081-2/+2
| | | | | | | | | into screen_ctx and start passing screen_ctx around to in order get rid of Curscreen; fixup per-screen config colors the same way. diff mostly from oga@, with a bit harsher reaction to the state of screen_ctx. "please commit" oga@
* Implement _NET_NUMBER_OF_DESKTOPS, currently this is statically 9 andoga2009-12-071-1/+8
| | | | | | | unchangable. the group code needs some cleaning up before this will be a bit less hackish. ok okan@
* introduce the beginnings of netwm support, minimally and correctly;okan2009-12-071-0/+2
| | | | | | | | | | allows java to be happy, but additionally stops others from whinning about a non-netwm complaint wm. more to come. written a few times; this one includes a clever hack from oga@ to populate _NET_SUPPORTED. ok oga@
* Instead of having a function that just calls TAILQ_INIT on a global, useoga2009-08-241-4/+2
| | | | | | TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@
* static local functions and data; almost identical diff from Thomas Pfaffokan2009-06-261-7/+6
| | | | ok oga@
* tidy up startup/init routinesokan2009-06-231-5/+5
| | | | ok oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-1/+1
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@