File: setup-dvd.h

package info (click to toggle)
vdr-plugin-dvd 0.3.6~b03%2Bcvs20090426.0013-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 480 kB
  • ctags: 619
  • sloc: ansic: 4,866; sh: 624; makefile: 89
file content (48 lines) | stat: -rwxr-xr-x 845 bytes parent folder | download | duplicates (9)
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
45
46
47
48
/*
 * DVD Player plugin for VDR
 *
 * Copyright (C) 2001.2002 Andreas Schultz <aschultz@warp10.net>
 *
 * This code is distributed under the terms and conditions of the
 * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
 *
 */

#ifndef __SETUP_DVD_H
#define __SETUP_DVD_H

#include <vdr/menuitems.h>

class cDVDSetup {
 public:
    int MenuLanguage;
    int AudioLanguage;
    int SpuLanguage;
    int PlayerRCE;
    int ShowSubtitles;
    int HideMainMenu;
    int ReadAHead;
    int Gain;

    // AC3 stuff
    int AC3dynrng;

 public:
    cDVDSetup(void);

    bool SetupParse(const char *Name, const char *Value);
};

class cMenuSetupDVD : public cMenuSetupPage {
 private:
    cDVDSetup data;
 protected:
    virtual void Store(void);
 public:
    cMenuSetupDVD(void);
};

extern cDVDSetup DVDSetup;

#endif // __SETUP_DVD_H