aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2009-01-17remove unusedokan-2/+1
ok oga@
2009-01-17Finally fix the really annoying race where if you rapidly switch groups severaloga-2/+2
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@
2009-01-16remove pwin, bringing us to one client, one window. we no longer haveokan-15/+4
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@
2009-01-15- add missing prototypes.okan-1/+2
- 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@
2009-01-11shortcut_to_name should not be defined as static in a header file. Putoga-6/+2
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@
2009-01-11add missing prototypesokan-1/+5
ok oga@
2009-01-11- merge grab_sweep() into mousefunc_window_resize().okan-4/+1
- 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@
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@