awesome/widgets/focustitle.c

115 lines
3.4 KiB
C
Raw Normal View History

2007-12-27 18:11:47 +01:00
/*
* focustitle.c - focus title widget
*
* Copyright © 2007 Aldo Cortesi <aldo@nullcube.com>
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
2007-12-27 18:11:47 +01:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#include <stdio.h>
#include "util.h"
#include "widget.h"
2007-12-16 18:23:37 +01:00
#include "layout.h"
#include "tag.h"
2007-12-16 18:23:37 +01:00
#include "focus.h"
#include "xutil.h"
2008-01-01 18:02:36 +01:00
#include "screen.h"
extern AwesomeConf globalconf;
typedef struct
{
2008-01-04 19:17:20 +01:00
Alignment align;
XColor fg;
XColor bg;
} Data;
static int
2007-12-16 04:28:29 +01:00
focustitle_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
{
Data *d = widget->data;
2007-12-27 19:57:46 +01:00
Client *sel = focus_get_current_client(widget->statusbar->screen);
if(!widget->user_supplied_x)
widget->area.x = widget_calculate_offset(widget->statusbar->width,
0,
offset,
widget->alignment);
if(!widget->user_supplied_y)
widget->area.y = 0;
2008-01-12 23:47:03 +01:00
widget->area.width = widget->statusbar->width - used;
widget->area.height = widget->statusbar->height;
if(sel)
{
2008-01-12 23:47:03 +01:00
draw_text(ctx, widget->area,
2008-01-03 16:04:16 +01:00
d->align,
2008-01-03 15:57:07 +01:00
widget->font->height / 2, widget->font, sel->name,
d->fg, d->bg);
2008-01-11 17:54:48 +01:00
if(sel->isfloating || sel->ismax)
draw_circle(ctx, widget->area.x, widget->area.y,
(widget->font->height + 2) / 4,
sel->ismax, d->fg);
}
else
2008-01-12 23:47:03 +01:00
draw_rectangle(ctx, widget->area, True, d->bg);
2008-01-04 21:46:25 +01:00
return widget->area.width;
}
Widget *
focustitle_new(Statusbar *statusbar, cfg_t *config)
{
Widget *w;
Data *d;
char *buf;
2008-01-02 17:41:03 +01:00
int phys_screen = get_phys_screen(statusbar->screen);
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;
w->alignment = AlignFlex;
w->data = d = p_new(Data, 1);
if((buf = cfg_getstr(config, "fg")))
2008-01-02 17:41:03 +01:00
d->fg = initxcolor(phys_screen, buf);
else
2007-12-29 22:01:11 +01:00
d->fg = globalconf.screens[statusbar->screen].colors_selected[ColFG];
if((buf = cfg_getstr(config, "bg")))
2008-01-02 17:41:03 +01:00
d->bg = initxcolor(phys_screen, buf);
else
2007-12-29 22:01:11 +01:00
d->bg = globalconf.screens[statusbar->screen].colors_selected[ColBG];
2008-01-03 16:04:16 +01:00
d->align = draw_get_align(cfg_getstr(config, "align"));
if((buf = cfg_getstr(config, "font")))
w->font = XftFontOpenName(globalconf.display, get_phys_screen(statusbar->screen), buf);
if(!w->font)
w->font = globalconf.screens[statusbar->screen].font;
2008-01-07 18:12:38 +01:00
/* Set cache property */
w->cache.flags = WIDGET_CACHE_CLIENTS | WIDGET_CACHE_TAGS;
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80