aboutsummaryrefslogtreecommitdiffstats
path: root/widget_bar.h
blob: 9f3c2802fc23c0eeaa2f599d8cbeebc213118e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* $Id$
 * $URL$
 *
 * bar widget handling
 *
 * Copyright (C) 2003, 2004 Michael Reinelt <michael@reinelt.co.at>
 * Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux 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, or (at your option)
 * any later version.
 *
 * LCD4Linux 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */


#ifndef _WIDGET_BAR_H_
#define _WIDGET_BAR_H_

#include "property.h"

typedef enum { DIR_EAST = 1, DIR_WEST = 2, DIR_NORTH = 4, DIR_SOUTH = 8 } DIRECTION;
typedef enum { STYLE_HOLLOW = 1, STYLE_FIRST = 2, STYLE_LAST = 4 } STYLE;

typedef struct WIDGET_BAR {
    PROPERTY expression1;	/* value (length) of upper half */
    PROPERTY expression2;	/* value (length) of lower half */
    PROPERTY expr_min;		/* explicit minimum value */
    PROPERTY expr_max;		/* explicit maximum value */
    DIRECTION direction;	/* bar direction */
    STYLE style;		/* bar style (hollow) */
    int length;			/* bar length */
    int update;			/* update interval (msec) */
    double val1;		/* bar value, 0.0 ... 1.0 */
    double val2;		/* bar value, 0.0 ... 1.0 */
    double min;			/* minimum value */
    double max;			/* maximum value */
    RGBA color[2];		/* bar colors */
    int color_valid[2];		/* bar color is valid */
} WIDGET_BAR;


extern WIDGET_CLASS Widget_Bar;

#endif
0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/* $Id$
 * $URL$
 *
 * bar widget handling
 *
 * Copyright (C) 2003, 2004 Michael Reinelt <michael@reinelt.co.at>
 * Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * 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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

/* 
 * exported functions:
 *
 * WIDGET_CLASS Widget_Bar
 *   the bar widget
 *
 */


#include "config.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>

#include "debug.h"
#include "cfg.h"
#include "property.h"
#include "timer.h"
#include "widget.h"
#include "widget_bar.h"

#ifdef WITH_DMALLOC
#include <dmalloc.h>
#endif


void widget_bar_update(void *Self)
{
    WIDGET *W = (WIDGET *) Self;
    WIDGET_BAR *Bar = W->data;

    double val1, val2;
    double min, max;

    /* evaluate properties */
    property_eval(&Bar->expression1);
    val1 = P2N(&Bar->expression1);

    if (property_valid(&Bar->expression2)) {
	property_eval(&Bar->expression2);
	val2 = P2N(&Bar->expression2);
    } else {
	val2 = val1;
    }

    /* minimum: if expression is empty, do auto-scaling */
    if (property_valid(&Bar->expr_min)) {
	if (0 != property_eval(&Bar->expr_min)) {
	    info("widget bar %s: Property min changed to %G", W->name, P2N(&Bar->expr_min));
	}
	min = P2N(&Bar->expr_min);
    } else {
	min = Bar->min;
	if (val1 < min) {
	    min = val1;
	    info("widget bar %s: new min value %G", W->name, min);
	}
	if (val2 < min) {
	    min = val2;
	    info("widget bar %s: new min value %G", W->name, min);
	}
    }

    /* maximum: if expression is empty, do auto-scaling */
    if (property_valid(&Bar->expr_max)) {
	if (0 != property_eval(&Bar->expr_max)) {
	    info("widget bar %s: Property max changed to %G", W->name, P2N(&Bar->expr_max));
	}
	max = P2N(&Bar->expr_max);
    } else {
	max = Bar->max;
	if (val1 > max) {
	    max = val1;
	    info("widget bar %s: new max value %G", W->name, max);
	}
	if (val2 > max) {
	    max = val2;
	    info("widget bar %s: new max value %G", W->name, max);
	}
    }

    /* calculate bar values */
    Bar->min = min;
    Bar->max = max;
    if (max > min) {
	Bar->val1 = (val1 - min) / (max - min);
	Bar->val2 = (val2 - min) / (max - min);
    } else {
	Bar->val1 = 0.0;
	Bar->val2 = 0.0;
    }

    /* finally, draw it! */
    if (W->class->draw)
	W->class->draw(W);

}


int widget_bar_init(WIDGET * Self)
{
    char *section;
    char *c;
    WIDGET_BAR *Bar;

    /* prepare config section */
    /* strlen("Widget:")=7 */
    section = malloc(strlen(Self->name) + 8);
    strcpy(section, "Widget:");
    strcat(section, Self->name);

    Bar = malloc(sizeof(WIDGET_BAR));
    memset(Bar, 0, sizeof(WIDGET_BAR));

    /* load properties */
    property_load(section, "expression", NULL, &Bar->expression1);
    property_load(section, "expression2", NULL, &Bar->expression2);
    property_load(section, "min", NULL, &Bar->expr_min);
    property_load(section, "max", NULL, &Bar->expr_max);

    /* sanity checks */
    if (!property_valid(&Bar->expression1)) {
	error("Warning: widget %s has no expression", section);
    }

    /* bar length, default 1 */
    cfg_number(section, "length", 1, 0, -1, &(Bar->length));

    /* direction: East (default), West, North, South */
    c = cfg_get(section, "direction", "E");
    switch (toupper(*c)) {
    case 'E':
	Bar->direction = DIR_EAST;
	break;
    case 'W':
	Bar->direction = DIR_WEST;
	break;
    case 'N':
	Bar->direction = DIR_NORTH;
	break;
    case 'S':
	Bar->direction = DIR_SOUTH;
	break;
    default:
	error("widget %s has unknown direction '%s'; known directions: 'E', 'W', 'N', 'S'; using 'E(ast)'", Self->name,
	      c);
	Bar->direction = DIR_EAST;
    }
    free(c);

    /* style: none (default), hollow */
    c = cfg_get(section, "style", "0");
    switch (toupper(*c)) {
    case 'H':
	Bar->style = STYLE_HOLLOW;
	if (!(Bar->direction & (DIR_EAST | DIR_WEST))) {
	    error("widget %s with style \"hollow\" not implemented for other directions than E(ast) or W(est)",
		  Self->name);
	    Bar->style = 0;
	}
	break;
    case '0':
	Bar->style = 0;
	break;
    default:
	error("widget %s has unknown style '%s'; known styles: '0' or 'H'; using '0'", Self->name, c);
	Bar->style = 0;
    }
    free(c);

    /* update interval (msec), default 1 sec */
    cfg_number(section, "update", 1000, 10, -1, &(Bar->update));

    /* get widget special colors */
    Bar->color_valid[0] = widget_color(section, Self->name, "barcolor0", &Bar->color[0]);
    Bar->color_valid[1] = widget_color(section, Self->name, "barcolor1", &Bar->color[1]);

    free(section);
    Self->data = Bar;

    timer_add(widget_bar_update, Self, Bar->update, 0);

    return 0;
}


int widget_bar_quit(WIDGET * Self)
{
    if (Self) {
	if (Self->data) {
	    WIDGET_BAR *Bar = Self->data;
	    property_free(&Bar->expression1);
	    property_free(&Bar->expression2);
	    property_free(&Bar->expr_min);
	    property_free(&Bar->expr_max);
	    free(Self->data);
	}
	Self->data = NULL;
    }


    return 0;

}



WIDGET_CLASS Widget_Bar = {
    .name = "bar",
    .type = WIDGET_TYPE_RC,
    .init = widget_bar_init,
    .draw = NULL,
    .quit = widget_bar_quit,
};