blob: a6695591f0c7d64003b4303ee5732013cba735d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* undelete: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: menusetup.h 0.5 2005/11/17 21:05:05 hflor Exp $
*/
#ifndef __MENUSETUP_H
#define __MENUSETUP_H
#include "vdrtools.h"
#include <vdr/menu.h>
#include <vdr/menuitems.h>
// --- cMenuSetupUndelete -------------------------------------------------------
class cMenuSetupUndelete : public cMenuSetupPage {
private:
int show_setupfunction;
int store;
protected:
virtual void Store(void);
public:
#ifdef UND_Debug
int objID;
#endif
cMenuSetupUndelete(int FunctionToChange = 0);
virtual ~cMenuSetupUndelete(void);
virtual void Set(int FunctionToSelect = 0);
virtual eOSState ProcessKey(eKeys Key);
};
#endif //__MENUSETUP_H
|