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