summaryrefslogtreecommitdiff
path: root/config.h
blob: 6141ab817a48a8c205540d08d0a1cec3a0dc77ae (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
#ifndef VDR_OSDPIP_SETUP_H
#define VDR_OSDPIP_SETUP_H

#include <vdr/plugin.h>

struct cOsdPipSetup {
	cOsdPipSetup(void);

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

	int  XPosition;
	int  YPosition;
	int  CropLeft;
	int  CropRight;
	int  CropTop;
	int  CropBottom;
	int  ZoomFactor;
	int  ColorDepth;
};

extern cOsdPipSetup OsdPipSetup;

class cOsdPipSetupPage: public cMenuSetupPage {
private:
  cOsdPipSetup m_NewOsdPipSetup;

protected:
	virtual void Store(void);

public:
	cOsdPipSetupPage(void);
	virtual ~cOsdPipSetupPage();
};

#endif // VDR_OSDPIP_SETUP_H