blob: 1f163fe2427e2cfa2172d9b26e9851f9f1757b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* undelete: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: menutext.h 0.4 2005/11/16 18:39:18 hflor Exp $
*/
#ifndef __MENUTEXT_H
#define __MENUTEXT_H
#include <vdr/osd.h>
#include <vdr/osdbase.h>
// --- cMenuText -------------------------------------------------------------
class cMenuText : public cOsdMenu {
public:
cMenuText(const char *Title, const char *Text, eDvbFont Font = fontOsd);
virtual eOSState ProcessKey(eKeys Key);
};
#endif // __MENUTEXT_H
|