awesome/draw.h
2007-09-11 14:00:49 +02:00

13 lines
333 B
C

/* See LICENSE file for copyright and license details. */
#ifndef AWESOME_DRAW_H
#define AWESOME_DRAW_H
#include "util.h"
#define textw(text) (textnw(text, a_strlen(text)) + dc.font.height)
void drawstatus(Display *, awesome_config *); /* draw the bar */
unsigned int textnw(const char *, unsigned int);
#endif