2007-09-15 17:38:38 +02:00
|
|
|
/*
|
|
|
|
* setup.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_SETUP_H
|
|
|
|
#define __IPTV_SETUP_H
|
|
|
|
|
|
|
|
#include <vdr/menuitems.h>
|
2007-10-06 02:02:50 +02:00
|
|
|
#include "common.h"
|
2007-09-15 17:38:38 +02:00
|
|
|
|
|
|
|
class cIptvPluginSetup : public cMenuSetupPage
|
|
|
|
{
|
|
|
|
private:
|
2007-09-16 15:38:20 +02:00
|
|
|
int tsBufferSize;
|
|
|
|
int tsBufferPrefill;
|
2007-10-20 19:26:46 +02:00
|
|
|
int extProtocolBasePort;
|
2007-09-30 23:38:31 +02:00
|
|
|
int sectionFiltering;
|
2007-10-06 02:02:50 +02:00
|
|
|
int numDisabledFilters;
|
|
|
|
int disabledFilterIndexes[SECTION_FILTER_TABLE_SIZE];
|
|
|
|
const char *disabledFilterNames[SECTION_FILTER_TABLE_SIZE];
|
2008-01-19 17:24:40 +01:00
|
|
|
cVector<const char*> help;
|
2007-10-06 02:02:50 +02:00
|
|
|
|
2007-09-18 20:48:10 +02:00
|
|
|
eOSState EditChannel(void);
|
2007-10-06 22:57:53 +02:00
|
|
|
eOSState ShowInfo(void);
|
2009-03-20 17:00:17 +01:00
|
|
|
void Setup(void);
|
2007-10-06 02:02:50 +02:00
|
|
|
void StoreFilters(const char *Name, int *Values);
|
2007-09-15 17:38:38 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
|
|
virtual void Store(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvPluginSetup();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_SETUP_H
|