summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* reinit menu on reload; from Alexander Polakov. needed for catchingokan2011-09-082-0/+5
| | | | | | upcoming menu config changes. ok oga@
* restore a comment and add another for clarity.okan2011-09-051-1/+5
|
* Make flavours of maximisation additive.oga2011-09-042-69/+99
| | | | | | | | | | i.e. horiz-max + vertmax = full maximisation. full - horiz = vertmax. etc. Martynas wrote something like this once, so I did okan, this version seems to finally deal with the corner cases. ok okan@.
* split off window hints from geometry so we don't need to carry them allokan2011-09-033-40/+42
| | | | around when dealing with {,h,v}max. same idea from oga.
* simplify color initialization.okan2011-09-032-20/+13
| | | | ok oga@
* Add {r,}cycleingroup to cycle through clients belonging to the sameokan2011-09-034-7/+15
| | | | | | | group as the active client (as opposed to all unhidden clients); from Alexander Polakov, with a tiny tweak requested by oga. ok oga@
* "defaultfont" is unclear (and confusing while reading code) when it alsookan2011-09-033-8/+8
| | | | | | applies to the user supplied font, so rename. ok oga@
* zap unused macro. ok oga@okan2011-08-291-7/+0
|
* 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@
* A while ago I wrote some code to not warp to ignored windows on map (revoga2011-08-221-5/+0
| | | | | | | | | | 1.52), not realising that the previous (less efficient) fix had already been commited (rev 1.50). Had this in my tree for ages to remove the previous code. Effectively reverts rev 1.50. ok okan@
* revert r1.11 of parse.y and create logic in conf_setup instead to dealokan2011-08-222-10/+14
| | | | | | | | with the various scenarios of when to attempt a parse of the config, load defaults, and when to warn and/or exit. triggered by bogus warning first noticed by sobrado@. ok oga@
* Re-draw borders after reloading, not before; from Alexander Polakov.okan2011-07-261-2/+2
| | | | ok oga@
* use the menu border; from Alexander Polakov, but with the existing define.okan2011-07-251-2/+3
| | | | ok oga@
* We are inconsistent when it comes to function returns, so just go allokan2011-07-2510-46/+50
| | | | | | the way with the cwm specific parts. ok oga@
* Clarify defines and make them not look like non-local ones; started by aokan2011-07-236-23/+23
| | | | | | small diff from Thomas Pfaff. ok oga@
* correct spelling; from Alexander Polakov.okan2011-07-144-5/+5
|
* UTF8-ify, from Alexander Polakov, but without setlocale(), afterokan2011-06-272-8/+7
| | | | | | feedback from stsp@ - thanks! 'go for it' oga@
* warn if we can't parse the config file on start, just like we do on reload.okan2011-06-251-1/+2
| | | | part of a larger diff that was ok oga@
* Since cwm(1) uses the same parser as others in src, document howokan2011-06-251-1/+13
| | | | | | | comments and line extensions work. Taken from sthen@'s recent commit in src. ok sthen@
* add 'normal' cursor and shuffle the others we use to make a bit moreokan2011-06-243-14/+15
| | | | | | | | sense and to be slightly less un-expected. from Alexander Polakov. re-use 'normal' cursor now instead XC_hand1 for menu selection. i really wish X had real docs and made sense. ok on earlier diff with '?' removed (but it's back now) oga@
* New option to raise a client via the mouse (unbound by default);okan2011-06-244-1/+11
| | | | | | | opposing action, lower, already exists and bound. Both keyboard mappings already exist. 'no opinion either way' oga@
* introduce a new config option to snap to the screen edge. 'snapdist'okan2011-06-247-2/+56
| | | | | | | | 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...)
* re-do various bits of {,h,v}max for simplicity and less flag handling.okan2011-06-242-34/+18
| | | | | | | as a bonus, flipping between various combinations of vmax+hmax provides a more predictable behavior. commitski oga@
* replace the non-working check to see if another wm is running with aokan2011-06-241-19/+20
| | | | | | | method that actually works. checking for icccm compliant wm's should also be done first, but that's another diff (noted by oga). ok oga@
* more nitems usage.okan2011-06-241-4/+2
| | | | ok oga@
* re-order sweep draw so that we map into the client window afterokan2011-06-241-3/+2
| | | | | | re-parenting; from Sviatoslav Chagaev. ok oga@
* struct XftFont already has height which we can use directly instead ofokan2011-06-244-7/+4
| | | | | | calculating ourselves, so do so. ok oga@
* alter a few function returns and prototypes; found by lint.okan2011-06-244-21/+10
| | | | ok oga@
* Correct extern declaration and while here, rename a variable to beokan2011-06-242-4/+4
| | | | | | | | pedantic. from Thomas Pfaff. ok oga@
* collapse client and group {r,}cycle defines since they are reallyokan2011-06-242-7/+3
| | | | | | the same thing. ok oga@
* switch to installing source manuals:naddy2011-06-231-3/+1
| | | | | | | * cope with new bsd.man.mk * update imake configuration ports use of imake remains unchanged
* fix botched client and group cycle defines; noticed by Thomas Pfaff.okan2011-05-151-4/+4
| | | | "no cookie! fix it" - oga@
* remove left over XSync; ok oga@okan2011-05-131-6/+2
|
* tag and comment cleanup; ok oga@okan2011-05-1115-19/+26
|
* introduce a new 'freeze' flag (CMS-f by default) which may be applied tookan2011-05-077-1/+43
| | | | | | | | | | | | | 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@
* On map, don't warp to windows that are marked as ignored.oga2011-05-061-2/+2
| | | | | | | Requested by Christian Neukirchen last august. He provided a patch but the one I wrote was significantly simpler (1 - 2 + in the whole diff). makes sense to okan@.
* bump window resize back to 60hz. instead, we should not need to syncokan2011-05-051-5/+3
| | | | | | | every time we move/resize a window, so remove XSync in both mouse move and resize events. tested by Brynet as well. ok oga@
* re-org. ok oga@okan2011-05-051-308/+268
|
* make the menu window aware of xinerama info; this makes the menu stayokan2011-05-051-10/+27
| | | | | | | within the current screen, like other cwm window placements and mutations (vmax/hmax/max) - from Sviatoslav Chagaev. ok oga@
* revert the XSync timing change for client move only; first noticed byokan2011-03-231-2/+2
| | | | | | brynet. sure oga@
* warp the pointer back, iff we don't move the mouse, once we are doneokan2011-03-221-0/+8
| | | | | | with the menu; idea and initial from Sviatoslav Chagaev. discussion with and ok oga@
* we should re-focus the client and ungrab the ptr even if we don't have aokan2011-03-221-5/+5
| | | | | | | mouse based match (i.e. in the kbd no match case). update the comment as well. ok oga@
* fix nousance of always highlighting the first entry even when there isokan2011-03-221-1/+1
| | | | | | no match (seen in the ctrl-a case) ok oga@
* move the default case to the end.okan2011-03-221-2/+2
| | | | ok oga@
* reduce the number of times we sync during a window resize.okan2011-03-221-5/+4
| | | | ok oga@
* introduce nitems macro, with the appropriate ifndef.okan2011-03-224-15/+14
| | | | ok oga@
* if virt/horz un-maximizing, restore only the un-maximized axisokan2011-03-221-0/+5
| | | | | | | | | coordinates; allows moving a client and not restoring the maximized axis coordinates. picked from a larger martynas diff from ages ago. ok oga@
* (0,0) is also inside in the screen; from Sviatoslav Chagaev.okan2011-03-221-2/+2
| | | | ok oga@
* while this piece deals with client argv's in a seemingly inefficient wayokan2011-03-222-27/+0
| | | | | | | (noticed by Tim Peniket), since we don't ever do anything with cliarg, remove the hunk and cliarg completely. ok oga@
* remove XXX and move a configure event out of the event handler functions.okan2011-03-224-27/+24
| | | | | | reminded by a similiar diff from Thomas Pfaff. ok oga@