blob: b53a0bdd2452b56c795a3b7c6e7c6f813904044b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* playlist: 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/09/23 23:42:32 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
|