awesome/widgets/textbox.c

34 lines
994 B
C
Raw Normal View History

#include "util.h"
#include "widget.h"
extern awesome_config globalconf;
static int
2007-12-16 04:28:29 +01:00
textbox_draw(Widget *widget,
DrawCtx *ctx,
2007-12-15 16:25:54 +01:00
int offset,
2007-12-16 04:28:29 +01:00
int used __attribute__ ((unused)))
{
2007-12-16 04:28:29 +01:00
VirtScreen vscreen = globalconf.screens[widget->statusbar->screen];
int width = textwidth(ctx, vscreen.font, vscreen.statustext);
int location = calculate_offset(vscreen.statusbar.width,
width,
offset,
widget->alignment);
drawtext(ctx, location, 0, width, vscreen.statusbar.height,
vscreen.font, vscreen.statustext, vscreen.colors_normal);
return width;
}
Widget *
textbox_new(Statusbar *statusbar, const char *name)
{
Widget *w;
w = p_new(Widget, 1);
2007-12-15 16:25:54 +01:00
w->draw = textbox_draw;
common_new(w, statusbar, name);
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99