drw: fixup font_getexts
This commit is contained in:
parent
62f5baf7d2
commit
da9f788877
30
drw.c
30
drw.c
@ -220,7 +220,7 @@ int
|
|||||||
drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, int invert) {
|
drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, int invert) {
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
int tx, ty, th;
|
int tx, ty, th;
|
||||||
Extnts tex;
|
unsigned int ew;
|
||||||
Colormap cmap;
|
Colormap cmap;
|
||||||
Visual *vis;
|
Visual *vis;
|
||||||
XftDraw *d;
|
XftDraw *d;
|
||||||
@ -282,10 +282,10 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *tex
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (utf8strlen) {
|
if (utf8strlen) {
|
||||||
drw_font_getexts(curfont, utf8str, utf8strlen, &tex);
|
drw_font_getexts(curfont, utf8str, utf8strlen, &ew, NULL);
|
||||||
/* shorten text if necessary */
|
/* shorten text if necessary */
|
||||||
for(len = MIN(utf8strlen, (sizeof buf) - 1); len && (tex.w > w - drw->fonts[0]->h || w < drw->fonts[0]->h); len--)
|
for(len = MIN(utf8strlen, (sizeof buf) - 1); len && (ew > w - drw->fonts[0]->h || w < drw->fonts[0]->h); len--)
|
||||||
drw_font_getexts(curfont, utf8str, len, &tex);
|
drw_font_getexts(curfont, utf8str, len, &ew, NULL);
|
||||||
|
|
||||||
if (len) {
|
if (len) {
|
||||||
memcpy(buf, utf8str, len);
|
memcpy(buf, utf8str, len);
|
||||||
@ -300,8 +300,8 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *tex
|
|||||||
XftDrawStringUtf8(d, invert ? &drw->scheme->bg->rgb : &drw->scheme->fg->rgb, curfont->xfont, tx, ty, (XftChar8 *)buf, len);
|
XftDrawStringUtf8(d, invert ? &drw->scheme->bg->rgb : &drw->scheme->fg->rgb, curfont->xfont, tx, ty, (XftChar8 *)buf, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
x += tex.w;
|
x += ew;
|
||||||
w -= tex.w;
|
w -= ew;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -372,24 +372,16 @@ drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h) {
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
drw_font_getexts(Fnt *font, const char *text, unsigned int len, Extnts *tex) {
|
drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h) {
|
||||||
XGlyphInfo ext;
|
XGlyphInfo ext;
|
||||||
|
|
||||||
if(!font || !text)
|
if(!font || !text)
|
||||||
return;
|
return;
|
||||||
XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
|
XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
|
||||||
tex->h = font->h;
|
if (w)
|
||||||
tex->w = ext.xOff;
|
*w = ext.xOff;
|
||||||
}
|
if (h)
|
||||||
|
*h = font->h;
|
||||||
unsigned int
|
|
||||||
drw_font_getexts_width(Fnt *font, const char *text, unsigned int len) {
|
|
||||||
Extnts tex;
|
|
||||||
|
|
||||||
if(!font)
|
|
||||||
return -1;
|
|
||||||
drw_font_getexts(font, text, len, &tex);
|
|
||||||
return tex.w;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Cur *
|
Cur *
|
||||||
|
8
drw.h
8
drw.h
@ -37,11 +37,6 @@ typedef struct {
|
|||||||
Fnt *fonts[DRW_FONT_CACHE_SIZE];
|
Fnt *fonts[DRW_FONT_CACHE_SIZE];
|
||||||
} Drw;
|
} Drw;
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
unsigned int w;
|
|
||||||
unsigned int h;
|
|
||||||
} Extnts;
|
|
||||||
|
|
||||||
/* Drawable abstraction */
|
/* Drawable abstraction */
|
||||||
Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h);
|
Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h);
|
||||||
void drw_resize(Drw *drw, unsigned int w, unsigned int h);
|
void drw_resize(Drw *drw, unsigned int w, unsigned int h);
|
||||||
@ -51,8 +46,7 @@ void drw_free(Drw *drw);
|
|||||||
Fnt *drw_font_create(Drw *drw, const char *fontname);
|
Fnt *drw_font_create(Drw *drw, const char *fontname);
|
||||||
void drw_load_fonts(Drw* drw, const char *fonts[], size_t fontcount);
|
void drw_load_fonts(Drw* drw, const char *fonts[], size_t fontcount);
|
||||||
void drw_font_free(Fnt *font);
|
void drw_font_free(Fnt *font);
|
||||||
void drw_font_getexts(Fnt *font, const char *text, unsigned int len, Extnts *extnts);
|
void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h);
|
||||||
unsigned int drw_font_getexts_width(Fnt *font, const char *text, unsigned int len);
|
|
||||||
|
|
||||||
/* Colour abstraction */
|
/* Colour abstraction */
|
||||||
Clr *drw_clr_create(Drw *drw, const char *clrname);
|
Clr *drw_clr_create(Drw *drw, const char *clrname);
|
||||||
|
Loading…
Reference in New Issue
Block a user