aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.h
AgeCommit message (Collapse)Author
2007-03-01some changes to updatesizehints, I don't change the aspect ratio algorithm ↵Anselm R. Garbe
now - I can't think, it is a mess
2007-02-26removed sendeventAnselm R. Garbe
2007-02-24removed an unnecessary newlineAnselm R. Garbe
2007-02-24removed superfluous externs (except for tags, because tags is defined in the ↵Anselm R. Garbe
source)
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-22made Fnt an anonymous inner structAnselm R. Garbe
2007-02-22made Fnt an anonymous inner structAnselm R. Garbe
2007-02-22renamed versatile into untiledAnselm R. Garbe
2007-02-22merged focus{prev.next} into focusclient(1/-1)Anselm R. Garbe
2007-02-22made dwm.h more tidy (thx Jukka for the zoom() hint)Anselm 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-22fixing missing extern declars in dwm.h for {de,at}tach()Anselm 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-21reverted accidental removal of sx, syAnselm R. Garbe
2007-02-21removed some global vars which should be static insteadAnselm R. Garbe
2007-02-21moved focus{next,prev} and nexttiled from client.c to layout.c (because ↵Anselm R. Garbe
those are not client-specific), moved toggleversatile() from layout.c to client.c (because those are client-specific)
2007-02-21fixed quoting and a comment3.6Anselm R. Garbe
2007-02-20added draw.c again (except getcolor and setfont which are helpers in main.c)Anselm R. Garbe
2007-02-20separating drawsquare from drawtext, made drawtext externAnselm R. Garbe
2007-02-20split screen.c into layout.c and tag.c (because the view is an implicit ↵Anselm R. Garbe
mixture of both)
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-19forgot an extern declarationAnselm 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-19renamed view.c into screen.cAnselm R. Garbe
2007-02-19renamed manage.c to view.cAnselm R. Garbe
2007-02-19merged tag.c, view.c and tile.c to manage.cAnselm R. Garbe
2007-02-19some more refactoringAnselm R. Garbe
2007-02-19added some new convenience functionsAnselm R. Garbe
2007-02-19introduced tile.c, some refactoring of functionsAnselm 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-16removed getnext/getprev, redundantAnselm R. Garbe
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-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-02-06implemented aspect ratio support of windowsAnselm R. Garbe
2007-01-28handling WM_STATE seems to make DnD in gtk/qt apps working, well let's ↵Anselm R. Garbe
handle this in dwm as well
2007-01-23renamed activescreen into selscreen3.2Anselm R. Garbe
2007-01-23small changesAnselm R. Garbe
2007-01-22applied Sanders all5.patch (thanks for your weekend session, Sander!)Anselm R. Garbe
2007-01-17moved BORDERPX to config.*.hAnselm R. Garbe
2007-01-16removed erealloc (not used)3.1Anselm R. Garbe
2007-01-16removed unnecessary bx, by, bw variablesAnselm R. Garbe
2007-01-15removed drawclient and drawall (they performed useless operations/consumed ↵Anselm R. Garbe
useless cpu cycles)
2007-01-14implemented new color scheme accordingly to Sanders proposalAnselm R. Garbe
2007-01-14removed mode label stuffAnselm R. Garbe
2007-01-14removed client title barAnselm R. Garbe