summaryrefslogtreecommitdiff
path: root/osd.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-11-01 15:41:33 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2000-11-01 15:41:33 +0100
commitfb096c680f671d8b0a4b5a1e1dddf9aa96020061 (patch)
tree836a456002f52ea0be580686760171a8dec2d811 /osd.h
parent92d698d39cdeca0c2df175ec8295527353d20069 (diff)
downloadvdr-fb096c680f671d8b0a4b5a1e1dddf9aa96020061.tar.gz
vdr-fb096c680f671d8b0a4b5a1e1dddf9aa96020061.tar.bz2
Moved 'DisplayChannel' to menu.c; Yellow and Green function temporarily disabled
Diffstat (limited to 'osd.h')
-rw-r--r--osd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/osd.h b/osd.h
index 2b9359a6..473e87de 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.13 2000/11/01 11:20:15 kls Exp $
+ * $Id: osd.h 1.14 2000/11/01 14:29:07 kls Exp $
*/
#ifndef __OSD_H
@@ -61,8 +61,10 @@ protected:
public:
cOsdBase(bool FastResponse = false) { needsFastResponse = FastResponse; }
virtual ~cOsdBase() {}
- virtual eOSState ProcessKey(eKeys Key) = 0;
+ int Width(void) { return Interface->Width(); }
+ int Height(void) { return Interface->Height(); }
bool NeedsFastResponse(void) { return needsFastResponse; }
+ virtual eOSState ProcessKey(eKeys Key) = 0;
};
class cOsdMenu : public cOsdBase, public cList<cOsdItem> {
@@ -90,8 +92,6 @@ protected:
public:
cOsdMenu(const char *Title, int c0 = 0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0);
virtual ~cOsdMenu();
- int Width(void) { return Interface->Width(); }
- int Height(void) { return Interface->Height(); }
int Current(void) { return current; }
void Add(cOsdItem *Item, bool Current = false);
void Display(void);