From c00d4ea326e61d76d7ab5760a5c06646d6b88ab0 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 9 Sep 2000 14:57:43 +0200 Subject: Implemented 'channel grouping' --- osd.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'osd.h') diff --git a/osd.h b/osd.h index 1d4f4cf0..1fd4b209 100644 --- a/osd.h +++ b/osd.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.h 1.9 2000/05/27 15:35:41 kls Exp $ + * $Id: osd.h 1.10 2000/09/03 14:50:22 kls Exp $ */ #ifndef __OSD_H @@ -37,13 +37,17 @@ private: eOSState state; protected: bool fresh; + bool userColor; + eDvbColor fgColor, bgColor; public: cOsdItem(eOSState State = osUnknown); cOsdItem(char *Text, eOSState State = osUnknown); virtual ~cOsdItem(); + bool HasUserColor(void) { return userColor; } void SetText(const char *Text, bool Copy = true); + void SetColor(eDvbColor FgColor, eDvbColor BgColor = clrBackground); const char *Text(void) { return text; } - void Display(int Offset = -1, bool Current = false); + void Display(int Offset = -1, eDvbColor FgColor = clrWhite, eDvbColor BgColor = clrBackground); virtual void Set(void) {} virtual eOSState ProcessKey(eKeys Key); }; @@ -68,6 +72,7 @@ private: const char *status; protected: bool visible; + bool SpecialItem(int idx); void RefreshCurrent(void); void DisplayCurrent(bool Current); void CursorUp(void); -- cgit v1.2.3