aboutsummaryrefslogtreecommitdiff
path: root/drw.c
AgeCommit message (Collapse)AuthorFilesLines
2016-06-03import new drw from libsl and minor fixes.Markus Teich1-109/+132
- extract drawitem function (code deduplication) - fix bug where inputw was not correctly calculated from the widest item, but just from the one with the longest strlen() which is not the same. It's better now, but does not account for fallback fonts, since it would be too slow to calculate all the correct item widths on startup. - minor code style fixes (indentation, useless line breaks)
2015-10-20drw: cleanup drw_text, prevent gcc warning false-positive of unused varHiltjo Posthuma1-21/+14
... we don't allow passing text is NULL anymore either, for that behaviour just use drw_rect() (it is used in dwm).
2015-10-20drw: simplify drw_font_xcreate and prevent a potential unneeded allocationHiltjo Posthuma1-22/+19
2015-10-20drw: a valid (non-NULL) Drw and Fnt context must be passedHiltjo Posthuma1-16/+3
don't do these checks on this level. However for resource drw_*_free we will allow it.
2015-10-20add sbase-style ecalloc(), calloc: or dieHiltjo Posthuma1-12/+7
... remove intermediary variables
2015-09-27drw style improvementsHiltjo Posthuma1-76/+89
this makes the code-style more consistent aswell.
2015-06-27Use libdraw: add Xft and fallback-fonts support to graphics libHiltjo Posthuma1-0/+413
- libdraw, util: add drw.{c,h}, util.{c,h} and update code. - libdraw: fix drw_rect(): use w and h parameter. - libdraw: print errstr if last character in string was ":" (sbase). - libdraw: drw_clr_free() allow valid free(NULL). - config.def.h: set default font to monospace. - cleanup() on exit. - LICENSE: update license string for dmenu -v to 2015. - LICENSE: add myself to LICENSE