summary refs log tree commit diff
path: root/calmwm.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* malloc -> callocokan2008-04-151-0/+1
| | | | suggested by and ok oga@
* Sync usage() with reality and manpage.simon2008-04-031-1/+1
| | | | "ok, but no cookie" oga@
* Replace the symlink configuration scheme with a simple yacc parser assimon2008-03-231-15/+8
| | | | | | | | | found in other places of the tree. Remove sticky and font commandline options and add another one for alternative config locations. Split off cwmrc(5) from cwm(1), nuke #ifdef __OpenBSD__ while there. tested by various kind people, feedback from oga@ and okan@ - thanks! ok oga@, jasper@, okan@
* Rip out, burn, and dance around the grave of group-edit mode.oga2008-03-221-1/+0
| | | | | | | | | | | I've yet to speak to anyone who uses it, so just kill it. You can still add/remove from groups using the mouse binding. Groups may get a re-work sometime soon if i have a stroke of genius. knocks about 4k off the i386 binary for me. ok okan@, todd@.
* Remove a bunch of unused variables and incorrect comments.oga2008-03-221-8/+1
| | | | "ok with me" okan@.
* usage never returns, and thus should be __dead.oga2008-02-131-1/+1
| | | | ok jasper@.
* add usage() for when an unknown option is given.oga2008-02-131-1/+10
| | | | | | from Gleydson Soares <gsoares@gmail.com>, thanks! ok jasper@
* Make cwm print the XDisplayName() if it fails to open the display,oga2008-02-131-1/+2
| | | | | | | | instead of an error message that'll be gibberish to most people. from Gleydson Soares. Thanks! ok simon@.
* huge amount of cleanup and dead code removal.oga2008-01-161-40/+5
| | | | | | | | | | | | | | | | | | | | | | | | | full description of changes: -remove fontlist, and all associated structures/calls, it's not needed. this also removes any doubt about leftover 9wm code (the list was borrowed from it). Since cwm now uses Xft for everything, the legacy font handling is just not needed. -add /* FALLTHROUGH */ comments into grab_{label,menu}. I actually didn't intend grab_menu to be a fallthrough, but it actually works quite well there, so remove the extra rectangle drawing. I love it when that happens. -remove a couple of unused prototypes that were obviously missed before. -remove a bunch of commented out or if 0ed out code. It doesn't look to be coming back anytime soon. -several functions returned an int, but this was never checked. most of them only failed if they failed to grab the pointer (thus the internal state didn't change), so just make them void and return early if this is the case. -remove several unused functions and some useless variables. knocks something like 200bytes off the stripped binary size for me. ok marc@, tested by several others.
* Rewrite most of grab_menu in grab.c (it was partly 9wm code).oga2008-01-141-6/+0
| | | | | | | | | | | | | | | | | | | This should work functionally the same, with a few simplifications. Changes: - we don't care if you're holding another button when you release the menu key if you don't want to select anything, move off the menu. - remove the hysteresis from the menu selection (before you had to move more than three pixels onto a new menu entry before it selected it) - simplify a lot of the selection code - kill dead code. - do what the XXX comment said and cache the screensize (i may tweak this later). As far as I can tell, the only code remaining from 9wm is the list of fonts in calmwm.c. Others appear to concur. ok marc@, looked over and tested by a few others. Reminders from okan@.
* - Remove the "all rights reserved" tag at the top of most of the sourceoga2008-01-111-1/+12
| | | | | | | | | | | | | | | | | | files, and replace them with the actual ISC license. - add license to the manpage (it was lacking before) - correct license statement in the README Permission given by Marius (copyright holder): "1. please replace with the standard ISC license 2. you may add the ISC license to the man page 3. feel free to replace the information in the README as well" and Dros (copyright holder for group.c): "Please switch group.c to the ISC License." ok ian@
* convert globals from G_foo to Foo, as per TODO.jasper2007-05-281-66/+66
| | | | "looks good" pedro@, ok matthieu@