-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.h
40 lines (33 loc) · 1.16 KB
/
setup.h
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
39
//////////////////////////////////////////////////////////////////////////////
/// ///
/// This file is part of the VDR mpv plugin and licensed under AGPLv3 ///
/// ///
/// See the README file for copyright information ///
/// ///
//////////////////////////////////////////////////////////////////////////////
#ifndef __MPV_SETUP_H
#define __MPV_SETUP_H
#include <vdr/plugin.h>
class cMpvPluginSetup:public cMenuSetupPage
{
private:
void Setup();
virtual void Store();
int SetupHideMainMenuEntry;
int SetupUseDeinterlace;
int SetupUsePassthrough;
int SetupUseDtsHdPassthrough;
int SetupStereoDownmix;
int SetupPlaylistOnNextKey;
int SetupPlaylistIfNoChapters;
int SetupShowMediaTitle;
int SetupShowSubtitles;
int SetupExitAtEnd;
int SetupShowAfterStop;
int SetupSavePos;
int SetupSoftVol;
public:
cMpvPluginSetup();
virtual eOSState ProcessKey(eKeys);
};
#endif