aboutsummaryrefslogtreecommitdiffstats
path: root/client.c (unfollow)
Commit message (Collapse)AuthorLines
2009-01-23passing a null pointer to free() is valid; sprinkle a few free->xfree.okan-3/+2
ok oga@
2009-01-22now that pwin is gone gone gone, we no longer have to do the bwidthokan-30/+27
dance; xevents now able to deal with a border being set (which fixes those annoying movie-watching apps). ok todd@, oga@
2009-01-22Cache all of the X atoms we use at startup.oga-20/+8
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@.
2009-01-17Finally fix the really annoying race where if you rapidly switch groups severaloga-5/+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-156/+34
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-33/+12
- 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@
2008-09-29Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga-28/+105
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-117/+24
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-24/+117
``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
2008-07-15move client_vertmaximize to a more sensible location, purely for readability.okan-20/+20
"don't mind at all" oga@
2008-07-15save an X call and use what we already have stored.okan-9/+5
ok oga@
2008-07-15don't compensate for bwidth twice.okan-3/+3
ok oga@
2008-07-11we already have ymax, so use it instead of asking X for it again.okan-8/+4
ok oga@
2008-07-11spacing, declaration lineup to be consistent throughout cwm,okan-57/+60
readability, and a bit of knf. ok oga@
2008-06-30only cycle through visible *and* non-ignored windows.okan-3/+3
ok oga@
2008-06-25Actually grab the correct mouse buttons for a window, instead of doing theoga-3/+2
old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
2008-06-18No need to map/unmap the window on hide/show since we already do theoga-3/+1
same to its parent. "makes sense" okan@.
2008-06-14(mostly) proper xshape event supportokan-4/+1
ok oga@
2008-06-12re-work client_placecalc()okan-45/+29
- make sure new clients sit inside the current screen - respect 'gap' placement on new clients ok oga@
2008-05-23make sure to take bwdith into account when placing a new window.okan-4/+3
ok oga@
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-19client_cyclenext() -> client_cycle() since we now pass an arg.okan-2/+2
removes a stray proto as well. discussed with and ok oga@
2008-05-19Use the XGrabKeyboard hack in for alt-tabbing as well. This stops theoga-3/+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@
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-18remove extra calls to client_draw_border()okan-3/+1
ok oga@
2008-05-17fix cwm's current XShape support from Edd Barrett -thanks.okan-16/+24
XShape events should be handled at some point. ok oga@
2008-05-15KNF, no binary change.oga-5/+5
From Pierre Riteau. Thanks!
2008-05-15tiny bit of knfokan-14/+6
ok oga@
2008-05-01Rework the alt-tabbing code to be a lot simpler.oga-53/+31
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-16Remove screen_infomsg(), nothing uses it.oga-16/+2
ok okan.
2008-04-15hit it with the knf stick.oga-23/+24
2008-04-15Add "gap" support to .cwmrc. The options put in here make gaps on the edgeoga-11/+10
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-86/+1
discussed with a few ok oga@
2008-03-26Fix a couple of issues with the maximization code.oga-8/+19
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-22Rip out, burn, and dance around the grave of group-edit mode.oga-5/+2
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-19As mentioned in my last commit, there was an issue where the switchingoga-5/+9
code would always assume that the number of windows to switch to was three if there were more windows hidden. Check for CLIENT_HIDDEN when we count. Now it counts correctly. ok simon@.
2008-01-16huge amount of cleanup and dead code removal.oga-37/+1
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.
2008-01-11- Remove the "all rights reserved" tag at the top of most of the sourceoga-2/+13
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@
2008-01-03Adjust initial window placement with any geometry that would placemarc-4/+7
the window at or over the right or bottom edge. OK oda@
2008-01-01Only use the x,y values from the XSizeHints structure when they are greatermarc-3/+5
than zero. The fields are obsolete and not always used. OK jasper@
2007-10-02When cycling, only the end of the window names will be printed if thejasper-1/+5
name is too long. so show the beginning instead. from Pierre Riteau <pierre.riteau at free.fr> "looks correct" matthieu@
2007-06-08don't map hidden windows on re-start.jasper-3/+8
from aon@iki.fi
2007-06-05make it possible to cycle through the windows when non are selected.jasper-3/+12
(eg. when they're hidden, now you can cycle through them) from aon@iki.fi
2007-05-29show hidden windows when they should (eg. when the pointer is warped to them)jasper-2/+6
from aon@iki.fi via bernd@
2007-05-29don't give borderless windows a border, when they're inactivejasper-3/+1
from aon@iki.fi via bernd@
2007-05-28convert globals from G_foo to Foo, as per TODO.jasper-71/+71
"looks good" pedro@, ok matthieu@