awesome/widgets/focustitle.c

50 lines
1.6 KiB
C
Raw Normal View History

#include <stdio.h>
#include "util.h"
#include "widget.h"
2007-12-16 18:23:37 +01:00
#include "layout.h"
#include "focus.h"
extern awesome_config globalconf;
static int
2007-12-16 04:28:29 +01:00
focustitle_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
{
2007-12-16 04:28:29 +01:00
VirtScreen vscreen = globalconf.screens[widget->statusbar->screen];
Client *sel = focus_get_latest_client_for_tag(widget->statusbar->screen,
2007-12-16 18:23:37 +01:00
get_current_tag(widget->statusbar->screen));
int location = calculate_offset(vscreen.statusbar.width,
0,
offset,
widget->alignment);
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, const char *name)
{
Widget *w;
w = p_new(Widget, 1);
2007-12-15 16:25:54 +01:00
w->draw = focustitle_draw;
w->alignment = AlignFlex;
common_new(w, statusbar, name);
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99