Xinqi Bao's Git
1 /* See LICENSE file for copyright and license details. */
3 #define FG(dc, col) ((col)[(dc)->invert ? ColBG : ColFG])
4 #define BG(dc, col) ((col)[(dc)->invert ? ColFG : ColBG])
6 enum { ColBG
, ColFG
, ColBorder
, ColLast
};
21 } DC
; /* draw context */
23 unsigned long getcolor(DC
*dc
, const char *colstr
);
24 void drawrect(DC
*dc
, int x
, int y
, unsigned int w
, unsigned int h
, Bool fill
, unsigned long color
);
25 void drawtext(DC
*dc
, const char *text
, unsigned long col
[ColLast
]);
26 void drawtextn(DC
*dc
, const char *text
, size_t n
, unsigned long col
[ColLast
]);
27 void initfont(DC
*dc
, const char *fontstr
);
30 void mapdc(DC
*dc
, Window win
, unsigned int w
, unsigned int h
);
31 void resizedc(DC
*dc
, unsigned int w
, unsigned int h
);
32 int textnw(DC
*dc
, const char *text
, size_t len
);
33 int textw(DC
*dc
, const char *text
);
34 void eprintf(const char *fmt
, ...);
35 void weprintf(const char *fmt
, ...);