awesome/draw.h

14 lines
333 B
C
Raw Normal View History

2007-09-05 20:15:00 +02:00
/* See LICENSE file for copyright and license details. */
#ifndef AWESOME_DRAW_H
#define AWESOME_DRAW_H
2007-09-05 20:15:00 +02:00
#include "util.h"
2007-09-05 20:15:00 +02:00
#define textw(text) (textnw(text, a_strlen(text)) + dc.font.height)
2007-09-10 12:06:54 +02:00
void drawstatus(Display *, awesome_config *); /* draw the bar */
unsigned int textnw(const char *, unsigned int);
2007-09-05 20:15:00 +02:00
#endif