You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

462 lines
11 KiB

drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
drw_text: improve both performance and correctness this patch makes some non-trivial changes, which significantly improves the performance of drawing large strings as well as fixes any issues regarding the printing of the ellipsis when string gets truncated. * performance: before there were two O(n) loops, one which finds how long we can go without changing font, and the second loop would (incorrectly) truncate the string if it's too big. this patch merges the overflow calculation into the first loop and exits out when overflow is detected. when dumping lots of emojies into dmenu, i see some noticeable startup time improvement: before -> after 460ms -> 360ms input latency when scrolling up/down is also noticeably better and can be tested with the following: for _ in $(seq 20); do cat /dev/urandom | base64 | tr -d '\n' | head -c 1000000 echo done | ./dmenu -l 10 * correctness: the previous version would incorrectly assumed single byte chars and would overwrite them with '.' , this caused a whole bunch of obvious problems, including the ellipsis not getting rendered if then font changed. in addition to exiting out when we detect overflow, this patch also keeps track of the last x-position where the ellipsis would fit. if we detect overflow, we simply make a recursing call to drw_text() at the ellipsis_x position and overwrite what was there. so now the ellipsis will always be printed properly, regardless of weather the font changes or if the string is single byte char or not. the idea of rendering the ellipsis on top incase of overflow was from Bakkeby <bakkeby@gmail.com>, thanks! however the original patch had some issues incorrectly truncating the prompt (-p flag) and cutting off emojies. those have been fixed in here.
3 years ago
  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <X11/Xlib.h>
  6. #include <X11/Xft/Xft.h>
  7. #include "drw.h"
  8. #include "util.h"
  9. #define UTF_INVALID 0xFFFD
  10. #define UTF_SIZ 4
  11. static const unsigned char utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
  12. static const unsigned char utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
  13. static const long utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
  14. static const long utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
  15. static long
  16. utf8decodebyte(const char c, size_t *i)
  17. {
  18. for (*i = 0; *i < (UTF_SIZ + 1); ++(*i))
  19. if (((unsigned char)c & utfmask[*i]) == utfbyte[*i])
  20. return (unsigned char)c & ~utfmask[*i];
  21. return 0;
  22. }
  23. static size_t
  24. utf8validate(long *u, size_t i)
  25. {
  26. if (!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
  27. *u = UTF_INVALID;
  28. for (i = 1; *u > utfmax[i]; ++i)
  29. ;
  30. return i;
  31. }
  32. static size_t
  33. utf8decode(const char *c, long *u, size_t clen)
  34. {
  35. size_t i, j, len, type;
  36. long udecoded;
  37. *u = UTF_INVALID;
  38. if (!clen)
  39. return 0;
  40. udecoded = utf8decodebyte(c[0], &len);
  41. if (!BETWEEN(len, 1, UTF_SIZ))
  42. return 1;
  43. for (i = 1, j = 1; i < clen && j < len; ++i, ++j) {
  44. udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
  45. if (type)
  46. return j;
  47. }
  48. if (j < len)
  49. return 0;
  50. *u = udecoded;
  51. utf8validate(u, len);
  52. return len;
  53. }
  54. Drw *
  55. drw_create(Display *dpy, int screen, Window root, unsigned int w, unsigned int h)
  56. {
  57. Drw *drw = ecalloc(1, sizeof(Drw));
  58. drw->dpy = dpy;
  59. drw->screen = screen;
  60. drw->root = root;
  61. drw->w = w;
  62. drw->h = h;
  63. drw->drawable = XCreatePixmap(dpy, root, w, h, DefaultDepth(dpy, screen));
  64. drw->gc = XCreateGC(dpy, root, 0, NULL);
  65. XSetLineAttributes(dpy, drw->gc, 1, LineSolid, CapButt, JoinMiter);
  66. return drw;
  67. }
  68. void
  69. drw_resize(Drw *drw, unsigned int w, unsigned int h)
  70. {
  71. if (!drw)
  72. return;
  73. drw->w = w;
  74. drw->h = h;
  75. if (drw->drawable)
  76. XFreePixmap(drw->dpy, drw->drawable);
  77. drw->drawable = XCreatePixmap(drw->dpy, drw->root, w, h, DefaultDepth(drw->dpy, drw->screen));
  78. }
  79. void
  80. drw_free(Drw *drw)
  81. {
  82. XFreePixmap(drw->dpy, drw->drawable);
  83. XFreeGC(drw->dpy, drw->gc);
  84. drw_fontset_free(drw->fonts);
  85. free(drw);
  86. }
  87. /* This function is an implementation detail. Library users should use
  88. * drw_fontset_create instead.
  89. */
  90. static Fnt *
  91. xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
  92. {
  93. Fnt *font;
  94. XftFont *xfont = NULL;
  95. FcPattern *pattern = NULL;
  96. if (fontname) {
  97. /* Using the pattern found at font->xfont->pattern does not yield the
  98. * same substitution results as using the pattern returned by
  99. * FcNameParse; using the latter results in the desired fallback
  100. * behaviour whereas the former just results in missing-character
  101. * rectangles being drawn, at least with some fonts. */
  102. if (!(xfont = XftFontOpenName(drw->dpy, drw->screen, fontname))) {
  103. fprintf(stderr, "error, cannot load font from name: '%s'\n", fontname);
  104. return NULL;
  105. }
  106. if (!(pattern = FcNameParse((FcChar8 *) fontname))) {
  107. fprintf(stderr, "error, cannot parse font name to pattern: '%s'\n", fontname);
  108. XftFontClose(drw->dpy, xfont);
  109. return NULL;
  110. }
  111. } else if (fontpattern) {
  112. if (!(xfont = XftFontOpenPattern(drw->dpy, fontpattern))) {
  113. fprintf(stderr, "error, cannot load font from pattern.\n");
  114. return NULL;
  115. }
  116. } else {
  117. die("no font specified.");
  118. }
  119. /* Do not allow using color fonts. This is a workaround for a BadLength
  120. * error from Xft with color glyphs. Modelled on the Xterm workaround. See
  121. * https://bugzilla.redhat.com/show_bug.cgi?id=1498269
  122. * https://lists.suckless.org/dev/1701/30932.html
  123. * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916349
  124. * and lots more all over the internet.
  125. */
  126. FcBool iscol;
  127. if(FcPatternGetBool(xfont->pattern, FC_COLOR, 0, &iscol) == FcResultMatch && iscol) {
  128. XftFontClose(drw->dpy, xfont);
  129. return NULL;
  130. }
  131. font = ecalloc(1, sizeof(Fnt));
  132. font->xfont = xfont;
  133. font->pattern = pattern;
  134. font->h = xfont->ascent + xfont->descent;
  135. font->dpy = drw->dpy;
  136. return font;
  137. }
  138. static void
  139. xfont_free(Fnt *font)
  140. {
  141. if (!font)
  142. return;
  143. if (font->pattern)
  144. FcPatternDestroy(font->pattern);
  145. XftFontClose(font->dpy, font->xfont);
  146. free(font);
  147. }
  148. Fnt*
  149. drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount)
  150. {
  151. Fnt *cur, *ret = NULL;
  152. size_t i;
  153. if (!drw || !fonts)
  154. return NULL;
  155. for (i = 1; i <= fontcount; i++) {
  156. if ((cur = xfont_create(drw, fonts[fontcount - i], NULL))) {
  157. cur->next = ret;
  158. ret = cur;
  159. }
  160. }
  161. return (drw->fonts = ret);
  162. }
  163. void
  164. drw_fontset_free(Fnt *font)
  165. {
  166. if (font) {
  167. drw_fontset_free(font->next);
  168. xfont_free(font);
  169. }
  170. }
  171. void
  172. drw_clr_create(Drw *drw, Clr *dest, const char *clrname)
  173. {
  174. if (!drw || !dest || !clrname)
  175. return;
  176. if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
  177. DefaultColormap(drw->dpy, drw->screen),
  178. clrname, dest))
  179. die("error, cannot allocate color '%s'", clrname);
  180. }
  181. /* Wrapper to create color schemes. The caller has to call free(3) on the
  182. * returned color scheme when done using it. */
  183. Clr *
  184. drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount)
  185. {
  186. size_t i;
  187. Clr *ret;
  188. /* need at least two colors for a scheme */
  189. if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(XftColor))))
  190. return NULL;
  191. for (i = 0; i < clrcount; i++)
  192. drw_clr_create(drw, &ret[i], clrnames[i]);
  193. return ret;
  194. }
  195. void
  196. drw_setfontset(Drw *drw, Fnt *set)
  197. {
  198. if (drw)
  199. drw->fonts = set;
  200. }
  201. void
  202. drw_setscheme(Drw *drw, Clr *scm)
  203. {
  204. if (drw)
  205. drw->scheme = scm;
  206. }
  207. void
  208. drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert)
  209. {
  210. if (!drw || !drw->scheme)
  211. return;
  212. XSetForeground(drw->dpy, drw->gc, invert ? drw->scheme[ColBg].pixel : drw->scheme[ColFg].pixel);
  213. if (filled)
  214. XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
  215. else
  216. XDrawRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w - 1, h - 1);
  217. }
  218. int
  219. drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert)
  220. {
  221. int i, ty, ellipsis_x = 0;
  222. unsigned int tmpw, ew, ellipsis_w = 0, ellipsis_len, ellipsis_width;
  223. XftDraw *d = NULL;
  224. Fnt *usedfont, *curfont, *nextfont;
  225. int utf8strlen, utf8charlen, render = x || y || w || h;
  226. long utf8codepoint = 0;
  227. const char *utf8str;
  228. FcCharSet *fccharset;
  229. FcPattern *fcpattern;
  230. FcPattern *match;
  231. XftResult result;
  232. int charexists = 0, overflow = 0;
  233. /* keep track of a couple codepoints for which we have no match. */
  234. enum { nomatches_len = 64 };
  235. static struct { long codepoint[nomatches_len]; unsigned int idx; } nomatches;
  236. if (!drw || (render && !drw->scheme) || !text || !drw->fonts)
  237. return 0;
  238. if (!render) {
  239. w = invert ? invert : ~invert;
  240. } else {
  241. XSetForeground(drw->dpy, drw->gc, drw->scheme[invert ? ColFg : ColBg].pixel);
  242. XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
  243. d = XftDrawCreate(drw->dpy, drw->drawable,
  244. DefaultVisual(drw->dpy, drw->screen),
  245. DefaultColormap(drw->dpy, drw->screen));
  246. x += lpad;
  247. w -= lpad;
  248. }
  249. usedfont = drw->fonts;
  250. drw_font_getexts(usedfont, "...", 3, &ellipsis_width, NULL);
  251. while (1) {
  252. ew = ellipsis_len = utf8strlen = 0;
  253. utf8str = text;
  254. nextfont = NULL;
  255. while (*text) {
  256. utf8charlen = utf8decode(text, &utf8codepoint, UTF_SIZ);
  257. for (curfont = drw->fonts; curfont; curfont = curfont->next) {
  258. charexists = charexists || XftCharExists(drw->dpy, curfont->xfont, utf8codepoint);
  259. if (charexists) {
  260. drw_font_getexts(curfont, text, utf8charlen, &tmpw, NULL);
  261. if (ew + ellipsis_width <= w) {
  262. /* keep track where the ellipsis still fits */
  263. ellipsis_x = x + ew;
  264. ellipsis_w = w - ew;
  265. ellipsis_len = utf8strlen;
  266. }
  267. if (ew + tmpw > w) {
  268. overflow = 1;
  269. /* called from drw_fontset_getwidth_clamp():
  270. * it wants the width AFTER the overflow
  271. */
  272. if (!render)
  273. x += tmpw;
  274. else
  275. utf8strlen = ellipsis_len;
  276. } else if (curfont == usedfont) {
  277. utf8strlen += utf8charlen;
  278. text += utf8charlen;
  279. ew += tmpw;
  280. } else {
  281. nextfont = curfont;
  282. }
  283. break;
  284. }
  285. }
  286. if (overflow || !charexists || nextfont)
  287. break;
  288. else
  289. charexists = 0;
  290. }
  291. if (utf8strlen) {
  292. if (render) {
  293. ty = y + (h - usedfont->h) / 2 + usedfont->xfont->ascent;
  294. XftDrawStringUtf8(d, &drw->scheme[invert ? ColBg : ColFg],
  295. usedfont->xfont, x, ty, (XftChar8 *)utf8str, utf8strlen);
  296. }
  297. x += ew;
  298. w -= ew;
  299. }
  300. if (render && overflow)
  301. drw_text(drw, ellipsis_x, y, ellipsis_w, h, 0, "...", invert);
  302. if (!*text || overflow) {
  303. break;
  304. } else if (nextfont) {
  305. charexists = 0;
  306. usedfont = nextfont;
  307. } else {
  308. /* Regardless of whether or not a fallback font is found, the
  309. * character must be drawn. */
  310. charexists = 1;
  311. for (i = 0; i < nomatches_len; ++i) {
  312. /* avoid calling XftFontMatch if we know we won't find a match */
  313. if (utf8codepoint == nomatches.codepoint[i])
  314. goto no_match;
  315. }
  316. fccharset = FcCharSetCreate();
  317. FcCharSetAddChar(fccharset, utf8codepoint);
  318. if (!drw->fonts->pattern) {
  319. /* Refer to the comment in xfont_create for more information. */
  320. die("the first font in the cache must be loaded from a font string.");
  321. }
  322. fcpattern = FcPatternDuplicate(drw->fonts->pattern);
  323. FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
  324. FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
  325. FcPatternAddBool(fcpattern, FC_COLOR, FcFalse);
  326. FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
  327. FcDefaultSubstitute(fcpattern);
  328. match = XftFontMatch(drw->dpy, drw->screen, fcpattern, &result);
  329. FcCharSetDestroy(fccharset);
  330. FcPatternDestroy(fcpattern);
  331. if (match) {
  332. usedfont = xfont_create(drw, NULL, match);
  333. if (usedfont && XftCharExists(drw->dpy, usedfont->xfont, utf8codepoint)) {
  334. for (curfont = drw->fonts; curfont->next; curfont = curfont->next)
  335. ; /* NOP */
  336. curfont->next = usedfont;
  337. } else {
  338. xfont_free(usedfont);
  339. nomatches.codepoint[++nomatches.idx % nomatches_len] = utf8codepoint;
  340. no_match:
  341. usedfont = drw->fonts;
  342. }
  343. }
  344. }
  345. }
  346. if (d)
  347. XftDrawDestroy(d);
  348. return x + (render ? w : 0);
  349. }
  350. void
  351. drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h)
  352. {
  353. if (!drw)
  354. return;
  355. XCopyArea(drw->dpy, drw->drawable, win, drw->gc, x, y, w, h, x, y);
  356. XSync(drw->dpy, False);
  357. }
  358. unsigned int
  359. drw_fontset_getwidth(Drw *drw, const char *text)
  360. {
  361. if (!drw || !drw->fonts || !text)
  362. return 0;
  363. return drw_text(drw, 0, 0, 0, 0, 0, text, 0);
  364. }
  365. unsigned int
  366. drw_fontset_getwidth_clamp(Drw *drw, const char *text, unsigned int n)
  367. {
  368. unsigned int tmp = 0;
  369. if (drw && drw->fonts && text && n)
  370. tmp = drw_text(drw, 0, 0, 0, 0, 0, text, n);
  371. return MIN(n, tmp);
  372. }
  373. void
  374. drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h)
  375. {
  376. XGlyphInfo ext;
  377. if (!font || !text)
  378. return;
  379. XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
  380. if (w)
  381. *w = ext.xOff;
  382. if (h)
  383. *h = font->h;
  384. }
  385. Cur *
  386. drw_cur_create(Drw *drw, int shape)
  387. {
  388. Cur *cur;
  389. if (!drw || !(cur = ecalloc(1, sizeof(Cur))))
  390. return NULL;
  391. cur->cursor = XCreateFontCursor(drw->dpy, shape);
  392. return cur;
  393. }
  394. void
  395. drw_cur_free(Drw *drw, Cur *cursor)
  396. {
  397. if (!cursor)
  398. return;
  399. XFreeCursor(drw->dpy, cursor->cursor);
  400. free(cursor);
  401. }