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"
|
2008-03-19 12:05:36 +01:00
|
|
|
#include "common/configopts.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-04-11 11:18:23 +02:00
|
|
|
alignment_t align;
|
2008-03-14 08:35:06 +01:00
|
|
|
style_t style;
|
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-04-11 11:26:37 +02:00
|
|
|
textbox_draw(widget_t *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-03-21 16:50:17 +01:00
|
|
|
widget->area.width = MIN(draw_textwidth(ctx->connection, ctx->default_screen,
|
|
|
|
d->style.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-14 08:35:06 +01:00
|
|
|
draw_text(ctx, widget->area, d->align, 0, d->text, d->style);
|
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
|
|
|
}
|
|
|
|
|
2008-03-04 19:06:04 +01:00
|
|
|
static widget_tell_status_t
|
2008-04-11 11:26:37 +02:00
|
|
|
textbox_tell(widget_t *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-03-17 12:38:49 +01:00
|
|
|
font_t *newfont;
|
2008-01-07 14:11:22 +01:00
|
|
|
|
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"))
|
2008-03-21 16:50:17 +01:00
|
|
|
if(draw_color_new(globalconf.connection, widget->statusbar->screen, command, &d->style.fg))
|
2008-03-06 14:30:18 +01:00
|
|
|
return WIDGET_NOERROR;
|
|
|
|
else
|
|
|
|
return WIDGET_ERROR_FORMAT_COLOR;
|
2008-02-17 08:39:53 +01:00
|
|
|
else if(!a_strcmp(property, "bg"))
|
2008-03-21 16:50:17 +01:00
|
|
|
if(draw_color_new(globalconf.connection, widget->statusbar->screen, command, &d->style.bg))
|
2008-03-06 14:30:18 +01:00
|
|
|
return WIDGET_NOERROR;
|
|
|
|
else
|
|
|
|
return WIDGET_ERROR_FORMAT_COLOR;
|
2008-02-17 08:39:53 +01:00
|
|
|
else if(!a_strcmp(property, "font"))
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
if((newfont = draw_font_new(globalconf.connection, globalconf.default_screen, command)))
|
2008-03-04 19:06:04 +01:00
|
|
|
{
|
2008-03-14 08:35:06 +01:00
|
|
|
if(d->style.font != globalconf.screens[widget->statusbar->screen].styles.normal.font)
|
2008-03-21 11:26:56 +01:00
|
|
|
draw_font_delete(&d->style.font);
|
2008-03-14 08:35:06 +01:00
|
|
|
d->style.font = newfont;
|
2008-03-04 19:06:04 +01:00
|
|
|
}
|
2008-03-13 08:06:01 +01:00
|
|
|
else
|
|
|
|
return WIDGET_ERROR_FORMAT_FONT;
|
2008-02-17 08:39:53 +01:00
|
|
|
}
|
|
|
|
else if(!a_strcmp(property, "width"))
|
|
|
|
d->width = atoi(command);
|
|
|
|
else if(!a_strcmp(property, "text_align"))
|
2008-03-19 11:45:27 +01:00
|
|
|
d->align = draw_align_get_from_str(command);
|
2008-02-17 08:39:53 +01:00
|
|
|
else
|
2008-03-04 19:06:04 +01:00
|
|
|
return WIDGET_ERROR;
|
|
|
|
|
|
|
|
return WIDGET_NOERROR;
|
2007-12-17 10:57:17 +01:00
|
|
|
}
|
|
|
|
|
2008-04-11 11:26:37 +02:00
|
|
|
widget_t *
|
2007-12-17 10:57:17 +01:00
|
|
|
textbox_new(Statusbar *statusbar, cfg_t *config)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2008-04-11 11:26:37 +02:00
|
|
|
widget_t *w;
|
2007-12-17 10:57:17 +01:00
|
|
|
Data *d;
|
|
|
|
|
2008-04-11 11:26:37 +02:00
|
|
|
w = p_new(widget_t, 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-03-19 12:05:36 +01:00
|
|
|
w->alignment = cfg_getalignment(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
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
draw_style_init(globalconf.connection, statusbar->phys_screen,
|
2008-03-21 10:01:28 +01:00
|
|
|
cfg_getsec(config, "style"),
|
|
|
|
&d->style,
|
|
|
|
&globalconf.screens[statusbar->screen].styles.normal);
|
2007-12-19 03:20:21 +01:00
|
|
|
|
2007-12-30 21:03:22 +01:00
|
|
|
d->width = cfg_getint(config, "width");
|
2008-03-19 12:05:36 +01:00
|
|
|
d->align = cfg_getalignment(config, "text_align");
|
2007-12-30 14:49:03 +01:00
|
|
|
|
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
|