2007-12-27 18:11:47 +01:00
|
|
|
/*
|
|
|
|
* focustitle.c - focus title widget
|
|
|
|
*
|
|
|
|
* Copyright © 2007 Aldo Cortesi <aldo@nullcube.com>
|
|
|
|
* Copyright © 2007 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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"
|
2007-12-27 19:23:10 +01:00
|
|
|
#include "tag.h"
|
2007-12-16 18:23:37 +01:00
|
|
|
#include "focus.h"
|
2007-12-29 19:39:46 +01:00
|
|
|
#include "xutil.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
|
|
|
|
2007-12-29 19:39:46 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
XColor fg;
|
|
|
|
XColor bg;
|
|
|
|
} Data;
|
|
|
|
|
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-29 19:39:46 +01:00
|
|
|
Data *d = widget->data;
|
2007-12-27 19:57:46 +01:00
|
|
|
Client *sel = focus_get_current_client(widget->statusbar->screen);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
|
|
|
widget->location = widget_calculate_offset(vscreen.statusbar->width,
|
|
|
|
0,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
2007-12-15 07:53:53 +01:00
|
|
|
|
|
|
|
if(sel)
|
|
|
|
{
|
2007-12-27 11:22:57 +01:00
|
|
|
draw_text(ctx, widget->location, 0, vscreen.statusbar->width - used,
|
2007-12-30 14:42:51 +01:00
|
|
|
vscreen.statusbar->height, widget->font->height / 2, widget->font, sel->name,
|
2007-12-29 19:39:46 +01:00
|
|
|
d->fg, d->bg);
|
2007-12-15 07:53:53 +01:00
|
|
|
if(sel->isfloating)
|
2007-12-27 11:22:57 +01:00
|
|
|
draw_circle(ctx, widget->location, 0,
|
2007-12-29 19:39:46 +01:00
|
|
|
(widget->font->height + 2) / 4,
|
|
|
|
sel->ismax, d->fg);
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
else
|
2007-12-27 11:22:57 +01:00
|
|
|
draw_text(ctx, widget->location, 0, vscreen.statusbar->width - used,
|
2007-12-30 14:42:51 +01:00
|
|
|
vscreen.statusbar->height, widget->font->height / 2, widget->font, NULL,
|
2007-12-29 19:39:46 +01:00
|
|
|
d->fg, d->bg);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
|
|
|
widget->width = vscreen.statusbar->width - used;
|
|
|
|
|
|
|
|
return widget->width;
|
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;
|
2007-12-29 19:39:46 +01:00
|
|
|
Data *d;
|
|
|
|
char *buf;
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
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;
|
2007-12-29 19:39:46 +01:00
|
|
|
w->data = d = p_new(Data, 1);
|
|
|
|
|
|
|
|
if((buf = cfg_getstr(config, "fg")))
|
|
|
|
d->fg = initxcolor(statusbar->screen, buf);
|
|
|
|
else
|
2007-12-29 22:01:11 +01:00
|
|
|
d->fg = globalconf.screens[statusbar->screen].colors_selected[ColFG];
|
2007-12-29 19:39:46 +01:00
|
|
|
|
|
|
|
if((buf = cfg_getstr(config, "bg")))
|
2007-12-29 22:01:11 +01:00
|
|
|
d->bg = initxcolor(statusbar->screen, buf);
|
2007-12-29 19:39:46 +01:00
|
|
|
else
|
2007-12-29 22:01:11 +01:00
|
|
|
d->bg = globalconf.screens[statusbar->screen].colors_selected[ColBG];
|
2007-12-29 19:39:46 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
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
|