2007-12-22 15:41:28 +01:00
|
|
|
/*
|
|
|
|
* textbox.c - text box widget
|
|
|
|
*
|
2008-05-20 15:39:47 +02:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-12-22 15:41:28 +01:00
|
|
|
* 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;
|
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-05-20 15:39:47 +02:00
|
|
|
textbox_draw(widget_node_t *w, statusbar_t *statusbar, int offset, int used)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
Data *d = w->widget->data;
|
2007-12-22 15:41:28 +01:00
|
|
|
|
2007-12-30 21:03:22 +01:00
|
|
|
if(d->width)
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.width = d->width;
|
|
|
|
else if(w->widget->align == AlignFlex)
|
|
|
|
w->area.width = statusbar->width - used;
|
2007-12-30 21:03:22 +01:00
|
|
|
else
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.width = MIN(draw_text_extents(statusbar->ctx->connection,
|
|
|
|
statusbar->ctx->phys_screen,
|
|
|
|
globalconf.font, d->text).width,
|
|
|
|
statusbar->width - used);
|
2007-12-30 14:49:03 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.height = statusbar->height;
|
2008-01-05 12:44:14 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.x = widget_calculate_offset(statusbar->width,
|
|
|
|
w->area.width,
|
|
|
|
offset,
|
|
|
|
w->widget->align);
|
|
|
|
w->area.y = 0;
|
2007-12-22 15:41:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
draw_text(statusbar->ctx, globalconf.font,
|
|
|
|
&statusbar->colors.fg,
|
|
|
|
w->area, d->text);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
return w->area.width;
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
2008-03-04 19:06:04 +01:00
|
|
|
static widget_tell_status_t
|
2008-05-20 15:39:47 +02:00
|
|
|
textbox_tell(widget_t *widget, const char *property, const char *new_value)
|
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:39:53 +01:00
|
|
|
if(!a_strcmp(property, "text"))
|
|
|
|
{
|
2008-05-02 10:11:38 +02:00
|
|
|
p_delete(&d->text);
|
2008-04-23 23:44:55 +02:00
|
|
|
d->text = a_strdup(new_value);
|
2008-02-17 08:39:53 +01:00
|
|
|
}
|
|
|
|
else if(!a_strcmp(property, "width"))
|
2008-04-23 23:44:55 +02:00
|
|
|
d->width = atoi(new_value);
|
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 *
|
2008-05-20 15:39:47 +02:00
|
|
|
textbox_new(alignment_t align)
|
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);
|
2008-05-20 15:39:47 +02:00
|
|
|
widget_common_new(w);
|
|
|
|
w->align = align;
|
2007-12-15 16:25:54 +01:00
|
|
|
w->draw = textbox_draw;
|
2007-12-17 10:57:17 +01:00
|
|
|
w->tell = textbox_tell;
|
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-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
|