aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h (unfollow)
Commit message (Collapse)AuthorLines
2011-07-23Clarify defines and make them not look like non-local ones; started by aokan-8/+8
small diff from Thomas Pfaff. ok oga@
2011-07-14correct spelling; from Alexander Polakov.okan-2/+2
2011-06-24add 'normal' cursor and shuffle the others we use to make a bit moreokan-4/+4
sense and to be slightly less un-expected. from Alexander Polakov. re-use 'normal' cursor now instead XC_hand1 for menu selection. i really wish X had real docs and made sense. ok on earlier diff with '?' removed (but it's back now) oga@
2011-06-24New option to raise a client via the mouse (unbound by default);okan-1/+2
opposing action, lower, already exists and bound. Both keyboard mappings already exist. 'no opinion either way' oga@
2011-06-24introduce a new config option to snap to the screen edge. 'snapdist'okan-1/+4
keyword taken from a diff from Sviatoslav Chagaev to do the same thing, but implemented in a completely way (based on some very old code from mk@). default set to 0, so no behavior change. ok oga@ (who would also like to take it further...)
2011-06-24re-do various bits of {,h,v}max for simplicity and less flag handling.okan-8/+5
as a bonus, flipping between various combinations of vmax+hmax provides a more predictable behavior. commitski oga@
2011-06-24struct XftFont already has height which we can use directly instead ofokan-2/+1
calculating ourselves, so do so. ok oga@
2011-06-24alter a few function returns and prototypes; found by lint.okan-4/+4
ok oga@
2011-06-24collapse client and group {r,}cycle defines since they are reallyokan-6/+2
the same thing. ok oga@
2011-05-15fix botched client and group cycle defines; noticed by Thomas Pfaff.okan-5/+5
"no cookie! fix it" - oga@
2011-05-11tag and comment cleanup; ok oga@okan-1/+1
2011-05-07introduce a new 'freeze' flag (CMS-f by default) which may be applied tookan-1/+4
any window, after which all move/resize requests will be ignored, essentially freezing the window in place. there's a possibility to merge this with the 'ignore' concept, pending on how ignore+freeze should behave (really more ewmh stuff), but punting for now since ponies are on the line. requested and tested by thib at k2k11 with ponies, unicorns and rainbows. 'save the unicorns' todd@, ok oga@
2011-05-05re-org. ok oga@okan-309/+269
2011-03-22introduce nitems macro, with the appropriate ifndef.okan-1/+5
ok oga@
2011-03-22while this piece deals with client argv's in a seemingly inefficient wayokan-2/+1
(noticed by Tim Peniket), since we don't ever do anything with cliarg, remove the hunk and cliarg completely. ok oga@
2011-03-22remove XXX and move a configure event out of the event handler functions.okan-4/+2
reminded by a similiar diff from Thomas Pfaff. ok oga@
2011-03-22move the single keycode function directly into the menu code.okan-10/+1
ok oga@
2010-05-22replace XFetchName() with something more intelligent which attempts tookan-2/+2
use the appropriate netwm Atom first, as well as deal with utf8. slightly different incarnation tested by sthen@ and ajacoutot@ - thanks! ok oga@
2010-04-11clean up a few xu_* functions to just accept what they need (Window).okan-4/+3
ok oga@
2010-02-10preserve labels after an edit action is aborted; extending the menuokan-1/+2
struct just for this is the least intrusive approach until the menu code is reviewed. inspired by Thomas Pfaff's report on tech@ ok oga@
2010-01-27- allow per-screen gap; not (yet) user configurable.okan-2/+10
- teach _NET_WORKAREA about gap. ok oga@
2009-12-15pull all non-X11 headers from calmwm.h and place them only where theyokan-14/+1
are required. encourged to go all the way by oga@
2009-12-15pull these headers only into files that need them.okan-5/+1
ok oga@
2009-12-15rid ourselves of these functional macros; convert to real functions.okan-5/+4
ok oga@
2009-12-15merge the 2 common header files; specific includes to be pulled out asokan-1/+28
separate commits. ok oga@
2009-12-14kill _CWM_GRP atom setting. The netwm stuff does us well enough now thatoga-19/+18
it's superfluous. ok okan@
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