aboutsummaryrefslogtreecommitdiffstats
path: root/widget_bar.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
commitdbf5d92605a9db10e3e3cb154d03a515c5d5c5af (patch)
tree501d5dda3ce90fe924b893e487d9ef9f0683382b /widget_bar.h
parenta1c471e9fb7cadb68bb182ab2e9715a0aa092386 (diff)
downloadlcd4linux-dbf5d92605a9db10e3e3cb154d03a515c5d5c5af.tar.gz
[lcd4linux @ 2005-05-08 04:32:43 by reinelt]
CodingStyle added and applied git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@547 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'widget_bar.h')
-rw-r--r--widget_bar.h39
1 files changed, 21 insertions, 18 deletions
diff --git a/widget_bar.h b/widget_bar.h
index 6cb31c6..898e6d2 100644
--- a/widget_bar.h
+++ b/widget_bar.h
@@ -1,4 +1,4 @@
-/* $Id: widget_bar.h,v 1.7 2005/05/06 06:37:34 reinelt Exp $
+/* $Id: widget_bar.h,v 1.8 2005/05/08 04:32:45 reinelt Exp $
*
* bar widget handling
*
@@ -23,6 +23,9 @@
*
*
* $Log: widget_bar.h,v $
+ * Revision 1.8 2005/05/08 04:32:45 reinelt
+ * CodingStyle added and applied
+ *
* Revision 1.7 2005/05/06 06:37:34 reinelt
* hollow bar patch from geronet
*
@@ -58,26 +61,26 @@
#ifndef _WIDGET_BAR_H_
#define _WIDGET_BAR_H_
-typedef enum { DIR_EAST=1, DIR_WEST=2, DIR_NORTH=4, DIR_SOUTH=8 } DIRECTION;
+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 {
- char *expression1; /* expression that delivers the value */
- char *expression2; /* expression that delivers the value */
- char *expr_min; /* expression that delivers the minimum value */
- char *expr_max; /* expression that delivers the maximum value */
- void *tree1; /* pre-compiled expression that delivers the value */
- void *tree2; /* pre-compiled expression that delivers the value */
- void *tree_min; /* pre-compiled expression that delivers the minimum value */
- void *tree_max; /* pre-compiled expression that delivers the 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 */
+ char *expression1; /* expression that delivers the value */
+ char *expression2; /* expression that delivers the value */
+ char *expr_min; /* expression that delivers the minimum value */
+ char *expr_max; /* expression that delivers the maximum value */
+ void *tree1; /* pre-compiled expression that delivers the value */
+ void *tree2; /* pre-compiled expression that delivers the value */
+ void *tree_min; /* pre-compiled expression that delivers the minimum value */
+ void *tree_max; /* pre-compiled expression that delivers the 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 */
} WIDGET_BAR;