aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2009-12-11add _NET_WORKAREA. for now we ignore the gap, this'll change soonish.oga-2/+3
ok okan@
2009-12-11implement support for _NET_WM_DESKTOP properties on windows.oga-2/+3
it works kinda like _CWM_GRP, which we added to aid restarts a while ago, but it's standardised and clients are specifically allowed to set it to request a desktop. for noe we leave _CWM_GRP support in, but its days are now numbered. while i'm here fixup an int/long mixup with an earlier diff. ok okan@
2009-12-11Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespecoga-8/+11
says that a pager can change the property at any time (most need a clientmessage). So deal with property updates. Needed to shuffle some of the other code around since we can't just use shortcut_to_name[] everywhere now. ok okan@
2009-12-10Implement _NET_VIRTUAL_ROOTS (just clear it, we don't use that technique)oga-2/+4
and _NET_SHOWING_DESKTOP (we're never doing so right now). only three informational root-window hints to go. ok okan@
2009-12-10Implement _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT andoga-3/+7
_NET_DESKTOP_GEOMETRY. ok okan@
2009-12-10finish unfucking the screen_ctx handling.oga-41/+43
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@.
2009-12-08start fixing screen_ctx usage, for it is utterly broken. bring fontokan-9/+9
into screen_ctx and start passing screen_ctx around to in order get rid of Curscreen; fixup per-screen config colors the same way. diff mostly from oga@, with a bit harsher reaction to the state of screen_ctx. "please commit" oga@
2009-12-07Implement _NET_NUMBER_OF_DESKTOPS, currently this is statically 9 andoga-2/+4
unchangable. the group code needs some cleaning up before this will be a bit less hackish. ok okan@
2009-12-07support _NET_CLIENT_LIST.oga-2/+3
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@
2009-12-07Implement _NET_ACTIVE_WINDOW. for now just the informational hint isoga-2/+3
supported, the client message to change this will be supported when all informational hints are working. ok okan@
2009-12-07introduce the beginnings of netwm support, minimally and correctly;okan-2/+14
allows java to be happy, but additionally stops others from whinning about a non-netwm complaint wm. more to come. written a few times; this one includes a clever hack from oga@ to populate _NET_SUPPORTED. ok oga@
2009-08-27unroll the CCTOSC macro; from Thomas Pfaffokan-3/+1
ok oga@
2009-08-24Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga-1/+6
based on a diff by Thomas Pfaff; thanks! ok okan@
2009-08-24bring together gathering, calculating and applying of size hints;okan-3/+6
additionally, respect aspect ratio hints. ok oga@
2009-08-24Instead of having a function that just calls TAILQ_INIT on a global, useoga-3/+1
TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@
2009-06-26static local functions and data; almost identical diff from Thomas Pfaffokan-10/+1
ok oga@
2009-06-23tidy up startup/init routinesokan-2/+3
ok oga@
2009-06-20unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan-4/+1
place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
2009-06-17move like defines to a central, logical location; no binary change.okan-1/+7
aok oga@
2009-05-18oops, we appear to have grown an extra prototype for group_only(), getoga-2/+1
the secateurs out.
2009-05-18Rip out the event layer and just use a static array of callbacks likeoga-37/+2
every other window manager since twm. The event layer is very nice, very shiny, very flexible, and very much underutilised. We don't need any of those shiny features so it's probably better to earn ourselves 1k smaller text size instead. ok todd@, okan@
2009-05-17a long time coming - re-work the way we deal with colors: since we'reokan-7/+31
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@
2009-05-17add a "movetogroup" function, which hides the current window fromsthen-1/+4
display and moves it to another group. useful with the recently added "grouponly" function, giving the ability to use groups as simple virtual desktops (similar to e.g. xmonad, dwm and scrotwm). this doesn't have default keyboard bindings; cwmrc(5) now shows how you could use these functions (use M-1...9 for grouponly1...9 and MS-1...9 for movetogroup1...9 to emulate the default dwm bindings). ok oga@
2009-05-14add missing prototype.oga-1/+2
2009-05-14Add a new command (currently no default keybindings for it), grouponly[1-9].oga-1/+3
This works like the group select binding, but hides all other groups. So, the people who've been complaining that they don't get "virtual desktops" in cwm may want to try this out in cwmrc (from memory, untested): --- #cwmrc # add new windows to the current group set sticky # automatically sticky windows. xclock for now. # to make more windows sticky use group_toggle to unset their group autogroup 0 xclock # make the group selection keys hide other groups, emulate virtual desktops bind CM-1 grouponly1 bind CM-2 grouponly2 bind CM-3 grouponly3 bind CM-4 grouponly4 bind CM-5 grouponly5 bind CM-6 grouponly6 bind CM-7 grouponly7 bind CM-8 grouponly8 bind CM-9 grouponly9 --- mostly by sthen, tweaks from me. ok todd@, "if it works i'm ok with it" okan@, ok sthen@
2009-04-15properly teardown X connection upon quit; static a few while here,okan-3/+1
requested by oga@ ok oga@ sometime ago
2009-02-07add 'moveamount' to cwmrc; it sets keyboard movement amount, makingmartynas-1/+3
it more useful on large screens manpage tweak & ok jmc@ ok okan@, oga@
2009-01-27remove Nscreens and x_screenname() - we really don't need them.okan-4/+1
ok oga@
2009-01-27One of the most annoying things to do was restart cwm and lose all ofoga-2/+4
your group state. Fix this up by using an X Atom (_CWM_GRP) to store the name of the group that we're using (the name, not the number is because at one point we may make the group numbers dynamic). I've been talking about this since c2k8. so CM-w means you keep all of your windows grouped properly. ok okan@, todd@
2009-01-23move conf_clear() and add proto.okan-1/+2
ok todd@ oga@
2009-01-23Move the keybinding argument to a union to prevent warnings whereoga-27/+37
sizeof(int) != sizeof(void *). This has been annoying me for ages. ok okan@, todd@
2009-01-22Cache all of the X atoms we use at startup.oga-1/+11
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-21borderwidth as a cwmrc(5) keyword, really helps debuggingtodd-2/+3
from okan@ ok oga@
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@