blob: 1d62b67b954f9ef796f125c78cfb9d6dd6eca6dc (
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
35
36
37
38
|
/*
* zaphistoryosd.h: The actual menu implementations
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* Provides the zaphistory menu
*/
#ifndef __ZAPHISTORYOSD_H
#define __ZAPHISTORYOSD_H
#include <vdr/osdbase.h>
#include "zaplist.h"
#include "setup-zaphistory.h"
class cMenuZappedChannels : public cOsdMenu {
private:
void Setup(void);
void SetupEPGView();
void SetupStatisticView();
void SortInfoItem();
eOSState ShowInfo();
cZapHistoryChannel *GetChannel(int Index);
void Propagate(void);
cZapHistoryView viewMode;
bool inResetMode;
protected:
eOSState Switch(void);
public:
cMenuZappedChannels();
virtual eOSState ProcessKey(eKeys Key);
};
#endif
|