Changes between Initial Version and Version 1 of Ticket #8934, comment 4
- Timestamp:
- 2013-08-06T00:58:07+02:00 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8934, comment 4
initial v1 1 1 Moved halo drawing from `drawArea`, `drawBoxText` and `drawTextOnPath` to `displayText` - [attachment:8934-3a-DisplayTextRefactor.patch patch#3]. 2 2 3 It works, but doesn't look that nice. `drawTextOnPath`'s usage complicates i sa little bit, because it places text along a path character by character, so doesn't use `drawString`.3 It works, but doesn't look that nice. `drawTextOnPath`'s usage complicates it a little bit, because it places text along a path character by character, so doesn't use `drawString`. 4 4 5 5 I was thinking about adding extra `displayText(String,...)` that would convert `String` to `GlyphVector` and handing that to `displayText(GlyphVector,...)` which would do the drawing - [attachment:8934-4a-String2GlyphVector.patch patch#4].