summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/pdbox-gui.c
diff options
context:
space:
mode:
authorWincent Balin <wincent@rockbox.org>2009-08-17 15:30:02 +0000
committerWincent Balin <wincent@rockbox.org>2009-08-17 15:30:02 +0000
commitca3104a484c1cfae6f99e0eb773abe88f42298e3 (patch)
treeb9f9f883d18268d5fdc9cef6e5d7eebf36607c66 /apps/plugins/pdbox/pdbox-gui.c
parente251df9089c9ca2de14d0c8ab8a305dc9e1cd6c5 (diff)
PDBox: Made GUI use default back- and foreground colors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22380 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/pdbox-gui.c')
-rw-r--r--apps/plugins/pdbox/pdbox-gui.c42
1 files changed, 24 insertions, 18 deletions
diff --git a/apps/plugins/pdbox/pdbox-gui.c b/apps/plugins/pdbox/pdbox-gui.c
index a03e97c361..33d15ab661 100644
--- a/apps/plugins/pdbox/pdbox-gui.c
+++ b/apps/plugins/pdbox/pdbox-gui.c
@@ -24,9 +24,6 @@
#include "lib/xlcd.h"
-/* Declare back- and foreground colors. */
-#define BGCOLOR (LCD_BLACK)
-#define FGCOLOR (LCD_WHITE)
/* Button colors. */
#define BTNCOLOR_DARK (LCD_DARKGRAY)
#define BTNCOLOR_LIGHT (LCD_LIGHTGRAY)
@@ -38,6 +35,10 @@ extern bool quit;
/* Screen multiplier. */
static float screen_multiplier;
+/* Back- and foreground colors. */
+static unsigned bgcolor;
+static unsigned fgcolor;
+
/* Displacement of the slanted corner in the contour of the number widget. */
static int number_corner;
@@ -157,13 +158,18 @@ void pd_gui_init(void)
screen_multiplier = ((float) LCD_WIDTH) / 160.0f;
number_corner = 5 * screen_multiplier;
- /* Set back- and foreground color. */
- rb->lcd_set_background(BGCOLOR);
- rb->lcd_set_foreground(FGCOLOR);
+ /* Get back- and foreground colors. */
+ bgcolor = rb->lcd_get_background();
+ fgcolor = rb->lcd_get_foreground();
/* Clear background. */
rb->lcd_clear_display();
+ /* Draw background of appropriate color. */
+ rb->lcd_set_foreground(bgcolor);
+ rb->lcd_fillrect(0, 0, LCD_WIDTH, LCD_HEIGHT);
+ rb->lcd_set_foreground(fgcolor);
+
/* Update display. */
rb->lcd_update();
}
@@ -411,7 +417,7 @@ unsigned int pd_gui_load_patch(struct pd_widget* wg, unsigned int max_widgets)
void pd_gui_draw_standard(void)
{
/* Draw main circle. */
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
fillcircle(LCD_WIDTH / 2,
LCD_HEIGHT / 2,
2 * MIN(LCD_WIDTH, LCD_HEIGHT) / 5);
@@ -444,7 +450,7 @@ void pd_gui_draw_standard(void)
MIN(LCD_WIDTH, LCD_HEIGHT) / 8);
/* Restore foreground color. */
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
}
/* Draw custom user interface. */
@@ -460,9 +466,9 @@ void pd_gui_draw_custom(struct pd_widget* wg, unsigned int widgets)
{
case PD_BANG:
/* Clear area to (re-)draw. */
- rb->lcd_set_foreground(BGCOLOR);
+ rb->lcd_set_foreground(bgcolor);
rb->lcd_fillrect(wg->x, wg->y, wg->w, wg->h);
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
/* Draw border (rectangle). */
rb->lcd_drawrect(wg->x, wg->y, wg->w, wg->h);
/* Draw button (circle), being filled depending on value. */
@@ -478,9 +484,9 @@ void pd_gui_draw_custom(struct pd_widget* wg, unsigned int widgets)
case PD_VSLIDER:
/* Clear area to (re-)draw. */
- rb->lcd_set_foreground(BGCOLOR);
+ rb->lcd_set_foreground(bgcolor);
rb->lcd_fillrect(wg->x, wg->y, wg->w, wg->h);
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
/* Draw border. */
rb->lcd_drawrect(wg->x, wg->y, wg->w, wg->h);
/* Draw slider. */
@@ -491,9 +497,9 @@ void pd_gui_draw_custom(struct pd_widget* wg, unsigned int widgets)
case PD_HSLIDER:
/* Clear area to (re-)draw. */
- rb->lcd_set_foreground(BGCOLOR);
+ rb->lcd_set_foreground(bgcolor);
rb->lcd_fillrect(wg->x, wg->y, wg->w, wg->h);
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
/* Draw border. */
rb->lcd_drawrect(wg->x, wg->y, wg->w, wg->h);
/* Draw slider. */
@@ -504,9 +510,9 @@ void pd_gui_draw_custom(struct pd_widget* wg, unsigned int widgets)
case PD_HRADIO:
/* Clear area to (re-)draw. */
- rb->lcd_set_foreground(BGCOLOR);
+ rb->lcd_set_foreground(bgcolor);
rb->lcd_fillrect(wg->x, wg->y, wg->w, wg->h);
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
for(j = 0; j < wg->w / wg->h; j++)
{
/* Draw border. */
@@ -520,9 +526,9 @@ void pd_gui_draw_custom(struct pd_widget* wg, unsigned int widgets)
case PD_VRADIO:
/* Clear area to (re-)draw. */
- rb->lcd_set_foreground(BGCOLOR);
+ rb->lcd_set_foreground(bgcolor);
rb->lcd_fillrect(wg->x, wg->y, wg->w, wg->h);
- rb->lcd_set_foreground(FGCOLOR);
+ rb->lcd_set_foreground(fgcolor);
for(j = 0; j < wg->h / wg->w; j++)
{
/* Draw border. */