2007-12-22 15:46:57 +01:00
|
|
|
/*
|
|
|
|
* widget.c - widget managing
|
|
|
|
*
|
2008-03-06 11:41:26 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-12-22 15:46:57 +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"
|
2007-12-17 10:57:17 +01:00
|
|
|
#include "statusbar.h"
|
2007-12-27 15:49:00 +01:00
|
|
|
#include "event.h"
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 10:25:13 +01:00
|
|
|
|
2008-01-16 08:06:59 +01:00
|
|
|
#include "widgetgen.h"
|
2007-12-15 18:21:02 +01:00
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Compute widget alignment.
|
|
|
|
* This will process all widget starting at `widget' and will check their
|
|
|
|
* alignment and guess it if set to AlignAuto.
|
|
|
|
* \param widget a linked list of all widgets
|
|
|
|
*/
|
2007-12-15 07:53:53 +01:00
|
|
|
void
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_calculate_alignments(Widget *widget)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2008-02-08 10:59:55 +01:00
|
|
|
for(; widget && widget->alignment != AlignFlex; widget = widget->next)
|
2008-02-25 20:09:19 +01:00
|
|
|
{
|
|
|
|
switch(widget->alignment)
|
|
|
|
{
|
|
|
|
case AlignCenter:
|
|
|
|
warn("widgets cannot be center aligned\n");
|
|
|
|
case AlignAuto:
|
2008-02-08 10:59:55 +01:00
|
|
|
widget->alignment = AlignLeft;
|
2008-02-25 20:09:19 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-12-15 13:37:34 +01:00
|
|
|
|
|
|
|
if(widget)
|
2008-02-08 10:59:55 +01:00
|
|
|
for(widget = widget->next; widget; widget = widget->next)
|
2008-02-25 20:09:19 +01:00
|
|
|
switch(widget->alignment)
|
|
|
|
{
|
|
|
|
case AlignFlex:
|
2008-02-28 16:19:03 +01:00
|
|
|
warn("multiple flex widgets (%s) in panel -"
|
|
|
|
" ignoring flex for all but the first.\n", widget->name);
|
2008-02-08 10:59:55 +01:00
|
|
|
widget->alignment = AlignRight;
|
2008-02-25 20:09:19 +01:00
|
|
|
break;
|
|
|
|
case AlignCenter:
|
2008-02-28 16:19:03 +01:00
|
|
|
warn("widget %s cannot be center aligned\n", widget->name);
|
2008-02-25 20:09:19 +01:00
|
|
|
case AlignAuto:
|
|
|
|
widget->alignment = AlignRight;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Compute offset for drawing the first pixel of a widget.
|
|
|
|
* \param barwidth the statusbar width
|
|
|
|
* \param widgetwidth the widget width
|
|
|
|
* \param alignment the widget alignment on statusbar
|
|
|
|
* \return the x coordinate to draw at
|
|
|
|
*/
|
2007-12-15 07:53:53 +01:00
|
|
|
int
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_calculate_offset(int barwidth, int widgetwidth, int offset, int alignment)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2008-01-04 19:17:20 +01:00
|
|
|
switch(alignment)
|
|
|
|
{
|
|
|
|
case AlignLeft:
|
|
|
|
case AlignFlex:
|
2007-12-15 07:53:53 +01:00
|
|
|
return offset;
|
2008-01-04 19:17:20 +01:00
|
|
|
}
|
2007-12-15 13:37:34 +01:00
|
|
|
return barwidth - offset - widgetwidth;
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Find a widget on a screen by its name
|
|
|
|
* \param name the widget name
|
|
|
|
* \param screen the screen to look into
|
|
|
|
* \return a widget
|
|
|
|
*/
|
2007-12-16 10:25:13 +01:00
|
|
|
static Widget *
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_find(char *name, int screen)
|
2007-12-16 10:25:13 +01:00
|
|
|
{
|
|
|
|
Widget *widget;
|
2007-12-30 21:00:34 +01:00
|
|
|
Statusbar *sb;
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2007-12-30 21:00:34 +01:00
|
|
|
for(sb = globalconf.screens[screen].statusbar; sb; sb = sb->next)
|
|
|
|
for(widget = sb->widgets; widget; widget = widget->next)
|
|
|
|
if(a_strcmp(name, widget->name) == 0)
|
|
|
|
return widget;
|
|
|
|
|
2007-12-16 10:25:13 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Common function for button press event on widget.
|
|
|
|
* It will look into configuration to find the callback function to call.
|
|
|
|
* \param widget the widget
|
|
|
|
* \param ev the XButtonPressedEvent the widget received
|
|
|
|
*/
|
2007-12-27 15:49:00 +01:00
|
|
|
static void
|
|
|
|
widget_common_button_press(Widget *widget, XButtonPressedEvent *ev)
|
|
|
|
{
|
|
|
|
Button *b;
|
|
|
|
|
|
|
|
for(b = widget->buttons; b; b = b->next)
|
|
|
|
if(ev->button == b->button && CLEANMASK(ev->state) == b->mod && b->func)
|
2008-01-23 08:47:46 +01:00
|
|
|
{
|
2007-12-27 15:49:00 +01:00
|
|
|
b->func(widget->statusbar->screen, b->arg);
|
2008-01-23 08:47:46 +01:00
|
|
|
break;
|
|
|
|
}
|
2007-12-27 15:49:00 +01:00
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Common tell function for widget, which only warn user that widget
|
|
|
|
* cannot be told anything
|
|
|
|
* \param widget the widget
|
|
|
|
* \param command unused argument
|
2008-03-13 15:14:09 +01:00
|
|
|
* \return widget_tell_status_t enum (see structs.h)
|
2008-03-06 11:41:26 +01:00
|
|
|
*/
|
2008-03-04 19:06:04 +01:00
|
|
|
static widget_tell_status_t
|
2008-02-17 08:16:40 +01:00
|
|
|
widget_common_tell(Widget *widget, char *property __attribute__ ((unused)),
|
|
|
|
char *command __attribute__ ((unused)))
|
2007-12-17 10:57:17 +01:00
|
|
|
{
|
|
|
|
warn("%s widget does not accept commands.\n", widget->name);
|
2008-03-04 19:06:04 +01:00
|
|
|
return WIDGET_ERROR_CUSTOM;
|
2007-12-17 10:57:17 +01:00
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Common function for creating a widget
|
|
|
|
* \param widget The allocated widget
|
|
|
|
* \param statusbar the statusbar the widget is on
|
|
|
|
* \param config the cfg_t structure we will parse to set common info
|
|
|
|
*/
|
2007-12-16 09:34:33 +01:00
|
|
|
void
|
2008-03-06 11:41:26 +01:00
|
|
|
widget_common_new(Widget *widget, Statusbar *statusbar, cfg_t *config)
|
2007-12-16 09:34:33 +01:00
|
|
|
{
|
2007-12-22 15:46:57 +01:00
|
|
|
widget->statusbar = statusbar;
|
2008-03-06 11:41:26 +01:00
|
|
|
widget->name = a_strdup(cfg_title(config));
|
2007-12-22 20:55:17 +01:00
|
|
|
widget->tell = widget_common_tell;
|
2007-12-27 15:49:00 +01:00
|
|
|
widget->button_press = widget_common_button_press;
|
2008-01-04 22:05:52 +01:00
|
|
|
widget->area.x = cfg_getint(config, "x");
|
|
|
|
widget->area.y = cfg_getint(config, "y");
|
2008-01-05 13:01:40 +01:00
|
|
|
widget->user_supplied_x = (widget->area.x != (int) 0xffffffff);
|
|
|
|
widget->user_supplied_y = (widget->area.y != (int) 0xffffffff);
|
2007-12-16 09:34:33 +01:00
|
|
|
}
|
|
|
|
|
2008-03-06 11:41:26 +01:00
|
|
|
/** Invalidate widgets which should be refresh upon
|
|
|
|
* external modifications. Widget who watch flags will
|
|
|
|
* be set to be refreshed.
|
|
|
|
* \param screen screen id
|
|
|
|
* \param flags cache flags
|
|
|
|
*/
|
2008-01-07 18:12:38 +01:00
|
|
|
void
|
|
|
|
widget_invalidate_cache(int screen, int flags)
|
|
|
|
{
|
|
|
|
Statusbar *statusbar;
|
|
|
|
Widget *widget;
|
|
|
|
|
|
|
|
for(statusbar = globalconf.screens[screen].statusbar;
|
|
|
|
statusbar;
|
|
|
|
statusbar = statusbar->next)
|
|
|
|
for(widget = statusbar->widgets; widget; widget = widget->next)
|
2008-01-11 15:53:57 +01:00
|
|
|
if(widget->cache.flags & flags)
|
|
|
|
widget->cache.needs_update = True;
|
2008-01-07 18:12:38 +01:00
|
|
|
}
|
|
|
|
|
2007-12-19 04:39:59 +01:00
|
|
|
/** Send command to widget
|
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Widget command. Syntax depends on specific widget.
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-12-16 10:25:13 +01:00
|
|
|
void
|
|
|
|
uicb_widget_tell(int screen, char *arg)
|
|
|
|
{
|
|
|
|
Widget *widget;
|
2008-02-17 08:16:40 +01:00
|
|
|
char *p, *property = NULL, *command;
|
2008-01-12 23:19:58 +01:00
|
|
|
ssize_t len;
|
2008-04-02 15:31:19 +02:00
|
|
|
widget_tell_status_t status;
|
2007-12-17 10:57:17 +01:00
|
|
|
|
2007-12-22 15:46:57 +01:00
|
|
|
if (!arg)
|
|
|
|
{
|
2007-12-17 10:57:17 +01:00
|
|
|
warn("Must specify a widget.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-12 23:15:28 +01:00
|
|
|
len = a_strlen(arg);
|
2007-12-16 10:25:13 +01:00
|
|
|
p = strtok(arg, " ");
|
2008-01-12 23:15:28 +01:00
|
|
|
if(!p)
|
2007-12-22 15:46:57 +01:00
|
|
|
{
|
2007-12-17 10:57:17 +01:00
|
|
|
warn("Ignoring malformed widget command.\n");
|
2007-12-16 10:25:13 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-12-22 15:46:57 +01:00
|
|
|
|
2007-12-22 20:55:17 +01:00
|
|
|
widget = widget_find(p, screen);
|
2008-01-12 23:15:28 +01:00
|
|
|
if(!widget)
|
2007-12-22 15:46:57 +01:00
|
|
|
{
|
2007-12-16 10:25:13 +01:00
|
|
|
warn("No such widget: %s\n", p);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-17 08:16:40 +01:00
|
|
|
p = strtok(NULL, " ");
|
|
|
|
if(!p)
|
|
|
|
{
|
|
|
|
warn("Ignoring malformed widget command.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
property = p;
|
2008-03-13 15:46:14 +01:00
|
|
|
p = p + a_strlen(p) + 1; /* could be out of 'arg' now */
|
2008-02-17 08:16:40 +01:00
|
|
|
|
2008-03-13 15:46:14 +01:00
|
|
|
/* arg + len points to the finishing \0.
|
|
|
|
* p to the char right of the first space (strtok delimiter)
|
|
|
|
*
|
|
|
|
* \0 is on the right(>) of p pointer => some text (command) */
|
|
|
|
if(arg + len > p)
|
2007-12-17 10:57:17 +01:00
|
|
|
{
|
2008-01-12 23:19:58 +01:00
|
|
|
len = a_strlen(p);
|
|
|
|
command = p_new(char, len + 1);
|
|
|
|
a_strncpy(command, len + 1, p, len);
|
2008-04-02 15:31:19 +02:00
|
|
|
status = widget->tell(widget, property, command);
|
2007-12-17 10:57:17 +01:00
|
|
|
p_delete(&command);
|
|
|
|
}
|
|
|
|
else
|
2008-04-02 15:31:19 +02:00
|
|
|
status = WIDGET_ERROR_NOVALUE;
|
2007-12-22 15:46:57 +01:00
|
|
|
|
2008-04-02 15:31:19 +02:00
|
|
|
switch(status)
|
|
|
|
{
|
|
|
|
case WIDGET_ERROR:
|
|
|
|
warn("error changing property %s of widget %s\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_NOVALUE:
|
|
|
|
warn("error changing property %s of widget %s, no value given\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_FORMAT_BOOL:
|
|
|
|
warn("error changing property %s of widget %s, must is boolean (0 or 1)\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_FORMAT_FONT:
|
|
|
|
warn("error changing property %s of widget %s, must be a valid font\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_FORMAT_COLOR:
|
|
|
|
warn("error changing property %s of widget %s, must be a valid color\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_FORMAT_SECTION:
|
|
|
|
warn("error changing property %s of widget %s, section/title not found\n",
|
|
|
|
property, widget->name);
|
|
|
|
break;
|
|
|
|
case WIDGET_NOERROR:
|
|
|
|
widget->cache.needs_update = True;
|
|
|
|
break;
|
|
|
|
case WIDGET_ERROR_CUSTOM:
|
|
|
|
break;
|
|
|
|
}
|
2007-12-16 10:25:13 +01:00
|
|
|
}
|
2007-12-16 09:34:33 +01:00
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|