diff options
Diffstat (limited to 'menuitemtext.h')
-rw-r--r-- | menuitemtext.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/menuitemtext.h b/menuitemtext.h new file mode 100644 index 0000000..8217f95 --- /dev/null +++ b/menuitemtext.h @@ -0,0 +1,22 @@ +/* + * undelete: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * $Id: menuitemtext.h 0.1 2004/10/08 02:03:31 hflor Exp $ + */ + +#ifndef __MENUITEMTEXT_H +#define __MENUITEMTEXT_H + +#include <vdr/osd.h> + +// --- cMenuText ------------------------------------------------------------- + +class cMenuItemText : public cOsdMenu { +public: + cMenuItemText(const char *Title, const char *Text, eDvbFont Font = fontOsd); + virtual eOSState ProcessKey(eKeys Key); + }; + +#endif // __MENUITEMTEXT_H |