summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* remove unnecessary casts; from Thomas Pfaffokan2009-06-171-2/+2
| | | | ok oga@
* re-factor parts of mouse move/resize bit to shrink and make moreokan2009-06-172-34/+24
| | | | | | readable; no behavior change ok oga@
* move like defines to a central, logical location; no binary change.okan2009-06-173-7/+6
| | | | aok oga@
* 'no' is the answer to the comment question: cc->name can't be NULL atokan2009-05-301-10/+5
| | | | | | this point due to client_setname()'s work; remove this check. ok oga@
* re-order a bit for readability.okan2009-05-301-10/+7
| | | | "if it makes you happy" oga@
* revert the 1.4 change - causes a double free noticed by grange@ a whileokan2009-05-301-1/+1
| | | | | | ago while using kazehakase (or clients that don't set a name). ok oga@
* In movetogroup, check the window's current group and skip client_hide()sthen2009-05-191-1/+2
| | | | | if it's the same as the active group. Was in my original movetogroup diff, but it got simplified a little too far. ok oga@
* nuke the leading underscore notation for local static functions - thereokan2009-05-185-49/+49
| | | | | | are far better ways to know. "go for it" 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-183-253/+75
| | | | | | | | | | 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@
* redraw all borders at once on reloadokan2009-05-171-0/+4
| | | | "sure" oga@
* a long time coming - re-work the way we deal with colors: since we'reokan2009-05-1710-64/+158
| | | | | | | | 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@
* minor bit of knf, just to be consistent; oga@ doesn't mind that muchokan2009-05-171-3/+2
|
* unbreakokan2009-05-171-0/+1
|
* add a "movetogroup" function, which hides the current window fromsthen2009-05-175-2/+46
| | | | | | | | | | | | 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@
* 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@.
* add missing prototype.oga2009-05-141-0/+1
|
* Add a new command (currently no default keybindings for it), grouponly[1-9].oga2009-05-145-0/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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@
* right and middle mouse buttons swapped; from rgouveia@cosmico.netokan2009-05-041-3/+3
|
* no need to use the global here.okan2009-05-041-1/+1
| | | | ok todd@ oga@
* properly document menu_unhide; tweak a patch from rgouveia@cosmico.net - thanks.okan2009-05-041-1/+1
| | | | ok oga@
* fix the other 50% of xrandr cases; reported by sthen@okan2009-05-011-8/+10
| | | | "commit that" oga@, ok sthen@
* don't sync more than 60 times per sec on resize and move; idea from scrotwm.okan2009-04-151-2/+24
| | | | ok oga@ sometime ago
* properly teardown X connection upon quit; static a few while here,okan2009-04-152-2/+16
| | | | | | requested by oga@ ok oga@ sometime ago
* we include sys/param.h, so remove sys/types.h; sort while here.okan2009-04-121-18/+15
| | | | ok oga@
* - avoid shadowed Mask declaration in menu_filtermartynas2009-03-282-6/+6
| | | | | - make _xev_reincorporate static evmask naming oga@, input okan@. ok okan@, oga@
* add 'moveamount' to cwmrc; it sets keyboard movement amount, makingmartynas2009-02-075-30/+90
| | | | | | it more useful on large screens manpage tweak & ok jmc@ ok okan@, oga@
* remove leftover from mdoc.samples; ok jmc@martynas2009-02-072-4/+2
|
* fix off-by-one in geom.[xy], after pwin changes. keyboard movementmartynas2009-02-031-4/+4
| | | | | | | to the rightmost or bottommost corners would confuse cwm: - there's no way to get the window back - tab cycling breaks ok okan@, oga@
* remove Nscreens and x_screenname() - we really don't need them.okan2009-01-272-34/+1
| | | | ok oga@
* One of the most annoying things to do was restart cwm and lose all ofoga2009-01-273-8/+26
| | | | | | | | | | 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@
* passing a null pointer to free() is valid; sprinkle a few free->xfree.okan2009-01-232-12/+10
| | | | ok oga@
* Whitespace nit.oga2009-01-231-1/+0
| | | | pointed out by okan.
* Switch to using XInternAtoms for caching the atom numbers. Saves a pileoga2009-01-231-5/+9
| | | | | | of function calls and server roundtrips. ok okan@
* move conf_clear() and add proto.okan2009-01-233-43/+43
| | | | ok todd@ oga@
* Move the keybinding argument to a union to prevent warnings whereoga2009-01-234-116/+126
| | | | | | sizeof(int) != sizeof(void *). This has been annoying me for ages. ok okan@, todd@
* now that pwin is gone gone gone, we no longer have to do the bwidthokan2009-01-223-49/+39
| | | | | | | dance; xevents now able to deal with a border being set (which fixes those annoying movie-watching apps). ok todd@, oga@
* The default font name is strduped, so don't test for default font nameoga2009-01-221-2/+1
| | | | | | (therefore leaking it) when cleaning up a conf struct. ok okan@
* Oops, missed an atom.oga2009-01-221-0/+1
| | | | ok okan@.
* Cache all of the X atoms we use at startup.oga2009-01-224-28/+32
| | | | | | | | 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-214-4/+15
| | | | | from okan@ ok oga@
* library dependency ordering matters for static archs, -lXext last in this casetodd2009-01-191-2/+2
| | | | from matthieu@, verified on vax
* remove unusedokan2009-01-172-12/+1
| | | | ok oga@
* Finally fix the really annoying race where if you rapidly switch groups severaloga2009-01-173-19/+23
| | | | | | | | | | | | | | | | | | | | | | 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@
* revert just the 'race fix'; more works needs to be ironed out withokan2009-01-161-1/+1
| | | | | | events and state. agreed by oga
* remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-169-242/+64
| | | | | | | | | | | | 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@
* On startup, don't leak memory when we enumerate existing windows.oga2009-01-151-4/+1
| | | | | | | | The behaviour until now was to ask X for the windows name (which is malloced) then drop that on the floor and do nothing with it. Skip this foolery and just skip the window. I don't believe I never noticed this before! "you can has ok" okan@
* - add missing prototypes.okan2009-01-154-39/+40
| | | | | | | | | - 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@
* better cast; noticed by ray@okan2009-01-131-1/+1
| | | | ok ray@ oga@
* Add -Wall to CFLAGS, it's helped find a few dodgy constructs.oga2009-01-111-0/+2
| | | | ok okan@.