diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-23 09:40:38 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-23 09:40:38 +0200 |
commit | d10624fbcac3a4e480543c40f09faea31561414c (patch) | |
tree | f8f16538e1ce523cd4747add2508b860db5105cd /menu.h | |
parent | d5533f20143ccafe62071464421bae925fcf90b7 (diff) | |
download | vdr-d10624fbcac3a4e480543c40f09faea31561414c.tar.gz vdr-d10624fbcac3a4e480543c40f09faea31561414c.tar.bz2 |
Moved the declaration of cMenuText to VDR/menu.h to make it available to plugins
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.h 1.61 2004/04/30 13:45:19 kls Exp $ + * $Id: menu.h 1.62 2004/05/23 09:39:02 kls Exp $ */ #ifndef __MENU_H @@ -19,6 +19,15 @@ #include "recording.h" #include "skins.h" +class cMenuText : public cOsdMenu { +private: + const char *text; +public: + cMenuText(const char *Title, const char *Text, eDvbFont Font = fontOsd); + virtual void Display(void); + virtual eOSState ProcessKey(eKeys Key); + }; + class cMenuMain : public cOsdMenu { private: time_t lastActivity; |