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-15 07:53:53 +01:00
|
|
|
#include "widget.h"
|
2008-01-01 18:02:36 +01:00
|
|
|
#include "screen.h"
|
2008-01-21 18:14:59 +01:00
|
|
|
#include "common/util.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-30 21:03:22 +01:00
|
|
|
int width;
|
2008-01-04 19:17:20 +01:00
|
|
|
Alignment align;
|
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
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
static int
|
2008-01-23 08:28:02 +01:00
|
|
|
textbox_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2007-12-22 15:41:28 +01:00
|
|
|
Data *d = widget->data;
|
|
|
|
|
2007-12-30 21:03:22 +01:00
|
|
|
if(d->width)
|
2008-01-04 21:46:25 +01:00
|
|
|
widget->area.width = d->width;
|
2008-02-28 16:19:38 +01:00
|
|
|
else if(widget->alignment == AlignFlex)
|
|
|
|
widget->area.width = widget->statusbar->width - used;
|
2007-12-30 21:03:22 +01:00
|
|
|
else
|
2008-01-24 18:43:24 +01:00
|
|
|
widget->area.width = MIN(draw_textwidth(ctx->display, widget->font, d->text),
|
2008-01-23 08:28:02 +01:00
|
|
|
widget->statusbar->width - used);
|
2007-12-30 14:49:03 +01:00
|
|
|
|
2008-01-05 12:44:14 +01:00
|
|
|
widget->area.height = widget->statusbar->height;
|
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
if(!widget->user_supplied_x)
|
|
|
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
2008-01-04 22:05:52 +01:00
|
|
|
widget->area.width,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
2008-01-05 12:35:12 +01:00
|
|
|
if(!widget->user_supplied_y)
|
|
|
|
widget->area.y = 0;
|
2007-12-22 15:41:28 +01:00
|
|
|
|
2008-03-07 17:40:40 +01:00
|
|
|
draw_text(ctx, widget->area, d->align, 0, widget->font, d->text,
|
|
|
|
globalconf.screens[widget->statusbar->screen].shadow_offset,
|
|
|
|
d->fg, d->bg);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
2008-01-04 21:46:25 +01:00
|
|
|
return widget->area.width;
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
2007-12-17 10:57:17 +01:00
|
|
|
static void
|
2008-02-17 08:16:40 +01:00
|
|
|
textbox_tell(Widget *widget, char *property, char *command)
|
2007-12-17 10:57:17 +01:00
|
|
|
{
|
2008-02-17 08:39:53 +01:00
|
|
|
Data *d = widget->data;
|
2008-01-07 14:11:22 +01:00
|
|
|
|
2008-02-17 08:16:40 +01:00
|
|
|
if(!property || !command)
|
|
|
|
return;
|
|
|
|
|
2008-02-17 08:39:53 +01:00
|
|
|
if(!a_strcmp(property, "text"))
|
|
|
|
{
|
|
|
|
if (d->text)
|
|
|
|
p_delete(&d->text);
|
|
|
|
d->text = a_strdup(command);
|
|
|
|
}
|
|
|
|
else if(!a_strcmp(property, "fg"))
|
|
|
|
draw_color_new(globalconf.display, widget->statusbar->screen, command, &d->fg);
|
|
|
|
|
|
|
|
else if(!a_strcmp(property, "bg"))
|
|
|
|
draw_color_new(globalconf.display, widget->statusbar->screen, command, &d->bg);
|
|
|
|
|
|
|
|
else if(!a_strcmp(property, "font"))
|
|
|
|
{
|
|
|
|
widget->font = XftFontOpenName(globalconf.display,
|
|
|
|
get_phys_screen(widget->statusbar->screen), command);
|
|
|
|
if(!widget->font)
|
|
|
|
widget->font = globalconf.screens[widget->statusbar->screen].font;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(!a_strcmp(property, "width"))
|
|
|
|
d->width = atoi(command);
|
2008-01-07 14:11:22 +01:00
|
|
|
|
2008-02-17 08:39:53 +01:00
|
|
|
else if(!a_strcmp(property, "text_align"))
|
2008-01-07 14:11:22 +01:00
|
|
|
{
|
2008-02-17 08:39:53 +01:00
|
|
|
if(!a_strcmp(command, "center") || !a_strcmp(command, "left") ||
|
|
|
|
!a_strcmp(command, "right"))
|
|
|
|
d->align = draw_get_align(command);
|
2008-01-07 14:11:22 +01:00
|
|
|
else
|
2008-02-17 08:39:53 +01:00
|
|
|
warn("text_align value must be (case-sensitive) \"center\", \"left\",\
|
|
|
|
or \"right\". But is: %s.\n", command);
|
2008-01-07 14:11:22 +01:00
|
|
|
}
|
2008-02-17 08:39:53 +01:00
|
|
|
|
|
|
|
else if(!a_strcmp(property, "align") || !a_strcmp(property, "mouse") ||
|
|
|
|
!a_strcmp(property, "x") || !a_strcmp(property, "y"))
|
|
|
|
warn("Property \"%s\" can't get changed.\n", property);
|
|
|
|
|
|
|
|
else
|
|
|
|
warn("No such property: %s\n", property);
|
|
|
|
return;
|
2007-12-17 10:57:17 +01:00
|
|
|
}
|
|
|
|
|
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-29 15:47:28 +01:00
|
|
|
char *buf;
|
2007-12-17 10:57:17 +01:00
|
|
|
|
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 = textbox_draw;
|
2007-12-17 10:57:17 +01:00
|
|
|
w->tell = textbox_tell;
|
2008-02-08 10:59:55 +01:00
|
|
|
w->alignment = draw_get_align(cfg_getstr(config, "align"));
|
2007-12-17 10:57:17 +01:00
|
|
|
|
2007-12-23 13:46:36 +01:00
|
|
|
w->data = d = p_new(Data, 1);
|
2007-12-17 10:57:17 +01:00
|
|
|
|
2007-12-29 15:47:28 +01:00
|
|
|
if((buf = cfg_getstr(config, "fg")))
|
2008-02-26 07:15:24 +01:00
|
|
|
draw_color_new(globalconf.display, get_phys_screen(statusbar->screen), buf, &d->fg);
|
2007-12-19 03:20:21 +01:00
|
|
|
else
|
|
|
|
d->fg = globalconf.screens[statusbar->screen].colors_normal[ColFG];
|
|
|
|
|
2007-12-29 15:47:28 +01:00
|
|
|
if((buf = cfg_getstr(config, "bg")))
|
2008-02-13 08:58:21 +01:00
|
|
|
draw_color_new(globalconf.display, get_phys_screen(statusbar->screen), buf, &d->bg);
|
2007-12-19 03:20:21 +01:00
|
|
|
else
|
|
|
|
d->bg = globalconf.screens[statusbar->screen].colors_normal[ColBG];
|
|
|
|
|
2007-12-30 21:03:22 +01:00
|
|
|
d->width = cfg_getint(config, "width");
|
2008-02-08 09:58:36 +01:00
|
|
|
d->align = draw_get_align(cfg_getstr(config, "text_align"));
|
2007-12-30 14:49:03 +01:00
|
|
|
|
2007-12-29 15:47:28 +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;
|
|
|
|
|
2008-01-02 15:01:30 +01:00
|
|
|
d->text = a_strdup(cfg_getstr(config, "text"));
|
2008-02-08 10:59:55 +01:00
|
|
|
|
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
|