2007-12-15 07:53:53 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "widget.h"
|
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
extern awesome_config globalconf;
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
static char name[] = "focustitle";
|
|
|
|
|
|
|
|
static int
|
2007-12-16 02:45:38 +01:00
|
|
|
focustitle_draw(DrawCtx *ctx, int screen, int offset, int used, int align)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *sel = globalconf.focus->client;
|
|
|
|
VirtScreen vscreen = globalconf.screens[screen];
|
2007-12-15 07:53:53 +01:00
|
|
|
int location = calculate_offset(vscreen.statusbar.width, 0, offset, align);
|
|
|
|
|
|
|
|
if(sel)
|
|
|
|
{
|
|
|
|
drawtext(ctx, location, 0, vscreen.statusbar.width - used,
|
|
|
|
vscreen.statusbar.height, vscreen.font, sel->name,
|
|
|
|
vscreen.colors_selected);
|
|
|
|
if(sel->isfloating)
|
|
|
|
drawcircle(ctx, location, 0,
|
|
|
|
(vscreen.font->height + 2) / 4,
|
|
|
|
sel->ismax,
|
|
|
|
vscreen.colors_selected[ColFG]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
drawtext(ctx, location, 0, vscreen.statusbar.width - used,
|
|
|
|
vscreen.statusbar.height, vscreen.font, NULL,
|
|
|
|
vscreen.colors_normal);
|
|
|
|
return vscreen.statusbar.width - used;
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
|
|
|
focustitle_new(Statusbar *statusbar)
|
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
w = p_new(Widget, 1);
|
2007-12-15 16:25:54 +01:00
|
|
|
w->draw = focustitle_draw;
|
2007-12-15 07:53:53 +01:00
|
|
|
w->statusbar = statusbar;
|
|
|
|
w->name = name;
|
|
|
|
w->alignment = AlignFlex;
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|