blob: 971562e89a7507099b6218958c3606f6b0751a79 (
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
45
46
|
/*
* menu.h: Main Menu
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: menu.h,v 1.4 2006-09-12 16:35:18 phintuka Exp $
*
*/
#ifndef __XINELIB_MENU_H
#define __XINELIB_MENU_H
#include <vdr/menuitems.h>
class cMenuXinelib : public cMenuSetupPage
{
private:
int field_order;
int compression;
int headphone;
int autocrop;
int overscan;
int novideo;
#ifdef HAVE_XV_FIELD_ORDER
cOsdItem *video_ctrl_interlace_order;
#endif
cOsdItem *audio_ctrl_compress;
cOsdItem *ctrl_autocrop;
cOsdItem *ctrl_overscan;
cOsdItem *ctrl_headphone;
cOsdItem *ctrl_novideo;
protected:
virtual void Store(void);
public:
cMenuXinelib(void);
virtual ~cMenuXinelib();
virtual eOSState ProcessKey(eKeys Key);
};
#endif //__XINELIB_SETUP_MENU_H
|