aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
AgeCommit message (Collapse)Author
2007-05-14applied dfenze cleanups, fixed some comments in dwm.hAnselm R. Garbe
2007-05-09applied Maarten Maathuis recenter-patch for floating clients only requesting ↵Anselm R. Garbe
new width and height exceeding the screen space
2007-05-08thanks to Juka to check -Wall ;)Anselm R. Garbe
2007-05-07applied patch of Paul Liu to allow onthefly resizing due to xrandr changesAnselm R. Garbe
2007-04-17changed border handlingAnselm R. Garbe
2007-04-13changing order of c->border restorageAnselm R. Garbe
2007-04-13yet another fix of copyright compactisitionAnselm R. Garbe
2007-04-13making Copyright notices more compactAnselm R. Garbe
2007-02-22renamed untiled into floating, keeping tiled instead of tiling (afaik tiled ↵Anselm R. Garbe
sounds more correct) - English speakers convinced me
2007-02-22renamed versatile into untiledAnselm R. Garbe
2007-02-22fixed some issues due to the Arg->const char * transitionAnselm R. Garbe
2007-02-22replaced Arg union with const char *arg, seems cleaner to me, even if we ↵Anselm R. Garbe
need atoi() in some places
2007-02-22removed button4/5-bindings for incnmaster on mode label - that is misleadingAnselm R. Garbe
2007-02-22several changes, made togglemax extern and separated it from zoom() - moved ↵Anselm R. Garbe
zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
2007-02-19replaced togglelayout with setlayoutAnselm R. Garbe
2007-02-19renamed Client->versatile and Rule->versatile into Client->isversatile resp. ↵Anselm R. Garbe
Rule->isversatile
2007-02-19renames swim[ming] into versatileAnselm R. Garbe
2007-02-19renamed floating into swimming (this does not clash with C naming ↵Anselm R. Garbe
conventions and fits better the fish symbol) - also in man page
2007-02-19introduced Layout structAnselm R. Garbe
2007-02-19removed procevent, more refactoringAnselm R. Garbe
2007-02-19draw.c is useless (belongs to main.c now)Anselm R. Garbe
2007-02-19simplified configurerequest to a bare minimum, removed wrong ban() callsAnselm R. Garbe
2007-02-19fixed configurerequest according to Jukkas complainsAnselm R. Garbe
2007-02-19fixed configurerequest according to the problem Jukka reportedAnselm R. Garbe
2007-02-16removed useless spaceAnselm R. Garbe
2007-02-16removed ugly ban(), extended resize() that it only resets the size if ↵Anselm R. Garbe
necessary, added border_width commit to manage()
2007-02-14added ban() which takes care than a banned window is not banned again... ↵Anselm R. Garbe
(this reduces the overall ConfigureNotify's to clients)
2007-02-14made for/if/else constructs more consistent, some code polishingAnselm R. Garbe
2007-02-14made configurerequest more tidyAnselm R. Garbe
2007-02-13I didn't knew of c->isfixed, that should fix Jukkas issue with gkrellm ;)Anselm R. Garbe
2007-02-13stupid me, one needs to set c->{x,y,w,h} in configurerequest obviously ;)Anselm R. Garbe
2007-02-13simplified configurerequestAnselm R. Garbe
2007-02-12I don't see any reason why we should select for input on override-redirect ↵Anselm R. Garbe
windows?
2007-02-12removing all EnterNotifys after resizeAnselm R. Garbe
2007-02-12added pointer warp on drop in resizeAnselm R. Garbe
2007-02-07replaced getproto with a saner function, now old-school artifacts of WM ↵Anselm R. Garbe
times in the early 90s completely disappeared, no punned pointer warning anymore ;)
2007-01-23renamed activescreen into selscreen3.2Anselm R. Garbe
2007-01-23small changesAnselm R. Garbe
2007-01-23I think this is the best solution of multihead supportAnselm R. Garbe
2007-01-22this variant is known to work, but focus() is ugly - we need in general a ↵Anselm R. Garbe
better way to handle multihead, this issel-stuff looks awkward (maybe it might be a good idea to set sel to NULL but to introduce a Client *revert which is set if a screen is unfocused, have to think about it further).
2007-01-22applied Sanders all5.patch (thanks for your weekend session, Sander!)Anselm R. Garbe
2007-01-19leavenotify also don't needs the checkAnselm R. Garbe
2007-01-19deciding for focus(NULL);Anselm R. Garbe
2007-01-19replaced XSetBorder.../focus()Anselm R. Garbe
2007-01-19yet another multihead fix by Christof MusikAnselm R. Garbe
2007-01-18applied a modified version of Christof Musik's multihead patch (though this ↵Anselm R. Garbe
is not sure if it works in all cases, have to wait for an ACK by Christof)
2007-01-15Jukka, thanks for being faster than me!Anselm R. Garbe
2007-01-15removed drawclient and drawall (they performed useless operations/consumed ↵Anselm R. Garbe
useless cpu cycles)
2007-01-14removed client title barAnselm R. Garbe
2007-01-10added comment to %u in config.default.h, added Button{4.5} support on mode labelAnselm R. Garbe