summary refs log tree commit diff
path: root/calmwm.h
Commit message (Collapse)AuthorAgeFilesLines
* cvsimportokan2010-05-221-1/+1
|\
| * replace XFetchName() with something more intelligent which attempts tookan2010-05-221-1/+1
| | | | | | | | | | | | | | | | use the appropriate netwm Atom first, as well as deal with utf8. slightly different incarnation tested by sthen@ and ajacoutot@ - thanks! ok oga@
* | cvsimportoga2010-04-121-3/+2
|\|
| * clean up a few xu_* functions to just accept what they need (Window).okan2010-04-111-3/+2
| | | | | | | | ok oga@
* | Import linux.patchChristian Neukirchen2010-02-211-0/+4
|/ | | | | Patch largely based on cwmbuild.sh from http://tamentis.com/hacks/cwm/ written by Bertrand Janin, updated by Christian Neukirchen.
* preserve labels after an edit action is aborted; extending the menuokan2010-02-101-0/+1
| | | | | | | | | 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@
* - allow per-screen gap; not (yet) user configurable.okan2010-01-271-1/+9
| | | | | | - teach _NET_WORKAREA about gap. ok oga@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-13/+0
| | | | | | are required. encourged to go all the way by oga@
* pull these headers only into files that need them.okan2009-12-151-4/+0
| | | | ok oga@
* rid ourselves of these functional macros; convert to real functions.okan2009-12-151-4/+3
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-0/+27
| | | | | | separate commits. ok oga@
* kill _CWM_GRP atom setting. The netwm stuff does us well enough now thatoga2009-12-141-18/+17
| | | | | | it's superfluous. ok okan@
* add _NET_WORKAREA. for now we ignore the gap, this'll change soonish.oga2009-12-111-1/+2
| | | | ok okan@
* implement support for _NET_WM_DESKTOP properties on windows.oga2009-12-111-1/+2
| | | | | | | | | | | | 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@
* Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespecoga2009-12-111-7/+10
| | | | | | | | | | 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@
* Implement _NET_VIRTUAL_ROOTS (just clear it, we don't use that technique)oga2009-12-101-1/+3
| | | | | | | | and _NET_SHOWING_DESKTOP (we're never doing so right now). only three informational root-window hints to go. ok okan@
* Implement _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT andoga2009-12-101-2/+6
| | | | | | _NET_DESKTOP_GEOMETRY. ok okan@
* finish unfucking the screen_ctx handling.oga2009-12-101-40/+42
| | | | | | | | | | | | | 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@.
* start fixing screen_ctx usage, for it is utterly broken. bring fontokan2009-12-081-8/+8
| | | | | | | | | 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@
* Implement _NET_NUMBER_OF_DESKTOPS, currently this is statically 9 andoga2009-12-071-1/+3
| | | | | | | unchangable. the group code needs some cleaning up before this will be a bit less hackish. ok okan@
* support _NET_CLIENT_LIST.oga2009-12-071-1/+2
| | | | | | | | 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-1/+2
| | | | | | | supported, the client message to change this will be supported when all informational hints are working. ok okan@
* introduce the beginnings of netwm support, minimally and correctly;okan2009-12-071-1/+13
| | | | | | | | | | 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@
* unroll the CCTOSC macro; from Thomas Pfaffokan2009-08-271-2/+0
| | | | ok oga@
* Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga2009-08-241-0/+5
| | | | | | based on a diff by Thomas Pfaff; thanks! ok okan@
* bring together gathering, calculating and applying of size hints;okan2009-08-241-2/+5
| | | | | | additionally, respect aspect ratio hints. ok oga@
* Instead of having a function that just calls TAILQ_INIT on a global, useoga2009-08-241-2/+0
| | | | | | TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@
* static local functions and data; almost identical diff from Thomas Pfaffokan2009-06-261-9/+0
| | | | ok oga@
* tidy up startup/init routinesokan2009-06-231-1/+2
| | | | ok oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-3/+0
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* move like defines to a central, logical location; no binary change.okan2009-06-171-0/+6
| | | | aok oga@
* oops, we appear to have grown an extra prototype for group_only(), getoga2009-05-181-1/+0
| | | | the secateurs out.
* Rip out the event layer and just use a static array of callbacks likeoga2009-05-181-36/+1
| | | | | | | | | | 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@
* a long time coming - re-work the way we deal with colors: since we'reokan2009-05-171-6/+30
| | | | | | | | 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@
* add a "movetogroup" function, which hides the current window fromsthen2009-05-171-0/+3
| | | | | | | | | | | | 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@
* add missing prototype.oga2009-05-141-0/+1
|
* Add a new command (currently no default keybindings for it), grouponly[1-9].oga2009-05-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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@
* properly teardown X connection upon quit; static a few while here,okan2009-04-151-2/+0
| | | | | | requested by oga@ ok oga@ sometime ago
* add 'moveamount' to cwmrc; it sets keyboard movement amount, makingmartynas2009-02-071-0/+2
| | | | | | it more useful on large screens manpage tweak & ok jmc@ ok okan@, oga@
* remove Nscreens and x_screenname() - we really don't need them.okan2009-01-271-3/+0
| | | | ok oga@
* One of the most annoying things to do was restart cwm and lose all ofoga2009-01-271-1/+3
| | | | | | | | | | 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@
* move conf_clear() and add proto.okan2009-01-231-0/+1
| | | | ok todd@ oga@
* Move the keybinding argument to a union to prevent warnings whereoga2009-01-231-26/+36
| | | | | | sizeof(int) != sizeof(void *). This has been annoying me for ages. ok okan@, todd@
* Cache all of the X atoms we use at startup.oga2009-01-221-0/+10
| | | | | | | | 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@.
* borderwidth as a cwmrc(5) keyword, really helps debuggingtodd2009-01-211-1/+2
| | | | | from okan@ ok oga@
* remove unusedokan2009-01-171-1/+0
| | | | ok oga@
* Finally fix the really annoying race where if you rapidly switch groups severaloga2009-01-171-1/+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-14/+3
| | | | | | | | | | | | 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-0/+1
| | | | | | | | | - 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@
* shortcut_to_name should not be defined as static in a header file. Putoga2009-01-111-5/+1
| | | | | | | 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@