summary refs log tree commit diff
path: root/calmwm.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Cache all of the X atoms we use at startup.oga2009-01-221-0/+10
| | | | | | | | 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@.
* borderwidth as a cwmrc(5) keyword, really helps debuggingtodd2009-01-211-1/+2
| | | | | from okan@ ok oga@
* remove unusedokan2009-01-171-1/+0
| | | | ok oga@
* Finally fix the really annoying race where if you rapidly switch groups severaloga2009-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | times you'd end up losing clients (thinking they had gone away). From the ICCCM (which should not be read without a stiff drink in hand, I made this mistake so you don't have to): to request a window to be withdrawn one should send a synthetic UnmapRequest event when iconified. To request iconification one should just unmap the window. The ICCM further recommends that the synthetic event should just be taken as a cue to withdraw, to deal with legacy clients. Taking a hint from this, rework xev_handle_unmaprequest to correctly detect these situations. A Withdrawn window may come back anywhere, even as a subwindow of something else, so the correct way to handle this state is to forget it ever existed. While i'm here, kill a dumb attempt to notice this in client_delete, and nuke the very unnecessary arguments. Todd confirmed this fixes the `race'. ok todd@, ok ok okan@
* remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-161-14/+3
| | | | | | | | | | | | 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@
* - add missing prototypes.okan2009-01-151-0/+1
| | | | | | | | | - properly name, place and static private functions. - move function which finds the xinerama screen for a coordinate to a more appropriate place while altering its semantics to match others. - tiny bit of style. ok oga@
* shortcut_to_name should not be defined as static in a header file. Putoga2009-01-111-5/+1
| | | | | | | it in group.c where it it used most, and add an extern definition for the other users of it. Found by gcc -Wall. ok okan@
* add missing prototypesokan2009-01-111-0/+4
| | | | ok oga@
* - merge grab_sweep() into mousefunc_window_resize().okan2009-01-111-3/+0
| | | | | | | | | | - merge grab_drag() into mousefunc_window_move(). - properly name, proto and static private functions. - since we already do XMoveResizeWindow() and XMoveWindow() in (now) mousefunc_window_resize() and mousefunc_window_move() respectively, client_resize() and client_move() calls are unnecessary. ok oga@
* Kill obviously dead variable.oga2008-12-041-2/+0
|
* Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga2008-09-291-0/+7
| | | | | | | | | | | 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-7/+0
| | | | | 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-0/+7
| | | | | ``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-0/+2
| | | | | | | | | | | | 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-1/+1
| | | | | | | | | | | 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.
* Add xu_key_ungrab() and a mirror to xu_key_ungrab(). a couple of changesoga2008-07-221-0/+1
| | | | | | that are coming up depend on it. ok okan.
* Kill screen_init(). it's been stubbed out for a while now. I don't envision itoga2008-07-221-1/+0
| | | | | | coming back in it's current form. ok okan@.
* kill another leftover prototype.oga2008-07-221-1/+0
| | | | ok okan@
* no more hidden (and mysterious) config reloads and allow binding a keyokan2008-07-111-1/+1
| | | | | | to a config reload; CMS-r by default. ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-2/+2
| | | | | | readability, and a bit of knf. ok oga@
* Allow a mouse binding to hide a window, and add a default keybinding for CMS-M3,oga2008-06-251-0/+1
| | | | | | so it's hard to press by accident, but there if you need it. requested (in a way) and tested by johan and todd.
* Actually grab the correct mouse buttons for a window, instead of doing theoga2008-06-251-0/+1
| | | | | | old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
* Ignore caps lock and numlock for keyboard bindings. The way Xlib makesoga2008-06-171-1/+1
| | | | | | | | | you do this is ugly. Also remove mod2 (numlock) and mod3 (odd) from the list of keybinding modifiers. They don't make much sense here. based on a heavily modified diff from Martynas. ok okan.
* Rip out and burn the HASH_* stuff. We don't need a SPLAY tree for one font.oga2008-06-151-27/+10
| | | | | | | makes the code a lot simpler. While here rearrange the font handling functions to be less shit. ok and help okan@.
* (mostly) proper xshape event supportokan2008-06-141-0/+1
| | | | ok oga@
* confable menu and window mouse bindings from rivo nurges (thanks!) withokan2008-06-141-0/+24
| | | | | | some minor fixups, man page bits and knf. ok oga@
* kill another long gone protookan2008-06-121-1/+0
|
* Make menu_filter handle mouse movement too. This enables the keyboardoga2008-05-211-3/+2
| | | | | | | | | | 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-7/+5
| | | | | | | | | | | 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@.
* stop normalizing search input; searching and matching are stillokan2008-05-191-1/+1
| | | | | | | | | case-insensitive. since this was the only use of normalizing input, simplify as well. allows one to exec with mixed case unmatched commands. "works for me" oga@
* Function prototypes should not have parameter names in them. These mustoga2008-05-191-11/+11
| | | | | | have been missed last time i knfed this. ok okan.
* client_cyclenext() -> client_cycle() since we now pass an arg.okan2008-05-191-2/+1
| | | | | | removes a stray proto as well. discussed with and ok oga@
* allow an autogroup value of 0 to mean no group. This means you can setoga2008-05-191-1/+1
| | | | | | | | | automatically "sticky" (in the traditional sense of the word) windows in autogroup mode. Based on an initial diff from Andrew Fresh, thanks! ok okan@.
* as done with cycle/rcycle, make prev/next group switching one kbfuncsokan2008-05-191-4/+6
| | | | | | and use a flag; adjusted to match and rename to {r,}cycle. "ok, since i came up with the same thing" oga@
* Use the XGrabKeyboard hack in for alt-tabbing as well. This stops theoga2008-05-191-0/+3
| | | | | | | | | | | mru getting the order messed up when gvim/xpdf et all steal key events. While i'm here, change the logic in client_cyclenext() to use break instead of goto, it's nicer that way. Thirdly, instead of two different kbfuncs, just use the one and a flag. "put your cycle diff in so I can pkg_delete gvim" okan@
* finally implement keyboard binding for group togglingokan2008-05-191-0/+1
| | | | | | | | | | idea for the "slightly-less-abhorrent-hack-but-a-hack-nonetheless-TM" from oga@ grab and ungrab the keyboard to get around some silly X apps that like stealing events ok oga@
* Kill conf_get_int(), it was a silly function anyway.oga2008-05-181-13/+1
| | | | | | | | Since it's only used once just put the (simplified) logic into conf_client() instead. This means we can kill an enum and CONF_IGNORECASE, too. ok okan@
* group_ctx->name is only used in this one function, and for now itoga2008-05-181-1/+0
| | | | | | | | | | corresponds directly to the static list of group names. Just use the static list and stop strdup()ing a new version for the context struct. Since that never got freed this also fixes a small memleak. Kill some unused variables while i'm here. ok okan@
* fix cwm's current XShape support from Edd Barrett -thanks.okan2008-05-171-0/+1
| | | | | | XShape events should be handled at some point. ok oga@
* Rework the alt-tabbing code to be a lot simpler.oga2008-05-011-2/+0
| | | | | | | | | | Diff mostly from Edd Barrett, with some minor changes from me. Unfortunately the issue where apps like gvim and xpdf are stealing keyrelease events causing the ordering to be messed up, but this is a lot better. A fix for the aforementioned issue shall be forthcoming, once a good one's been found. ok okan@, also tested by todd@
* merge kbfunc_{ptrmove,client_{move,resize}} into one function that takes a flag,oga2008-04-161-7/+9
| | | | | | this code was almost identical... ok okan.
* remove infowin. It slipped out of the last commit, for some reason.oga2008-04-161-1/+0
|
* Replace a few leftover calls to strdup and calloc with xstrdup and xcallocoga2008-04-161-2/+2
| | | | | | respectively. ok okan.
* Remove screen_infomsg(), nothing uses it.oga2008-04-161-2/+0
| | | | ok okan.
* kill an unused struct member.oga2008-04-161-1/+0
| | | | ok okan
* make the argument parser for commands accept quoted strings, while i'moga2008-04-151-1/+1
| | | | | | | | | | | | | | | there make u_spawn use exec_wm (renamed to u_exec) for it's execution to remove duplicated code. This means constructs like this work in .cwmrc: bind CM-t "ssh -Y 192.168.1.2 \"xterm -e top\"" or alternatively: bind CM-t "ssh -Y 192.168.1.2 'xterm -e top'" "in it goes" okan@.
* Kill dirent_isdir() and dirent_islink() nothing used them since the newoga2008-04-151-3/+0
| | | | | | parser went in. ok okan.
* hit it with the knf stick.oga2008-04-151-235/+238
|
* Add "gap" support to .cwmrc. The options put in here make gaps on the edgeoga2008-04-151-0/+1
| | | | | | | | | of the screen where an application won't be {,vert}maximized over. used for placing a statusbar or something like xclock. Patch from Edd Barrett, with input from myself and okan. Thanks! ok okan@.