aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_widget.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 11:19:43 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 11:19:43 +1000
commitf9c848e9851713d7a33962b9b4768c0a0d1751f1 (patch)
tree2b2caf1949078428ca3fd3cd47547d0485efa407 /src/gwin/gwin_widget.h
parentcfb1b2a488d5b1a9e14c889b80e5324d16f63f1b (diff)
downloaduGFX-f9c848e9851713d7a33962b9b4768c0a0d1751f1.tar.gz
uGFX-f9c848e9851713d7a33962b9b4768c0a0d1751f1.tar.bz2
uGFX-f9c848e9851713d7a33962b9b4768c0a0d1751f1.zip
Change color_t to gColor
Diffstat (limited to 'src/gwin/gwin_widget.h')
-rw-r--r--src/gwin/gwin_widget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gwin/gwin_widget.h b/src/gwin/gwin_widget.h
index c74eb877..309b62ec 100644
--- a/src/gwin/gwin_widget.h
+++ b/src/gwin/gwin_widget.h
@@ -35,10 +35,10 @@ struct GWidgetObject;
* @{
*/
typedef struct GColorSet {
- color_t text; /**< The text color */
- color_t edge; /**< The edge color */
- color_t fill; /**< The fill color */
- color_t progress; /**< The color of progress bars */
+ gColor text; /**< The text color */
+ gColor edge; /**< The edge color */
+ gColor fill; /**< The fill color */
+ gColor progress; /**< The color of progress bars */
} GColorSet;
/** @} */
@@ -50,8 +50,8 @@ typedef struct GColorSet {
* @{
*/
typedef struct GWidgetStyle {
- color_t background; /**< The window background color */
- color_t focus; /**< The color when a widget is focused */
+ gColor background; /**< The window background color */
+ gColor focus; /**< The color when a widget is focused */
GColorSet enabled; /**< The colors when enabled */
GColorSet disabled; /**< The colors when disabled */
GColorSet pressed; /**< The colors when pressed */