summary refs log tree commit diff
path: root/calmwm.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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@
* | nuke the leading underscore notation for local static functions - thereokan2009-05-181-3/+3
| | | | | | | | | | | | are far better ways to know. "go for it" oga@
* | Rip out the event layer and just use a static array of callbacks likeoga2009-05-181-18/+0
| | | | | | | | | | | | | | | | | | | | every other window manager since twm. The event layer is very nice, very shiny, very flexible, and very much underutilised. We don't need any of those shiny features so it's probably better to earn ourselves 1k smaller text size instead. ok todd@, okan@
* | a long time coming - re-work the way we deal with colors: since we'reokan2009-05-171-34/+2
| | | | | | | | | | | | | | | | using Xft(3), use it to select the font color as well instead of trying to build one; properly allocate and free colors at-will, e.g. we now have configurable colors. feedback and ok's todd@ and oga@
* | properly teardown X connection upon quit; static a few while here,okan2009-04-151-0/+16
| | | | | | | | | | | | requested by oga@ ok oga@ sometime ago
* | remove Nscreens and x_screenname() - we really don't need them.okan2009-01-271-31/+1
| | | | | | | | ok oga@
* | Cache all of the X atoms we use at startup.oga2009-01-221-0/+2
| | | | | | | | | | | | | | | | Do this instead of querying for them every time we use them. This removes an XXX that has been in there since time began. This will become more important as we move towards supporting netwm. ok todd@, okan@.
* | remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-161-22/+2
| | | | | | | | | | | | | | | | | | | | | | | | to push attributes around, so things get a lot simplier, while fixing a few issues in the meantime; original suggestion by Edd Barrett many many moons ago. annoying window placement and race, found in c2k8 by todd, fix by oga! lots of feedback from todd and oga - thanks! "commit that bad boy" oga@
* | On startup, don't leak memory when we enumerate existing windows.oga2009-01-151-4/+1
| | | | | | | | | | | | | | | | The behaviour until now was to ask X for the windows name (which is malloced) then drop that on the floor and do nothing with it. Skip this foolery and just skip the window. I don't believe I never noticed this before! "you can has ok" okan@
* | Don't ignore sigpipe. Everytime cwm forks it execs anyway (so itoga2008-12-031-4/+0
| | | | | | | | | | | | | | shouldn't get that signal), and this causes problems for our children since they inherit the ignore. Pointed out by Jacek Masiulani in pr 6010; thanks!
* | Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga2008-09-291-1/+17
| | | | | | | | | | | | | | | | | | | | | | reconfiguration events and change our sizes depending on that. We also detect the xinerama screens for maximize, vertmaximize and initial window placement. This could be improved by automatically resizing maximized windows when the screen resolution changes and by moving windows that would be hidden into visible space. Said changes will come shortly. Tested by many. matthieu@ didn't oppose.
* | *sigh* Revert the diff that wasn't meant to go in yet.oga2008-09-221-17/+1
| | | | | | | | | | note to self: When you mean to type cvs commit search.c, don't forget the filename.
* | Display the current window title not a previous one in the case ofoga2008-09-221-1/+17
| | | | | | | | | | ``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
* | fix the froggy problem.oga2008-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Implement a handler for the MappingEvent, meaning that the keymap has changed. When this happens, ungrab all bindings, update the map, and regrab. Fixes the problem where some keybindings wouldn't work under non us or uk keymaps (especially the .fr map, it seems). Issue noticed by ajacoutot@, ratchov@, and a few people on misc. Based on an initial diff from ratchov@. ok okan.
* | We've been handling grabbing wrong all this time (noticed at c2k8).oga2008-07-221-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | add conf_grab() and conf_ungrab, and use them in the keybinding manipulation functions to {,un}grab the binding for all screens we have defined. the lovely little ordering problem comes in here, since when we parse the config initially Screenq is empty, so regrab after we fill the queue, hopefully later reordering will remove this little need and there will be much rejoicing. ok okan.
* | split x_setup() into two. dpy_init() for setting up the display andoga2008-07-221-8/+16
| | | | | | | | | | | | | | | | | | | | | | checking the X config, and x_setup to set up the screens. There's an ordering problem that means that some of this init needs to come after the config is parsed, the rest should ideally happen before though. This is a rough split, it will be refined later. Again, needed for an upcoming change. ok okan.
* | Kill screen_init(). it's been stubbed out for a while now. I don't envision itoga2008-07-221-5/+0
| | | | | | | | | | | | coming back in it's current form. ok okan@.
* | spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-20/+18
| | | | | | | | | | | | readability, and a bit of knf. ok oga@
* | Sort flags.oga2008-06-251-1/+1
| | | | | | | | | | | | From Pierre Riteau, thanks! ok okan@.
* | Rip out and burn the HASH_* stuff. We don't need a SPLAY tree for one font.oga2008-06-151-5/+3
| | | | | | | | | | | | | | makes the code a lot simpler. While here rearrange the font handling functions to be less shit. ok and help okan@.
* | Make menu_filter handle mouse movement too. This enables the keyboardoga2008-05-211-5/+1
| | | | | | | | | | | | | | | | | | | | search dialogues to be manipulated with the mouse, too. It also allows me to shrink the codebase further by killing grab_menu(). One known issue with highlighting the first entry in a search dialogue, that'll be fixed soonish. ok okan@, tested by Edd Barrett and todd@.
* | Pull out the behaviour in grab_label and search_start into one utilityoga2008-05-201-1/+6
| | | | | | | | | | | | | | | | | | | | | | function menu_filter(). The plan is to eventually merge in grab_menu too. Shrinks the code a fair bit. Also, change XMaskEvent for XWindowEvent to prevent getting exposes for other windows. This is particuarly noticable on slow machines with a LOT of xterms (todd, you're an odd man). ok okan@, todd@.
* | General cleanup.oga2008-05-191-6/+6
| | | | | | | | ok okan@.
* | Signal handler of SIGCHLD calls waitpid() which sets errno on error. Totobias2008-05-061-0/+3
| | | | | | | | | | | | avoid clubbering of errno in normal context, save_errno got introduced. ok oga
* | hit it with the knf stick.oga2008-04-151-22/+22
| |