My dmenu build
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.
 
 
 
 
 
 

15 lines
315 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <X11/Xlib.h>
  3. #include "draw.h"
  4. int
  5. textnw(DC *dc, const char *text, unsigned int len) {
  6. XRectangle r;
  7. if(dc->font.set) {
  8. XmbTextExtents(dc->font.set, text, len, NULL, &r);
  9. return r.width;
  10. }
  11. return XTextWidth(dc->font.xfont, text, len);
  12. }