awesome/widgets/progressbar.c

121 lines
3.3 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.
*
*/
#include <confuse.h>
#include "util.h"
#include "draw.h"
#include "widget.h"
#include "xutil.h"
extern AwesomeConf globalconf;
typedef struct
{
int percent;
int width;
XColor fg;
XColor bg;
} 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
{
int width, pwidth, margin, height;
2007-12-23 14:27:56 +01:00
Data *d = widget->data;
height = widget->statusbar->height / 2;
margin = (widget->statusbar->height - height) / 2 - 1;
2007-12-23 14:51:55 +01:00
width = d->width - (margin * 2);
2007-12-23 14:27:56 +01:00
widget->location = widget_calculate_offset(widget->statusbar->width,
d->width,
offset,
widget->alignment) + margin;
2007-12-23 14:27:56 +01:00
pwidth = d->percent ? (width * d->percent) / 100 : 0;
draw_rectangle(ctx,
widget->location + 1, margin,
2007-12-23 14:27:56 +01:00
width, height,
False, d->fg);
2007-12-23 14:51:55 +01:00
2007-12-23 14:27:56 +01:00
if(pwidth > 0)
draw_rectangle(ctx,
widget->location + 1, margin + 1,
2007-12-23 14:27:56 +01:00
pwidth, height - 2,
True, d->fg);
if(width - pwidth - 2 > 0)
draw_rectangle(ctx,
widget->location + pwidth + 2, margin + 1,
2007-12-23 14:27:56 +01:00
width - pwidth - 2, height - 2,
True, d->bg);
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;
int percent;
if(!command)
return;
percent = atoi(command);
if(percent <= 100 && percent >= 0)
d->percent = percent;
}
Widget *
progressbar_new(Statusbar *statusbar, cfg_t *config)
{
Widget *w;
Data *d;
char *color;
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");
d->percent = 0;
if((color = cfg_getstr(config, "fg")))
d->fg = initxcolor(statusbar->screen, color);
else
d->fg = globalconf.screens[statusbar->screen].colors_normal[ColFG];
if((color = cfg_getstr(config, "bg")))
d->bg = initxcolor(statusbar->screen, color);
else
d->bg = globalconf.screens[statusbar->screen].colors_normal[ColBG];
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80