summary refs log tree commit diff
path: root/mousefunc.c
Commit message (Collapse)AuthorAgeFilesLines
* We are inconsistent when it comes to function returns, so just go allokan2011-07-251-3/+3
| | | | | | 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@
* New option to raise a client via the mouse (unbound by default);okan2011-06-241-0/+6
| | | | | | | 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-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...)
* 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-241-4/+3
| | | | | | calculating ourselves, so do so. ok oga@
* remove left over XSync; ok oga@okan2011-05-131-6/+2
|
* tag and comment cleanup; ok oga@okan2011-05-111-4/+4
|
* introduce a new 'freeze' flag (CMS-f by default) which may be applied tookan2011-05-071-0/+6
| | | | | | | | | | | | | 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@
* 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@
* revert the XSync timing change for client move only; first noticed byokan2011-03-231-2/+2
| | | | | | brynet. sure oga@
* reduce the number of times we sync during a window resize.okan2011-03-221-5/+4
| | | | ok oga@
* in MotionNotify geom.x, geom.y calculations take into account bwidth.martynas2010-12-141-2/+2
| | | | | fixes the annoying bug where windows would go +bwidth pixels right, +bwidth pixels down. ok okan@
* pull all non-X11 headers from calmwm.h and place them only where theyokan2009-12-151-0/+10
| | | | | | are required. encourged to go all the way by 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-5/+10
| | | | | | | | | | | | | 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-5/+5
| | | | | | | | | 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@
* unroll the CCTOSC macro; from Thomas Pfaffokan2009-08-271-2/+2
| | | | ok oga@
* Instead of messing around everytime we do a resize, just clamp theoga2009-08-251-2/+2
| | | | | | resize increments to a minimum of one, and use it unconditionally. "you've convinced me, do it!" okan@
* bring together gathering, calculating and applying of size hints;okan2009-08-241-21/+3
| | | | | | additionally, respect aspect ratio hints. ok oga@
* compact a bit by condensing a few if-else's; from Thomas Pfaffokan2009-06-201-5/+1
| | | | "go on then" oga@
* unroll XCALLOC/XMALLOC macros; since we use xcalloc/xmalloc all over theokan2009-06-201-2/+2
| | | | | | place anyway, this makes things a bit more consistent; from Thomas Pfaff ok oga@
* re-factor parts of mouse move/resize bit to shrink and make moreokan2009-06-171-29/+24
| | | | | | readable; no behavior change ok oga@
* nuke the leading underscore notation for local static functions - thereokan2009-05-181-7/+7
| | | | | | are far better ways to know. "go for it" oga@
* 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
* now that pwin is gone gone gone, we no longer have to do the bwidthokan2009-01-221-12/+4
| | | | | | | dance; xevents now able to deal with a border being set (which fixes those annoying movie-watching apps). ok todd@, oga@
* remove pwin, bringing us to one client, one window. we no longer haveokan2009-01-161-7/+2
| | | | | | | | | | | | 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@
* - merge grab_sweep() into mousefunc_window_resize().okan2009-01-111-4/+153
| | | | | | | | | | - 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@
* no more hidden (and mysterious) config reloads and allow binding a keyokan2008-07-111-2/+0
| | | | | | to a config reload; CMS-r by default. ok oga@
* spacing, declaration lineup to be consistent throughout cwm,okan2008-07-111-8/+12
| | | | | | 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/+6
| | | | | | so it's hard to press by accident, but there if you need it. requested (in a way) and tested by johan and todd.
* confable menu and window mouse bindings from rivo nurges (thanks!) withokan2008-06-141-0/+126
some minor fixups, man page bits and knf. ok oga@