aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_widget.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-08-14 23:51:28 +0200
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-08-14 23:51:28 +0200
commit668b161f0eead1b9687305281eb59be0e0713bbe (patch)
tree75bcf589f03dc528ed2ff960388d940fcf3a9b0d /src/gwin/gwin_widget.c
parent755b7a45ab517a303510b728a9c54e48f9216557 (diff)
downloaduGFX-668b161f0eead1b9687305281eb59be0e0713bbe.tar.gz
uGFX-668b161f0eead1b9687305281eb59be0e0713bbe.tar.bz2
uGFX-668b161f0eead1b9687305281eb59be0e0713bbe.zip
Adding color to widget style for focused widgets
Diffstat (limited to 'src/gwin/gwin_widget.c')
-rw-r--r--src/gwin/gwin_widget.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/gwin/gwin_widget.c b/src/gwin/gwin_widget.c
index c536b88a..f135b306 100644
--- a/src/gwin/gwin_widget.c
+++ b/src/gwin/gwin_widget.c
@@ -24,13 +24,14 @@ static GListener gl;
// Our default style - a white background theme
const GWidgetStyle WhiteWidgetStyle = {
HTML2COLOR(0xFFFFFF), // window background
+ HTML2COLOR(0x2A8FCD), // focused
// enabled color set
{
HTML2COLOR(0x000000), // text
HTML2COLOR(0x404040), // edge
HTML2COLOR(0xE0E0E0), // fill
- HTML2COLOR(0xE0E0E0), // progress - inactive area
+ HTML2COLOR(0xE0E0E0) // progress - inactive area
},
// disabled color set
@@ -38,7 +39,7 @@ const GWidgetStyle WhiteWidgetStyle = {
HTML2COLOR(0xC0C0C0), // text
HTML2COLOR(0x808080), // edge
HTML2COLOR(0xE0E0E0), // fill
- HTML2COLOR(0xC0E0C0), // progress - active area
+ HTML2COLOR(0xC0E0C0) // progress - active area
},
// pressed color set
@@ -46,20 +47,21 @@ const GWidgetStyle WhiteWidgetStyle = {
HTML2COLOR(0x404040), // text
HTML2COLOR(0x404040), // edge
HTML2COLOR(0x808080), // fill
- HTML2COLOR(0x00E000), // progress - active area
- },
+ HTML2COLOR(0x00E000) // progress - active area
+ }
};
/* Our black style */
const GWidgetStyle BlackWidgetStyle = {
HTML2COLOR(0x000000), // window background
+ HTML2COLOR(0x2A8FCD), // focused
// enabled color set
{
HTML2COLOR(0xC0C0C0), // text
HTML2COLOR(0xC0C0C0), // edge
HTML2COLOR(0x606060), // fill
- HTML2COLOR(0x404040), // progress - inactive area
+ HTML2COLOR(0x404040) // progress - inactive area
},
// disabled color set
@@ -67,7 +69,7 @@ const GWidgetStyle BlackWidgetStyle = {
HTML2COLOR(0x808080), // text
HTML2COLOR(0x404040), // edge
HTML2COLOR(0x404040), // fill
- HTML2COLOR(0x004000), // progress - active area
+ HTML2COLOR(0x004000) // progress - active area
},
// pressed color set
@@ -75,8 +77,8 @@ const GWidgetStyle BlackWidgetStyle = {
HTML2COLOR(0xFFFFFF), // text
HTML2COLOR(0xC0C0C0), // edge
HTML2COLOR(0xE0E0E0), // fill
- HTML2COLOR(0x008000), // progress - active area
- },
+ HTML2COLOR(0x008000) // progress - active area
+ }
};
static const GWidgetStyle * defaultStyle = &BlackWidgetStyle;