awesome/widgets/progressbar.c

178 lines
4.9 KiB
C
Raw Normal View History

2007-12-23 14:27:56 +01:00
/*
* progressbar.c - progress bar widget
*
* Copyright © 2007 Julien Danjou <julien@danjou.info>
*
* 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.
*
*/
2008-01-01 15:33:30 +01:00
#include <string.h>
2007-12-23 14:27:56 +01:00
#include "util.h"
#include "draw.h"
#include "widget.h"
#include "xutil.h"
extern AwesomeConf globalconf;
typedef struct
{
2008-01-01 16:23:28 +01:00
/** Percent 0 to 100 */
int *percent;
/** Width of the bars */
int width;
/** Left padding */
int lpadding;
/** Pixel between bars */
int gap;
/** Number of bars */
int bars;
/** Height 0-1, where 1 is height of statusbar */
float height;
/** Foreground color */
2008-01-01 15:33:30 +01:00
XColor *fg;
2008-01-01 16:23:28 +01:00
/** Background color */
2008-01-01 15:33:30 +01:00
XColor *bg;
2008-01-01 16:23:28 +01:00
/** Border color */
XColor *bcolor;
2007-12-23 14:27:56 +01:00
} Data;
static int
progressbar_draw(Widget *widget, DrawCtx *ctx, int offset,
2007-12-23 14:51:55 +01:00
int used __attribute__ ((unused)))
2007-12-23 14:27:56 +01:00
{
2008-01-01 15:33:30 +01:00
int i, width, pwidth, margin_top, pb_height, left_offset;
2007-12-23 14:27:56 +01:00
Data *d = widget->data;
2008-01-01 15:33:30 +01:00
if (!(d->bars))
return 0;
margin_top = (int) (widget->statusbar->height * (1 - d->height)) / 2 + 0.5;
pb_height = (int) (widget->statusbar->height * d->height - (d->gap * (d->bars - 1))) / d->bars + 0.5;
2007-12-23 14:51:55 +01:00
2008-01-01 15:33:30 +01:00
width = d->width - d->lpadding;
2007-12-23 14:27:56 +01:00
widget->location = widget_calculate_offset(widget->statusbar->width,
2008-01-01 16:23:28 +01:00
d->width,
offset,
widget->alignment);
2007-12-23 14:27:56 +01:00
2008-01-01 15:33:30 +01:00
left_offset = widget->location + d->lpadding;
2007-12-23 14:27:56 +01:00
2008-01-01 15:33:30 +01:00
for (i = 0; i < d->bars; i++)
{
pwidth = (int) d->percent[i] ? ((width - 2) * d->percent[i]) / 100 : 0;
2007-12-23 14:51:55 +01:00
2007-12-23 14:27:56 +01:00
draw_rectangle(ctx,
2008-01-01 16:23:28 +01:00
left_offset, margin_top,
width, pb_height,
False, d->bcolor[i]);
2007-12-23 14:27:56 +01:00
2008-01-01 15:33:30 +01:00
if(pwidth > 0)
draw_rectangle(ctx,
2008-01-01 16:23:28 +01:00
left_offset + 1, margin_top + 1,
pwidth, pb_height - 2,
True, d->fg[i]);
2008-01-01 15:33:30 +01:00
if(width - 2 - pwidth > 0) /* not filled area */
draw_rectangle(ctx,
2008-01-01 16:23:28 +01:00
left_offset + 1 + pwidth, margin_top + 1,
width - 2 - pwidth, pb_height - 2,
True, d->bg[i]);
2008-01-01 15:33:30 +01:00
margin_top += (pb_height + d->gap);
}
2007-12-23 14:27:56 +01:00
widget->width = d->width;
return widget->width;
2007-12-23 14:27:56 +01:00
}
static void
progressbar_tell(Widget *widget, char *command)
{
Data *d = widget->data;
2008-01-01 16:23:28 +01:00
int i = 0, percent;
2008-01-01 15:33:30 +01:00
char * tok;
2008-01-01 16:23:28 +01:00
if(!command || !d->bars)
2007-12-23 14:27:56 +01:00
return;
for (tok = strtok(command, ","); tok && i < d->bars; tok = strtok(NULL, ","), i++)
2008-01-01 15:33:30 +01:00
{
percent = atoi(tok);
if(percent <= 100 && percent >= 0)
d->percent[i] = percent;
}
2007-12-23 14:27:56 +01:00
}
Widget *
progressbar_new(Statusbar *statusbar, cfg_t *config)
{
Widget *w;
Data *d;
char *color;
2008-01-01 16:23:28 +01:00
int i;
2008-01-01 15:33:30 +01:00
cfg_t *cfg;
2007-12-23 14:27:56 +01:00
w = p_new(Widget, 1);
widget_common_new(w, statusbar, config);
w->draw = progressbar_draw;
w->tell = progressbar_tell;
d = w->data = p_new(Data, 1);
d->width = cfg_getint(config, "width");
2008-01-01 15:33:30 +01:00
2008-01-01 16:23:28 +01:00
if(!(d->bars = cfg_size(config, "bar")))
2008-01-01 15:33:30 +01:00
{
warn("progressbar widget needs at least one bar section\n");
2008-01-01 15:33:30 +01:00
return w;
}
2008-01-01 16:23:28 +01:00
d->bg = p_new(XColor, d->bars);
d->fg = p_new(XColor, d->bars);
d->bcolor = p_new(XColor, d->bars);
d->percent = p_new(int, d->bars);
for(i = 0; i < d->bars; i++)
2008-01-01 15:33:30 +01:00
{
cfg = cfg_getnsec(config, "bar", i);
if((color = cfg_getstr(cfg, "fg")))
d->fg[i] = initxcolor(statusbar->screen, color);
else
d->fg[i] = globalconf.screens[statusbar->screen].colors_normal[ColFG];
if((color = cfg_getstr(cfg, "bg")))
d->bg[i] = initxcolor(statusbar->screen, color);
else
d->bg[i] = globalconf.screens[statusbar->screen].colors_normal[ColBG];
if((color = cfg_getstr(cfg, "bcolor")))
d->bcolor[i] = initxcolor(statusbar->screen, color);
else
2008-01-01 16:58:13 +01:00
d->bcolor[i] = d->fg[i];
2008-01-01 15:33:30 +01:00
}
d->height = cfg_getfloat(config, "height");
d->gap = cfg_getint(config, "gap");
d->lpadding = cfg_getint(config, "lpadding");
2007-12-23 14:27:56 +01:00
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80