diff options
Diffstat (limited to 'widget.h')
-rw-r--r-- | widget.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: widget.h,v 1.19 2006/02/21 15:55:59 cmay Exp $ +/* $Id: widget.h,v 1.20 2006/08/08 20:16:29 harbaum Exp $ * * generic widget handling * @@ -23,6 +23,9 @@ * * * $Log: widget.h,v $ + * Revision 1.20 2006/08/08 20:16:29 harbaum + * Added "extracolor" (used for e.g. bar border) and RGB support for LEDMATRIX + * * Revision 1.19 2006/02/21 15:55:59 cmay * removed new update function for keypad, consolidated it with draw * @@ -124,8 +127,10 @@ typedef struct WIDGET { struct WIDGET *parent; RGBA fg_color; RGBA bg_color; + RGBA extra_color; int fg_valid; int bg_valid; + int extra_valid; int layer; int row; int col; |