awesome/widgets/textbox.c

154 lines
4.8 KiB
C
Raw Normal View History

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.
*
*/
#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"
extern AwesomeConf globalconf;
2007-12-22 15:41:28 +01:00
typedef struct
{
char *text;
int width;
2008-01-04 19:17:20 +01:00
Alignment align;
XColor fg;
XColor bg;
2007-12-22 15:41:28 +01:00
} Data;
static int
textbox_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
{
2007-12-22 15:41:28 +01:00
Data *d = widget->data;
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;
else
2008-01-24 18:43:24 +01:00
widget->area.width = MIN(draw_textwidth(ctx->display, widget->font, d->text),
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;
if(!widget->user_supplied_x)
widget->area.x = widget_calculate_offset(widget->statusbar->width,
widget->area.width,
offset,
widget->alignment);
if(!widget->user_supplied_y)
widget->area.y = 0;
2007-12-22 15:41:28 +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);
2008-01-04 21:46:25 +01:00
return widget->area.width;
}
static widget_tell_status_t
textbox_tell(Widget *widget, char *property, char *command)
{
Data *d = widget->data;
XftFont *newfont;
2008-03-06 14:30:18 +01:00
if(!command)
return WIDGET_ERROR_NOVALUE;
if(!a_strcmp(property, "text"))
{
if (d->text)
p_delete(&d->text);
d->text = a_strdup(command);
}
else if(!a_strcmp(property, "fg"))
2008-03-06 14:30:18 +01:00
if(draw_color_new(globalconf.display, widget->statusbar->screen, command, &d->fg))
return WIDGET_NOERROR;
else
return WIDGET_ERROR_FORMAT_COLOR;
else if(!a_strcmp(property, "bg"))
2008-03-06 14:30:18 +01:00
if(draw_color_new(globalconf.display, widget->statusbar->screen, command, &d->bg))
return WIDGET_NOERROR;
else
return WIDGET_ERROR_FORMAT_COLOR;
else if(!a_strcmp(property, "font"))
{
if(a_strlen(command)
&& (newfont = XftFontOpenName(globalconf.display,
get_phys_screen(widget->statusbar->screen), command)))
{
if(widget->font != globalconf.screens[widget->statusbar->screen].font)
XftFontClose(globalconf.display, widget->font);
widget->font = newfont;
}
else
return WIDGET_ERROR_FORMAT_FONT;
}
else if(!a_strcmp(property, "width"))
d->width = atoi(command);
else if(!a_strcmp(property, "text_align"))
d->align = draw_get_align(command);
else
return WIDGET_ERROR;
return WIDGET_NOERROR;
}
Widget *
textbox_new(Statusbar *statusbar, cfg_t *config)
{
Widget *w;
Data *d;
char *buf;
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;
w->tell = textbox_tell;
w->alignment = draw_get_align(cfg_getstr(config, "align"));
2007-12-23 13:46:36 +01:00
w->data = d = p_new(Data, 1);
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);
else
d->fg = globalconf.screens[statusbar->screen].colors_normal[ColFG];
if((buf = cfg_getstr(config, "bg")))
draw_color_new(globalconf.display, get_phys_screen(statusbar->screen), buf, &d->bg);
else
d->bg = globalconf.screens[statusbar->screen].colors_normal[ColBG];
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
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"));
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80