blob: c8b831131151321a7e2340a1cabf4e3290b2cffc (
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
39
40
41
42
43
44
|
#ifndef _DXR3_H_
#define _DXR3_H_
#include <vdr/i18n.h>
#include "settings.h"
static const char MAINMENUENTRY[] = trNOOP("DXR3 Functions");
// --- cMenuSetupDxr3 -------------------------------------------------------
// ==================================
// setup screen
class cMenuSetupDxr3 : public cMenuSetupPage
{
public:
cMenuSetupDxr3();
protected:
virtual void Store();
private:
int newUseDigitalOut;
int newDxr3Card;
int newVideoMode;
int newAc3AudioMode;
const char *menuVideoModes[3];
const char *menuAc3AudioModes[2];
int newForceLetterBox;
int newUseWSS;
int newOsdFlushRate;
int newBrightness;
int newContrast;
int newSaturation;
};
#endif /*_DXR3_H_*/
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
// c-file-offsets: ((inline-open . 0))
// tab-width: 4;
// indent-tabs-mode: nil
// End:
|