blob: bfa195577ce3eb3f247edf59e346326e2a4a82a4 (
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
|
/*
* zap_reset.h: The actual menu implementations
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* Provides a menu for reseting opertaions against the zaphistory
*/
#ifndef __MENU_RESET_H
#define __MENU_RESET_H
#include <vdr/osdbase.h>
#include "zaplist.h"
#include "setup-zaphistory.h"
class cMenuHistoryReset : public cOsdMenu {
private:
void Setup(void);
cZapHistoryChannel *zapChannel;
protected:
eOSState Switch(void);
public:
cMenuHistoryReset( cZapHistoryChannel *zapChan);
virtual eOSState ProcessKey(eKeys Key);
};
#endif
|