aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2008-12-04Kill obviously dead variable.oga-3/+1
2008-09-29Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga-1/+8
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.
2008-09-22*sigh* Revert the diff that wasn't meant to go in yet.oga-8/+1
note to self: When you mean to type cvs commit search.c, don't forget the filename.
2008-09-22Display the current window title not a previous one in the case ofoga-1/+8
``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
2008-07-22fix the froggy problem.oga-1/+2
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.
2008-07-22We've been handling grabbing wrong all this time (noticed at c2k8).oga-1/+3
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.
2008-07-22split x_setup() into two. dpy_init() for setting up the display andoga-2/+2
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.
2008-07-22Add xu_key_ungrab() and a mirror to xu_key_ungrab(). a couple of changesoga-1/+2
that are coming up depend on it. ok okan.
2008-07-22Kill screen_init(). it's been stubbed out for a while now. I don't envision itoga-2/+1
coming back in it's current form. ok okan@.
2008-07-22kill another leftover prototype.oga-2/+1
ok okan@
2008-07-11no more hidden (and mysterious) config reloads and allow binding a keyokan-2/+2
to a config reload; CMS-r by default. ok oga@
2008-07-11spacing, declaration lineup to be consistent throughout cwm,okan-3/+3
readability, and a bit of knf. ok oga@
2008-06-25Allow a mouse binding to hide a window, and add a default keybinding for CMS-M3,oga-1/+2
so it's hard to press by accident, but there if you need it. requested (in a way) and tested by johan and todd.
2008-06-25Actually grab the correct mouse buttons for a window, instead of doing theoga-1/+2
old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
2008-06-17Ignore caps lock and numlock for keyboard bindings. The way Xlib makesoga-2/+2
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.
2008-06-15Rip out and burn the HASH_* stuff. We don't need a SPLAY tree for one font.oga-28/+11
makes the code a lot simpler. While here rearrange the font handling functions to be less shit. ok and help okan@.
2008-06-14(mostly) proper xshape event supportokan-1/+2
ok oga@
2008-06-14confable menu and window mouse bindings from rivo nurges (thanks!) withokan-1/+25
some minor fixups, man page bits and knf. ok oga@
2008-06-12kill another long gone protookan-2/+1
2008-05-21Make menu_filter handle mouse movement too. This enables the keyboardoga-4/+3
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@.
2008-05-20Pull out the behaviour in grab_label and search_start into one utilityoga-8/+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@.
2008-05-19stop normalizing search input; searching and matching are stillokan-2/+2
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@
2008-05-19Function prototypes should not have parameter names in them. These mustoga-12/+12
have been missed last time i knfed this. ok okan.
2008-05-19client_cyclenext() -> client_cycle() since we now pass an arg.okan-3/+2
removes a stray proto as well. discussed with and ok oga@
2008-05-19allow an autogroup value of 0 to mean no group. This means you can setoga-2/+2
automatically "sticky" (in the traditional sense of the word) windows in autogroup mode. Based on an initial diff from Andrew Fresh, thanks! ok okan@.
2008-05-19as done with cycle/rcycle, make prev/next group switching one kbfuncsokan-5/+7
and use a flag; adjusted to match and rename to {r,}cycle. "ok, since i came up with the same thing" oga@
2008-05-19Use the XGrabKeyboard hack in for alt-tabbing as well. This stops theoga-1/+4
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@
2008-05-19finally implement keyboard binding for group togglingokan-1/+2
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@
2008-05-18Kill conf_get_int(), it was a silly function anyway.oga-14/+2
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@
2008-05-18group_ctx->name is only used in this one function, and for now itoga-2/+1
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@
2008-05-17fix cwm's current XShape support from Edd Barrett -thanks.okan-1/+2
XShape events should be handled at some point. ok oga@
2008-05-01Rework the alt-tabbing code to be a lot simpler.oga-3/+1
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@
2008-04-16merge kbfunc_{ptrmove,client_{move,resize}} into one function that takes a flag,oga-8/+10
this code was almost identical... ok okan.
2008-04-16remove infowin. It slipped out of the last commit, for some reason.oga-2/+1
2008-04-16Replace a few leftover calls to strdup and calloc with xstrdup and xcallocoga-3/+3
respectively. ok okan.
2008-04-16Remove screen_infomsg(), nothing uses it.oga-3/+1
ok okan.
2008-04-16kill an unused struct member.oga-2/+1
ok okan
2008-04-15make the argument parser for commands accept quoted strings, while i'moga-2/+2
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@.
2008-04-15Kill dirent_isdir() and dirent_islink() nothing used them since the newoga-4/+1
parser went in. ok okan.
2008-04-15hit it with the knf stick.oga-236/+239
2008-04-15Add "gap" support to .cwmrc. The options put in here make gaps on the edgeoga-1/+2
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@.
2008-04-09remove alt-tab menuokan-2/+1
discussed with a few ok oga@
2008-04-07Add quit function, bind it per default to CM-q and change exec_wmsimon-1/+2
binding to CM-w. Inital diff from Gleydson Soares Feedback from oga@ and okan@ ok oga@
2008-03-26Fix a couple of issues with the maximization code.oga-10/+12
If a window is vertically maximized, then resized, before the MAXIMIZED flag wasn't removed, now it is. so doing a resize then does the right thing. Also, separate flags are needed for vertical and normal maximziation, else when you do vertical-maximize, followed by maximize, the window returns to it's original size. ok simon@, okan@
2008-03-23Replace the symlink configuration scheme with a simple yacc parser assimon-17/+37
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@
2008-03-22Rip out, burn, and dance around the grave of group-edit mode.oga-14/+1
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@.
2008-03-22Remove a bunch of unused variables and incorrect comments.oga-25/+3
"ok with me" okan@.
2008-02-20add exec_wm to calmwm.h, it was missing (bad ian@!)oga-1/+2
Also, exec_wm() currenty err()s out if something failed with the exec, killing the currently running wm. This is bad. Replace the err() with warn() instead. from Gleydson Soares, thanks!
2008-02-13usage never returns, and thus should be __dead.oga-2/+2
ok jasper@.
2008-02-13add usage() for when an unknown option is given.oga-1/+2
from Gleydson Soares <gsoares@gmail.com>, thanks! ok jasper@