2007-12-22 15:41:28 +01:00
|
|
|
/*
|
|
|
|
* textbox.c - text box widget
|
|
|
|
*
|
|
|
|
* Copyright © 2007 Aldo Cortesi <aldo@nullcube.com>
|
|
|
|
*
|
|
|
|
* 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-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-19 03:20:21 +01:00
|
|
|
#include "xutil.h"
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2007-12-22 15:41:28 +01:00
|
|
|
typedef struct
|
2007-12-17 10:57:17 +01:00
|
|
|
{
|
|
|
|
char *text;
|
2007-12-19 03:20:21 +01:00
|
|
|
XColor fg;
|
|
|
|
XColor bg;
|
2007-12-22 15:41:28 +01:00
|
|
|
} Data;
|
2007-12-17 10:57:17 +01:00
|
|
|
|
|
|
|
static void
|
2007-12-22 15:41:28 +01:00
|
|
|
update(Widget *widget, char *text)
|
|
|
|
{
|
|
|
|
Data *d = widget->data;
|
2007-12-17 10:57:17 +01:00
|
|
|
if (d->text)
|
|
|
|
p_delete(&d->text);
|
|
|
|
d->text = a_strdup(text);
|
|
|
|
}
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
static int
|
2007-12-17 10:57:17 +01:00
|
|
|
textbox_draw(Widget *widget, DrawCtx *ctx, int offset,
|
2007-12-16 04:28:29 +01:00
|
|
|
int used __attribute__ ((unused)))
|
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 10:57:17 +01:00
|
|
|
int width, location;
|
2007-12-22 15:41:28 +01:00
|
|
|
Data *d = widget->data;
|
|
|
|
|
2007-12-17 10:57:17 +01:00
|
|
|
width = textwidth(ctx, vscreen.font, d->text);
|
2007-12-18 08:17:46 +01:00
|
|
|
location = calculate_offset(vscreen.statusbar->width,
|
2007-12-17 10:57:17 +01:00
|
|
|
width,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
2007-12-22 15:41:28 +01:00
|
|
|
|
2007-12-18 08:17:46 +01:00
|
|
|
drawtext(ctx, location, 0, width, vscreen.statusbar->height,
|
2007-12-19 03:20:21 +01:00
|
|
|
vscreen.font, d->text, d->fg, d->bg);
|
2007-12-15 07:53:53 +01:00
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2007-12-17 10:57:17 +01:00
|
|
|
static void
|
|
|
|
textbox_tell(Widget *widget, char *command)
|
|
|
|
{
|
|
|
|
update(widget, command);
|
|
|
|
}
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
Widget *
|
2007-12-17 10:57:17 +01:00
|
|
|
textbox_new(Statusbar *statusbar, cfg_t *config)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
|
|
|
Widget *w;
|
2007-12-17 10:57:17 +01:00
|
|
|
Data *d;
|
2007-12-19 03:20:21 +01:00
|
|
|
char *color;
|
2007-12-17 10:57:17 +01:00
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
w = p_new(Widget, 1);
|
2007-12-17 10:57:17 +01:00
|
|
|
common_new(w, statusbar, config);
|
2007-12-15 16:25:54 +01:00
|
|
|
w->draw = textbox_draw;
|
2007-12-17 10:57:17 +01:00
|
|
|
w->tell = textbox_tell;
|
|
|
|
|
|
|
|
d = p_new(Data, 1);
|
|
|
|
w->data = (void*) d;
|
|
|
|
|
2007-12-19 03:20:21 +01:00
|
|
|
if ((color = cfg_getstr(config, "fg")))
|
|
|
|
d->fg = initxcolor(statusbar->screen, color);
|
|
|
|
else
|
|
|
|
d->fg = globalconf.screens[statusbar->screen].colors_normal[ColFG];
|
|
|
|
|
|
|
|
if ((color = cfg_getstr(config, "bg")))
|
|
|
|
d->bg = initxcolor(statusbar->screen, color);
|
|
|
|
else
|
|
|
|
d->bg = globalconf.screens[statusbar->screen].colors_normal[ColBG];
|
|
|
|
|
2007-12-17 10:57:17 +01:00
|
|
|
update(w, cfg_getstr(config, "default"));
|
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
|