2008-01-06 18:23:56 +01:00
|
|
|
/*
|
|
|
|
* graph.c - a graph widget
|
|
|
|
*
|
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
|
|
|
* Copyright © 2007-2008 Marco Candrian <mac@calmar.ws>
|
|
|
|
*
|
|
|
|
* 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 "util.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "widget.h"
|
|
|
|
#include "xutil.h"
|
|
|
|
#include "screen.h"
|
|
|
|
|
|
|
|
extern AwesomeConf globalconf;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int percent; /* Percent 0 to 100 */
|
|
|
|
int width; /* Width of the widget */
|
|
|
|
int padding_left; /* Left padding */
|
|
|
|
float height; /* Height 0-1, where 1 is height of statusbar */
|
|
|
|
XColor fg; /* Foreground color */
|
|
|
|
XColor bg; /* Background color */
|
|
|
|
XColor bordercolor; /* Border color */
|
|
|
|
|
|
|
|
int *lines; /* keeps the calculated values (line-length); */
|
|
|
|
int lines_index; /* pointer to current val */
|
|
|
|
int lines_size; /* size of lines-array */
|
2008-01-07 09:28:07 +01:00
|
|
|
float *line_values; /* actual values */
|
|
|
|
int line_max_index; /* index of the current maximum value */
|
|
|
|
int line_max; /* maximum value */
|
2008-01-06 18:23:56 +01:00
|
|
|
} Data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
graph_draw(Widget *widget, DrawCtx *ctx, int offset,
|
|
|
|
int used __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
int width, height; /* width/height (pixel) to draw the outer box */
|
|
|
|
int margin_top, left_offset;
|
|
|
|
Data *d = widget->data;
|
|
|
|
|
|
|
|
width = d->lines_size + 2;
|
|
|
|
|
|
|
|
if(!widget->user_supplied_x)
|
|
|
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
|
|
|
d->width,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
|
|
|
if(!widget->user_supplied_y)
|
|
|
|
widget->area.y = 0;
|
|
|
|
|
|
|
|
margin_top = (int) (widget->statusbar->height * (1 - d->height)) / 2 + 0.5 + widget->area.y;
|
|
|
|
height = (int) (widget->statusbar->height * d->height + 0.5);
|
|
|
|
left_offset = widget->area.x + d->padding_left;
|
|
|
|
|
|
|
|
draw_rectangle(ctx,
|
|
|
|
left_offset, margin_top,
|
|
|
|
width, height,
|
|
|
|
False, d->bordercolor);
|
|
|
|
|
|
|
|
draw_rectangle(ctx,
|
|
|
|
left_offset + 1, margin_top + 1,
|
|
|
|
width - 2, height - 2,
|
|
|
|
True, d->bg);
|
|
|
|
|
|
|
|
/* computes line-length to draw and store into lines[] */
|
|
|
|
d->lines[d->lines_index] = (int) (d->percent) * (height - 2 ) / 100 + 0.5;
|
|
|
|
|
|
|
|
if(d->lines[d->lines_index] < 0)
|
|
|
|
d->lines[d->lines_index] = 0;
|
|
|
|
|
|
|
|
draw_graph(ctx,
|
|
|
|
left_offset + 2, margin_top + height - 1,
|
|
|
|
d->lines_size, d->lines, d->lines_index,
|
|
|
|
d->fg);
|
|
|
|
|
|
|
|
widget->area.width = d->width;
|
|
|
|
widget->area.height = widget->statusbar->height;
|
|
|
|
return widget->area.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
graph_tell(Widget *widget, char *command)
|
|
|
|
{
|
|
|
|
Data *d = widget->data;
|
2008-01-07 09:28:07 +01:00
|
|
|
int percent, i, height, omax, nmax;
|
|
|
|
|
|
|
|
height = (int) (widget->statusbar->height * d->height + 0.5);
|
2008-01-06 18:23:56 +01:00
|
|
|
|
|
|
|
if(!command || d->width < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(++d->lines_index >= d->lines_size) /* cycle inside the array */
|
|
|
|
d->lines_index = 0;
|
|
|
|
|
2008-01-07 09:28:07 +01:00
|
|
|
if (d->line_values && d->line_max_index == d->lines_index &&
|
|
|
|
d->line_values[d->line_max_index]) {
|
|
|
|
omax = d->line_values[d->line_max_index];
|
|
|
|
d->line_values[d->line_max_index] = 0;
|
|
|
|
for (i = 0; i < d->lines_size; i++)
|
|
|
|
if (d->line_values[i] > d->line_values[d->line_max_index]) {
|
|
|
|
d->line_max_index = i;
|
|
|
|
}
|
|
|
|
nmax = MAX(d->line_values[d->line_max_index], d->line_max);
|
|
|
|
if (d->line_values[d->line_max_index]) {
|
|
|
|
for (i = 0; i < d->lines_size; i++) {
|
|
|
|
d->lines[i] = (int) (100*d->line_values[i] / nmax) * (height -
|
|
|
|
2) / 100 + 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-06 18:23:56 +01:00
|
|
|
percent = atoi(command);
|
2008-01-07 09:28:07 +01:00
|
|
|
if (percent < 0)
|
|
|
|
{
|
|
|
|
if (d->line_values)
|
|
|
|
d->line_values[d->lines_index] = 0;
|
|
|
|
d->percent = 0;
|
|
|
|
}
|
|
|
|
else if (d->line_values)
|
|
|
|
{
|
|
|
|
d->line_values[d->lines_index] = percent;
|
|
|
|
nmax = MAX(d->line_max, d->line_values[d->line_max_index]);
|
|
|
|
if (d->line_values[d->line_max_index] < percent) {
|
|
|
|
// Increase the current max
|
|
|
|
d->line_max_index = d->lines_index;
|
|
|
|
if (d->line_max < d->line_values[d->line_max_index]) {
|
|
|
|
for (i = 0; i < d->lines_size; i++) {
|
|
|
|
d->lines[i] = (int)
|
|
|
|
(100*d->line_values[i]/d->line_values[d->line_max_index])
|
|
|
|
* (height - 2) / 100 + 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
d->percent = (int) (100.0 * d->line_values[d->lines_index] / nmax);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
d->percent = (percent > d->line_max ? 100 :
|
|
|
|
(int) (100 * ((float)percent) / d->line_max));
|
|
|
|
}
|
2008-01-06 18:23:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
|
|
|
graph_new(Statusbar *statusbar, cfg_t *config)
|
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
Data *d;
|
|
|
|
char *color;
|
|
|
|
int phys_screen = get_phys_screen(statusbar->screen);
|
|
|
|
|
|
|
|
w = p_new(Widget, 1);
|
|
|
|
widget_common_new(w, statusbar, config);
|
|
|
|
|
|
|
|
w->draw = graph_draw;
|
|
|
|
w->tell = graph_tell;
|
|
|
|
d = w->data = p_new(Data, 1);
|
|
|
|
|
|
|
|
d->height = cfg_getfloat(config, "height");
|
|
|
|
d->width = cfg_getint(config, "width");
|
|
|
|
d->padding_left = cfg_getint(config, "padding_left");
|
|
|
|
|
|
|
|
d->lines_size = d->width - d->padding_left - 2;
|
|
|
|
d->lines_index = -1; /* graph_tell will increment it to 0 (to begin with...) */
|
|
|
|
|
|
|
|
if(d->lines_size < 1)
|
|
|
|
{
|
|
|
|
warn("graph widget needs: (width - padding_left) >= 3\n");
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->lines = p_new(int, d->lines_size);
|
2008-01-07 09:28:07 +01:00
|
|
|
if (cfg_getbool(config, "scale"))
|
|
|
|
d->line_values = p_new(float, d->lines_size);
|
|
|
|
d->line_max = cfg_getfloat(config, "max");
|
2008-01-06 18:23:56 +01:00
|
|
|
|
|
|
|
if((color = cfg_getstr(config, "fg")))
|
|
|
|
d->fg = initxcolor(phys_screen, color);
|
|
|
|
else
|
|
|
|
d->fg = globalconf.screens[statusbar->screen].colors_normal[ColFG];
|
|
|
|
|
|
|
|
if((color = cfg_getstr(config, "bg")))
|
|
|
|
d->bg = initxcolor(phys_screen, color);
|
|
|
|
else
|
|
|
|
d->bg = globalconf.screens[statusbar->screen].colors_normal[ColBG];
|
|
|
|
|
|
|
|
if((color = cfg_getstr(config, "bordercolor")))
|
|
|
|
d->bordercolor = initxcolor(phys_screen, color);
|
|
|
|
else
|
|
|
|
d->bordercolor = d->fg;
|
|
|
|
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|