all repos — openbox @ 1ae0583b045ead56dfa7002ee83378fed64c920b

openbox fork - make it a bit more like ryudo

render/font.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __font_h
#define __font_h
#include "render.h"
#include "geom.h"

struct _RrFont {
    const RrInstance *inst;
    XftFont *xftfont;
    gint elipses_length;
    gint shadow;
    gchar tint;
    gint offset;
};

RrFont *RrFontOpen(const RrInstance *inst, char *fontstring);
void RrFontClose(RrFont *f);
void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *position);
#endif /* __font_h */