blob: cc549ae3bc81d744981705f9c33990b4e3339987 (
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
|
/*
* Spider-Arachnid: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef VDR_SPIDER_SETUP_H
#define VDR_SPIDER_SETUP_H
#include <vdr/menuitems.h>
/** --- class SpiderSetup -------------------------------------------------- **/
class SpiderSetup
{
public:
typedef enum { Mini, Normal } Variations;
int variation;
SpiderSetup();
bool parse(const char* name, const char* value);
};
/** --- class SpiderSetupMenu ---------------------------------------------- **/
class SpiderSetupMenu : public cMenuSetupPage
{
private:
const char* variationTexts[2];
SpiderSetup& setup;
SpiderSetup data;
protected:
virtual void Store();
public:
SpiderSetupMenu(SpiderSetup& setup);
};
#endif // VDR_SPIDER_SETUP_H
|