blob: 13864dc9572625d4f0f124ec92c20fe4db34769d (
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
|
#ifndef MENUEVENT_H_
#define MENUEVENT_H_
/*
* See the README file for copyright information and how to reach the author.
*/
#include <vdr/plugin.h>
#include <vdr/menu.h>
#include <vdr/status.h>
#include <vdr/interface.h>
#include "neutrinoepg.h"
#include "osditem.h"
extern bool isMenuEvent;
class myMenuEvent : public cOsdMenu
{
private:
eOSState Record(void);
eOSState Switch(void);
eOSState Delete(void);
eOSState SearchRepeats(void);
const cEvent *event;
const cChannel *channel;
cTimer *timer;
myOsdItem *item;
cPlugin *pEpgSearch;
public:
myMenuEvent(myOsdItem *Item);
~myMenuEvent(void);
virtual void Display(void);
virtual eOSState ProcessKey(eKeys Key);
};
#endif
|