blob: e71dced06402184f18bf375ceba933d2ad650b12 (
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
|
#ifndef ___TTXTSUBSPAGEMENU_H
#define ___TTXTSUBSPAGEMENU_H
#include <vdr/config.h>
#include <vdr/osd.h>
#include <vdr/channels.h>
#include "ttxtsubs.h"
#include "ttxtsubschannelsettings.h"
class cTtxtsubsPageMenu : public cOsdMenu
{
private:
cChannel *channel;
cTtxtSubsChannelSetting *setting;
int mPageNumber;
int mPageMode;
int origPageNumber;
int origPageMode;
int DoDisplay;
public:
cTtxtsubsPageMenu();
virtual ~cTtxtsubsPageMenu();
virtual eOSState ProcessKey(eKeys Key);
};
#endif //___TTXTSUBSPAGEMENU_H
|