summary refs log tree commit diff
path: root/calmwm.h
Commit message (Collapse)AuthorAgeFilesLines
* 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@
* Allow a mouse binding to hide a window, and add a default keybinding for CMS-M3,oga2008-06-251-0/+1
| | | | | | so it's hard to press by accident, but there if you need it. requested (in a way) and tested by johan and todd.
* Actually grab the correct mouse buttons for a window, instead of doing theoga2008-06-251-0/+1
| | | | | | old hardcoded ones (which now can be wrong). tested by todd@ and johan@.
* Ignore caps lock and numlock for keyboard bindings. The way Xlib makesoga2008-06-171-1/+1
| | | | | | | | | you do this is ugly. Also remove mod2 (numlock) and mod3 (odd) from the list of keybinding modifiers. They don't make much sense here. based on a heavily modified diff from Martynas. ok okan.
* Rip out and burn the HASH_* stuff. We don't need a SPLAY tree for one font.oga2008-06-151-27/+10
| | | | | | | makes the code a lot simpler. While here rearrange the font handling functions to be less shit. ok and help okan@.
* (mostly) proper xshape event supportokan2008-06-141-0/+1
| | | | ok oga@
* confable menu and window mouse bindings from rivo nurges (thanks!) withokan2008-06-141-0/+24
| | | | | | some minor fixups, man page bits and knf. ok oga@
* kill another long gone protookan2008-06-121-1/+0
|
* Make menu_filter handle mouse movement too. This enables the keyboardoga2008-05-211-3/+2
| | | | | | | | | | search dialogues to be manipulated with the mouse, too. It also allows me to shrink the codebase further by killing grab_menu(). One known issue with highlighting the first entry in a search dialogue, that'll be fixed soonish. ok okan@, tested by Edd Barrett and todd@.
* Pull out the behaviour in grab_label and search_start into one utilityoga2008-05-201-7/+5
| | | | | | | | | | | function menu_filter(). The plan is to eventually merge in grab_menu too. Shrinks the code a fair bit. Also, change XMaskEvent for XWindowEvent to prevent getting exposes for other windows. This is particuarly noticable on slow machines with a LOT of xterms (todd, you're an odd man). ok okan@, todd@.
* stop normalizing search input; searching and matching are stillokan2008-05-191-1/+1
| | | | | | | | | case-insensitive. since this was the only use of normalizing input, simplify as well. allows one to exec with mixed case unmatched commands. "works for me" oga@
* Function prototypes should not have parameter names in them. These mustoga2008-05-191-11/+11
| | | | | | have been missed last time i knfed this. ok okan.
* client_cyclenext() -> client_cycle() since we now pass an arg.okan2008-05-191-2/+1
| | | | | | removes a stray proto as well. discussed with and ok oga@
* allow an autogroup value of 0 to mean no group. This means you can setoga2008-05-191-1/+1
| | | | | | | | | automatically "sticky" (in the traditional sense of the word) windows in autogroup mode. Based on an initial diff from Andrew Fresh, thanks! ok okan@.
* as done with cycle/rcycle, make prev/next group switching one kbfuncsokan2008-05-191-4/+6
| | | | | | and use a flag; adjusted to match and rename to {r,}cycle. "ok, since i came up with the same thing" oga@
* Use the XGrabKeyboard hack in for alt-tabbing as well. This stops theoga2008-05-191-0/+3
| | | | | | | | | | | mru getting the order messed up when gvim/xpdf et all steal key events. While i'm here, change the logic in client_cyclenext() to use break instead of goto, it's nicer that way. Thirdly, instead of two different kbfuncs, just use the one and a flag. "put your cycle diff in so I can pkg_delete gvim" okan@