diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-15 21:43:43 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-15 21:43:43 +0000 |
commit | bef230cf7300c25d25351615be378e62785f78cf (patch) | |
tree | 6e2799b6464df37df69358ed5a482546c4135796 /widget_icon.h | |
parent | 0dc4d2093be753affc50d1ccb70fb9f5f66ed9b8 (diff) | |
download | lcd4linux-bef230cf7300c25d25351615be378e62785f78cf.tar.gz |
[lcd4linux @ 2004-02-15 21:43:43 by reinelt]
T6963 driver nearly finished
framework for graphic displays done
i2c_sensors patch from Xavier
some more old generation files removed
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@367 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'widget_icon.h')
-rw-r--r-- | widget_icon.h | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/widget_icon.h b/widget_icon.h index 9259836..ede84ea 100644 --- a/widget_icon.h +++ b/widget_icon.h @@ -1,4 +1,4 @@ -/* $Id: widget_icon.h,v 1.3 2004/02/04 19:11:44 reinelt Exp $ +/* $Id: widget_icon.h,v 1.4 2004/02/15 21:43:43 reinelt Exp $ * * icon widget handling * @@ -23,6 +23,12 @@ * * * $Log: widget_icon.h,v $ + * Revision 1.4 2004/02/15 21:43:43 reinelt + * T6963 driver nearly finished + * framework for graphic displays done + * i2c_sensors patch from Xavier + * some more old generation files removed + * * Revision 1.3 2004/02/04 19:11:44 reinelt * icon visibility patch from Xavier * @@ -39,15 +45,15 @@ #define _WIDGET_ICON_H_ typedef struct WIDGET_ICON { - char *speed_expr; // expression for update interval - int speed; // update interval (msec) - int ascii; // ascii code of icon (depends on the driver) - int curmap; // current bitmap sequence - int prvmap; // previous bitmap sequence - int maxmap; // number of bitmap sequences - char *bitmap; // bitmaps of (animated) icon - int visible; - char *visible_expr; + char *speed_expr; // expression for update interval + int speed; // update interval (msec) + int ascii; // ascii code of icon (depends on the driver) + int curmap; // current bitmap sequence + int prvmap; // previous bitmap sequence + int maxmap; // number of bitmap sequences + unsigned char *bitmap; // bitmaps of (animated) icon + int visible; // icon visible? + char *visible_expr; // expression for visibility } WIDGET_ICON; extern WIDGET_CLASS Widget_Icon; |