blob: 5a170d4be851c74bd15b8a96971883854857eb60 (
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
|
/*
* menu.h: Menu implementation for duplicates plugin.
*
* The menu implementation is based on recordings menu in VDR.
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef _DUPLICATES_MENU_H
#define _DUPLICATES_MENU_H
#include <vdr/osdbase.h>
#include <vdr/recording.h>
class cMenuDuplicateItem;
// --- cMenuDuplicates -------------------------------------------------------
class cMenuDuplicates : public cOsdMenu {
private:
int recordingsState;
int helpKeys;
void SetHelpKeys(void);
void Set(bool Refresh = false);
eOSState Delete(void);
eOSState Info(void);
protected:
cRecording *GetRecording(cMenuDuplicateItem *Item);
public:
cMenuDuplicates();
~cMenuDuplicates();
virtual eOSState ProcessKey(eKeys Key);
};
#endif
|