summary refs log tree commit diff
path: root/client.c
Commit message (Collapse)AuthorAgeFilesLines
* replace XFetchName() with something more intelligent which attempts tookan2010-05-221-3/+4
| | | | | | | | use the appropriate netwm Atom first, as well as deal with utf8. slightly different incarnation tested by sthen@ and ajacoutot@ - thanks! ok oga@
* clean up a few xu_* functions to just accept what they need (Window).okan2010-04-111-3/+3
| | | | ok oga@
* Honour program-specified window position in size hints when placing windows.stsp2010-02-021-1/+1
| | | | | | Makes XMMS windows appear as expected. ok okan, oga
* - allow per-screen gap; not (yet) user configurable.okan2010-01-271-20/+20
| | | | | | - teach _NET_WORKAREA about gap. ok oga@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+9
| | | | | | are required. encourged to go all the way by oga@
* pull these headers only into files that need them.okan2009-12-151-0/+2
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-1/+0
| | | | | | separate commits. ok oga@
* finish unfucking the screen_ctx handling.oga2009-12-101-3/+1
| | | | | | | | | | | | | 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@.
* support _NET_CLIENT_LIST.oga2009-12-071-0/+23
| | | | | | | | the x property api doesn't let you remove one entry from an X property array, so client_remove is kinda expensive, but there's no real way around that.. ok okan@
* Implement _NET_ACTIVE_WINDOW. for now just the informational hint isoga2009-12-071-2/+19
| | | | | | | supported, the client message to change this will be supported when all informational hints are working. ok okan@
* style (whitespaces)tobias2009-11-281-3/+3
| | | | ok oga, okan
* With Xinerama enabled, the borders of a maximized window will show up onoga2009-09-251-2/+7
| | | | | | | | | all adjacent screens. This patch hides the borders while the window is maximized. From Bertrand Janin; thanks! ok okan@
* unroll the CCTOSC macro; from Thomas Pfaffokan2009-08-271-11/+11
| | | | ok oga@
* Instead of messing around everytime we do a resize, just clamp theoga2009-08-251-4/+5
| | | | | | resize increments to a minimum of one, and use it unconditionally. "you've convinced me, do it!" okan@
* unroll macro; ok oga@okan2009-08-251-3/+3
|
* Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga2009-08-241-3/+38
| | | | | | based on a diff by Thomas Pfaff; thanks! ok okan@
* bring together gathering, calculating and applying of size hints;okan2009-08-241-9/+91
| | | | | | additionally, respect aspect ratio hints. ok oga@
* Instead of having a function that just calls TAILQ_INIT on a global, useoga2009-08-241-6/+0
| | | | | | TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@
* instead of checking for flags in the client context, then removing them.oga2009-08-241-2/+1
| | | | | | | | | | | e.g.: if (flags & flags_we_care_about) flags &= ~(flags_we_care_about); just whack the flags unconditionally, it's simpler. okan@ agrees.
* static local functions and data; almost identical diff from Thomas Pfaffokan2009-06-261-7/+13
| | | | ok oga@
* tidy up startup/init routinesokan2009-06-231-1/+1
| | | | ok oga@
* compact a bit by condensing a few if-else's; from Thomas Pfaffokan2009-06-201-10/+2
| | | | "go on then" oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-2/+2
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* spacingokan2009-06-201-2/+0
|
* re-factor parts of mouse move/resize bit to shrink and make moreokan2009-06-171-5/+0
| | | | | | readable; no behavior change ok oga@
* re-order a bit for readability.okan2009-05-301-10/+7
| | | | "if it makes you happy" 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@
* a long time coming - re-work the way we deal with colors: since we'reokan2009-05-171-8/+8
| | | | | | | | 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@
* redraw the border when unhiding a client window. fixes the situation wheresthen2009-05-171-0/+1
| | | | | | | | you change to a different group and the mouse isn't over a window; previously the border of the previously active window was highlighted but it didn't actually have focus. reads ok to oga@.
* passing a null pointer to free() is valid; sprinkle a few free->xfree.okan2009-01-231-2/+1
| | | | ok oga@
* now that pwin is gone gone gone, we no longer have to do the bwidthokan2009-01-221-29/+26
| | | | | | | dance; xevents now able to deal with a border being set (which fixes those annoying movie-watching apps). ok todd@, oga@
* Cache all of the X atoms we use at startup.oga2009-01-221-19/+7
| | | | | | | | 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@.
* Finally fix the really annoying race where if you rapidly switch groups severaloga2009-01-171-4/+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-155/+33
| | | | | | | | | | | | 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-32/+11
| | | | | | | | | - 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@
* Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga2008-09-291-27/+104
| | | | | | | | | | | 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-116/+23
| | | | | 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-23/+116
| | | | | ``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
* move client_vertmaximize to a more sensible location, purely for readability.okan2008-07-151-19/+19
| | | | "don't mind at all" oga@
* save an X call and use what we already have stored.okan2008-07-151-8/+4
| | | | ok oga@
* don't compensate for bwidth twice.okan2008-07-151-2/+2
| | | | ok oga@
* we already have ymax, so use it instead of asking X for it again.okan2008-07-111-7/+3
| | | | ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-56/+59
| | | | | | readability, and a bit of knf. ok oga@
* only cycle through visible *and* non-ignored windows.okan2008-06-301-2/+2
| | | | ok oga@
* Actually grab the correct mouse buttons for a window, instead of doing theoga2008-06-251-2/+1
| | | | | | old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
* No need to map/unmap the window on hide/show since we already do theoga2008-06-181-2/+0
| | | | | | same to its parent. "makes sense" okan@.
* (mostly) proper xshape event supportokan2008-06-141-3/+0
| | | | ok oga@
* re-work client_placecalc()okan2008-06-121-44/+28
| | | | | | | - make sure new clients sit inside the current screen - respect 'gap' placement on new clients ok oga@
* make sure to take bwdith into account when placing a new window.okan2008-05-231-3/+2
| | | | ok oga@
* 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@.