summaryrefslogtreecommitdiff
path: root/apps/gui/scrollbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/scrollbar.h')
-rw-r--r--apps/gui/scrollbar.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/gui/scrollbar.h b/apps/gui/scrollbar.h
index 03e1e6ec43..e5ffae79b0 100644
--- a/apps/gui/scrollbar.h
+++ b/apps/gui/scrollbar.h
@@ -28,12 +28,13 @@
28enum orientation { 28enum orientation {
29 VERTICAL = 0x0000, /* Vertical orientation */ 29 VERTICAL = 0x0000, /* Vertical orientation */
30 HORIZONTAL = 0x0001, /* Horizontal orientation */ 30 HORIZONTAL = 0x0001, /* Horizontal orientation */
31 INVERTFILL = 0x0002, /* Invert the fill direction */
31#ifdef HAVE_LCD_COLOR 32#ifdef HAVE_LCD_COLOR
32 FOREGROUND = 0x0002, /* Do not clear background pixels */ 33 FOREGROUND = 0x0020, /* Do not clear background pixels */
33 INNER_FILL = 0x0004, /* Fill inner part even if FOREGROUND */ 34 INNER_FILL = 0x0040, /* Fill inner part even if FOREGROUND */
34 INNER_BGFILL = 0x0008, /* Fill inner part with background 35 INNER_BGFILL = 0x0080, /* Fill inner part with background
35 color even if FOREGROUND */ 36 color even if FOREGROUND */
36 INNER_FILL_MASK = 0x000c, 37 INNER_FILL_MASK = 0x00c0,
37#endif 38#endif
38}; 39};
39 40