aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/elistbox.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-09 00:13:20 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-09 00:13:20 +0000
commit612e765ceb09fce886ffc02120f039f7d880048f (patch)
tree2b0bb67fe3e1a4e81b21b12bd57293caf1038c23 /lib/gui/elistbox.h
parentbae4b8c8df551c8a32ce9611ad1691ccb405791a (diff)
downloadenigma2-612e765ceb09fce886ffc02120f039f7d880048f.tar.gz
enigma2-612e765ceb09fce886ffc02120f039f7d880048f.zip
add foregroundcolor selected and backgroundcolor selected to local listbox
styles (backgroundColorSelected, foregroundColorSelected in skin) add EntryForegroundColorSelected support to GraphMultiEPG add possibility to set selected foregroundcolor for listboxmulticontent entries
Diffstat (limited to 'lib/gui/elistbox.h')
-rw-r--r--lib/gui/elistbox.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/gui/elistbox.h b/lib/gui/elistbox.h
index 20f23b5b..e3234322 100644
--- a/lib/gui/elistbox.h
+++ b/lib/gui/elistbox.h
@@ -59,8 +59,8 @@ struct eListboxStyle
{
ePtr<gPixmap> m_background, m_selection;
int m_transparent_background;
- gRGB m_background_color, m_foreground_color;
- int m_background_color_set, m_foreground_color_set;
+ gRGB m_background_color, m_background_color_selected, m_foreground_color, m_foreground_color_selected;
+ int m_background_color_set, m_foreground_color_set, m_background_color_selected_set, m_foreground_color_selected_set;
/*
{m_transparent_background m_background_color_set m_background}
@@ -120,7 +120,9 @@ public:
void setSelectionEnable(int en);
void setBackgroundColor(gRGB &col);
+ void setBackgroundColorSelected(gRGB &col);
void setForegroundColor(gRGB &col);
+ void setForegroundColorSelected(gRGB &col);
void setBackgroundPicture(ePtr<gPixmap> &pixmap);
void setSelectionPicture(ePtr<gPixmap> &pixmap);