aboutsummaryrefslogtreecommitdiff
path: root/include/draw.h
AgeCommit message (Collapse)AuthorFilesLines
2020-07-18draw: use int for Cacheinfo x fieldRuss Cox1-1/+1
With very large fonts (72pt or so) I see bad cache glyphs, and this fixes it. Not entirely sure exactly which code is overflowing, but something is.
2020-05-29libdraw: handle larger number of subfontsRuss Cox1-2/+3
2018-11-16libdraw: redo default font construction to be hidpi-safeRuss Cox1-4/+0
If $font is not set, the default font is constructed from font data linked into every libdraw binary. That process was different from the usual openfont code, and so it was not hidpi-aware, resulting in very tiny fonts out of the box on hidpi systems, until users set $font. Fix this by using openfont to construct the default font, by recognizing the name *default* when looking for font and subfont file contents. Then all the hidpi scaling applies automatically. As a side effect, the concept of a 'default subfont' is gone, as are display->defaultsubfont, getdefont, and memgetdefont.
2018-11-15libdraw: add Cursor2, a 32x32 high-res cursorRuss Cox1-1/+2
Also add setcursor2, esetcursor2, and draw protocol encoding. Calls to the old setcursor, esetcursor create a 32x32 by pixel doubling when needed.
2017-01-069term, win: work around bsd linker nonsenseRuss Cox1-0/+2
Change-Id: Ifcef0636ee1e1fd0f9b06a8d1a99d58fae831318 Reviewed-on: https://plan9port-review.googlesource.com/2780 Reviewed-by: Russ Cox <rsc@swtch.com>
2015-02-17libdraw: refine hidpi font selectionRuss Cox1-0/+1
Change-Id: Id1e6a2630713024a1925ad1341bb9c846f82e93e Reviewed-on: https://plan9port-review.googlesource.com/1171 Reviewed-by: Russ Cox <rsc@swtch.com>
2015-02-17libdraw: autoscale fonts when moving between low and high dpi screensRuss Cox1-1/+16
Change-Id: I6093955b222db89dfe437fb723593b173d888d01 Reviewed-on: https://plan9port-review.googlesource.com/1170 Reviewed-by: Russ Cox <rsc@swtch.com>
2015-02-17libdraw: add 2*font syntax for scaled fontsRuss Cox1-1/+2
An experiment. Change-Id: I40660a211b8372701597d80f7e86917e94cccbaa Reviewed-on: https://plan9port-review.googlesource.com/1161 Reviewed-by: Russ Cox <rsc@swtch.com>
2012-11-26libdraw: change DefaultDPI to 133Russ Cox1-1/+1
Let's see if that's any better. R=rsc http://codereview.appspot.com/6850103
2012-11-25libdraw: add scalesizeRuss Cox1-0/+1
R=rsc http://codereview.appspot.com/6855092
2012-11-25draw.h: add DefaultDPIRuss Cox1-1/+2
R=rsc http://codereview.appspot.com/6858071
2012-11-25devdraw, libdraw: add display->dpiRuss Cox1-0/+1
Fixed at 100 right now, but the plan is to make it accurate and then use it. R=rsc http://codereview.appspot.com/6856091
2006-06-25new draw interfacersc1-6/+24
2006-04-01Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms.rsc1-5/+5
2006-02-28use carbon for pasteboardrsc1-0/+3
2005-02-15add ABGR32rsc1-0/+1
2005-01-04autolibrsc1-1/+3
2004-06-11add OLOCKrsc1-0/+2
2004-04-29add -W to specify window size.rsc1-0/+2
various other little fixes.
2004-03-26SunOS can rot in hell.rsc1-33/+29
2003-11-25Add the #goo to allow use in C++.rsc1-0/+11
Silence a few more warnings. Strip down the mkfiles more. Fix bug in X11 mouse handling, note groups.
2003-11-23Add drawsetlabel(Display*, char*).rsc1-1/+3
Turn window destruction into "hangup" note. Fix (?) snarf buffer management. Add latin1 keyboard translation.
2003-10-11Various cleanup.rsc1-1/+12
2003-09-30Initial revisionrsc1-0/+520