summary refs log tree commit diff
path: root/calmwm.h
Commit message (Collapse)AuthorAgeFilesLines
* 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@
* add missing prototypesokan2009-01-111-0/+4
| | | | ok oga@
* - merge grab_sweep() into mousefunc_window_resize().okan2009-01-111-3/+0
| | | | | | | | | | - 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@
* Kill obviously dead variable.oga2008-12-041-2/+0
|
* Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandroga2008-09-291-0/+7
| | | | | | | | | | | 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-7/+0
| | | | | 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-0/+7
| | | | | ``show all'' in the window search dialogue. Noticed and diff from Tim van der Molen, thanks!
* fix the froggy problem.oga2008-07-221-0/+1
| | | | | | | | | | | | 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.
* We've been handling grabbing wrong all this time (noticed at c2k8).oga2008-07-221-0/+2
| | | | | | | | | | | | 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.
* split x_setup() into two. dpy_init() for setting up the display andoga2008-07-221-1/+1
| | | | | | | | | | | 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.
* Add xu_key_ungrab() and a mirror to xu_key_ungrab(). a couple of changesoga2008-07-221-0/+1
| | | | | | that are coming up depend on it. ok okan.
* Kill screen_init(). it's been stubbed out for a while now. I don't envision itoga2008-07-221-1/+0
| | | | | | coming back in it's current form. ok okan@.
* kill another leftover prototype.oga2008-07-221-1/+0
| | | | ok okan@
* no more hidden (and mysterious) config reloads and allow binding a keyokan2008-07-111-1/+1
| | | | | | to a config reload; CMS-r by default. ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-2/+2
| | | | | | readability, and a bit of knf. ok oga@