2007-12-16 09:34:33 +01:00
|
|
|
#include <stdio.h>
|
2007-12-17 10:57:17 +01:00
|
|
|
#include <confuse.h>
|
2007-12-15 07:53:53 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "widget.h"
|
2007-12-16 18:23:37 +01:00
|
|
|
#include "layout.h"
|
|
|
|
#include "focus.h"
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-15 07:53:53 +01:00
|
|
|
|
|
|
|
static int
|
2007-12-16 04:28:29 +01:00
|
|
|
focustitle_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2007-12-16 04:28:29 +01:00
|
|
|
VirtScreen vscreen = globalconf.screens[widget->statusbar->screen];
|
2007-12-17 03:56:29 +01:00
|
|
|
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));
|
2007-12-22 20:55:17 +01:00
|
|
|
int location = widget_calculate_offset(vscreen.statusbar->width,
|
|
|
|
0,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
2007-12-15 07:53:53 +01:00
|
|
|
|
|
|
|
if(sel)
|
|
|
|
{
|
2007-12-22 20:17:24 +01:00
|
|
|
draw_text(ctx, location, 0, vscreen.statusbar->width - used,
|
|
|
|
vscreen.statusbar->height, vscreen.font, sel->name,
|
|
|
|
vscreen.colors_selected[ColFG],
|
|
|
|
vscreen.colors_selected[ColBG]);
|
2007-12-15 07:53:53 +01:00
|
|
|
if(sel->isfloating)
|
2007-12-22 20:17:24 +01:00
|
|
|
draw_circle(ctx, location, 0,
|
|
|
|
(vscreen.font->height + 2) / 4,
|
|
|
|
sel->ismax,
|
|
|
|
vscreen.colors_selected[ColFG]);
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
else
|
2007-12-22 20:17:24 +01:00
|
|
|
draw_text(ctx, location, 0, vscreen.statusbar->width - used,
|
|
|
|
vscreen.statusbar->height, vscreen.font, NULL,
|
|
|
|
vscreen.colors_normal[ColFG],
|
|
|
|
vscreen.colors_normal[ColBG]);
|
2007-12-18 08:17:46 +01:00
|
|
|
return vscreen.statusbar->width - used;
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
2007-12-17 10:57:17 +01:00
|
|
|
focustitle_new(Statusbar *statusbar, cfg_t *config)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
w = p_new(Widget, 1);
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_common_new(w, statusbar, config);
|
2007-12-15 16:25:54 +01:00
|
|
|
w->draw = focustitle_draw;
|
2007-12-15 07:53:53 +01:00
|
|
|
w->alignment = AlignFlex;
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|