summary refs log tree commit diff
path: root/kbfunc.c
Commit message (Collapse)AuthorAgeFilesLines
...
* pass the screen workarea, as opposed to viewarea, allowing clientokan2013-01-021-2/+2
| | | | snapping to honor gap.
* re-work client_snapcalc() so it takes client and edge dimensions withokan2013-01-021-4/+4
| | | | | | snapdist; allows for simplier snap calculations. required for an upcoming diff for honoring gap.
* make num of groups no longer off-by-one; from Alexander Polakovokan2013-01-011-3/+3
| | | | | | note that a re-exec of cwm will not rewrite the group number atom of *existing* clients, so they will remain off-by-one until each client has its atom updated, or of course a restart of X.
* put a default known_hosts into confokan2012-12-171-7/+4
|
* pull user home directory via getenv or getpwuid and stash it so we don'tokan2012-12-171-5/+2
| | | | need to do this everytime; with Tiago Cunha
* create and use menuq_clear() helper; from Tiago Cunhaokan2012-12-171-16/+4
|
* sortokan2012-11-091-1/+1
|
* get rid of the xfree() wrapper around free(); from Tiago Cunha.okan2012-11-071-11/+10
|
* missing headers; from Thordur Bjornsson.okan2012-11-071-0/+1
|
* tab completion support for menus; from Alexander Polakov.okan2012-11-071-4/+5
| | | | ok sthen@ on an older incarnation
* replace 'reload' with 'restart', which merely re-exec's cwm using theokan2012-10-311-2/+4
| | | | | | | existing argv; same idea with respect to argv saving as Alexander Polakov. reload support was half-complete and is getting in the way. agreed to by many
* extend client_resize so that it can know when to reset max flags andokan2012-09-091-1/+1
| | | | | | bwidth; this allows a client to be resized from a max state, which now gets treated like a non-max'd client. based on a diff that does part of this in a different way from Alexander Polakov.
* re-use geom struct in client_ctx (saved)geometry.okan2012-07-131-14/+14
|
* convert xmax/ymax uses to view geometry.okan2012-07-131-6/+6
|
* assign and use screen ctx where appropriate and consistently.okan2012-07-041-14/+6
|
* use the screen ctx since we already have it assigned.okan2012-07-041-6/+6
|
* restore mouse move via the keyboard, noticed by todd@. while the checkokan2011-08-291-7/+2
| | | | | | | | for cc was wrong due to the fact that cc->sc is always filled in during the event, we don't even need it - just operate on the focused screen's root window regardless. ok todd@ oga@
* We are inconsistent when it comes to function returns, so just go allokan2011-07-251-8/+9
| | | | | | the way with the cwm specific parts. ok oga@
* Clarify defines and make them not look like non-local ones; started by aokan2011-07-231-4/+4
| | | | | | small diff from Thomas Pfaff. ok oga@
* introduce a new config option to snap to the screen edge. 'snapdist'okan2011-06-241-0/+7
| | | | | | | | 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...)
* Correct extern declaration and while here, rename a variable to beokan2011-06-241-2/+2
| | | | | | | | pedantic. from Thomas Pfaff. ok oga@
* tag and comment cleanup; ok oga@okan2011-05-111-3/+3
|
* introduce a new 'freeze' flag (CMS-f by default) which may be applied tookan2011-05-071-0/+9
| | | | | | | | | | | | | 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@
* preserve labels after an edit action is aborted; extending the menuokan2010-02-101-5/+5
| | | | | | | | | 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@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+9
| | | | | | are required. encourged to go all the way by oga@
* pull these headers only into files that need them.okan2009-12-151-0/+1
| | | | ok oga@
* merge the 2 common header files; specific includes to be pulled out asokan2009-12-151-1/+0
| | | | | | separate commits. ok oga@
* finish unfucking the screen_ctx handling.oga2009-12-101-30/+38
| | | | | | | | | | | | | 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@.
* we already have sc from the passed cc, so just used that instead.okan2009-12-071-1/+1
| | | | ok oga@
* be consistentokan2009-12-071-6/+6
| | | | ok oga@
* style (whitespaces)tobias2009-11-281-1/+1
| | | | ok oga, okan
* re-introduce the intention of the change from rev 1.4 in menu.c hereokan2009-09-051-2/+6
| | | | | | | instead, by moving the check for '\0' to only the places that it matters. hint and 50% of the diff from oga@, prodded by todd@ ok oga@
* we are not doing access control here, so replace the "check if file isokan2009-08-251-34/+5
| | | | | | | | executable" goo with access(2). originally from jacekm@ long time ago. "i can live with that" oga@
* Add a keybinding to allow horizontal maximisation of a window (CMS-enter).oga2009-08-241-0/+6
| | | | | | based on a diff by Thomas Pfaff; thanks! ok okan@
* compact a bit by condensing a few if-else's; from Thomas Pfaffokan2009-06-201-4/+1
| | | | "go on then" oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-4/+4
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* add a "movetogroup" function, which hides the current window fromsthen2009-05-171-0/+6
| | | | | | | | | | | | 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 a new command (currently no default keybindings for it), grouponly[1-9].oga2009-05-141-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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@
* add 'moveamount' to cwmrc; it sets keyboard movement amount, makingmartynas2009-02-071-2/+1
| | | | | | it more useful on large screens manpage tweak & ok jmc@ ok okan@, oga@
* 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@
* Move the keybinding argument to a union to prevent warnings whereoga2009-01-231-28/+28
| | | | | | sizeof(int) != sizeof(void *). This has been annoying me for ages. ok okan@, todd@
* remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-161-5/+5
| | | | | | | | | | | | 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@
* no more hidden (and mysterious) config reloads and allow binding a keyokan2008-07-111-4/+6
| | | | | | to a config reload; CMS-r by default. ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-27/+31
| | | | | | readability, and a bit of knf. ok oga@
* Stop keyboard move moving the window utterly off the screen. If thatoga2008-06-251-2/+14
| | | | | | | happens there's no way to get it back. Also, stop resize making a windows size negative or zero. X does not like that one bit. Diff from Martynas. Ok okan@.
* instead of forcing the ptr in the middle everytime, be more 'calm'; keepokan2008-06-121-6/+6
| | | | | | | | the ptr still unless it moves out-of-bounds, then just follow the edge. brought up by todd@ ok oga@
* Pull out the behaviour in grab_label and search_start into one utilityoga2008-05-201-10/+26
| | | | | | | | | | | 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@.
* General cleanup.oga2008-05-191-10/+10
| | | | ok okan@.
* client_cyclenext() -> client_cycle() since we now pass an arg.okan2008-05-191-1/+1
| | | | | | removes a stray proto as well. discussed with and ok oga@
* as done with cycle/rcycle, make prev/next group switching one kbfuncsokan2008-05-191-8/+2
| | | | | | and use a flag; adjusted to match and rename to {r,}cycle. "ok, since i came up with the same thing" oga@