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>
|
2010-03-04 16:34:21 +01:00
|
|
|
#include <vdr/sourceparams.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:
|
2014-02-19 20:38:11 +01:00
|
|
|
int protocolBasePortM;
|
2013-02-23 14:31:11 +01:00
|
|
|
int sectionFilteringM;
|
|
|
|
int numDisabledFiltersM;
|
|
|
|
int disabledFilterIndexesM[SECTION_FILTER_TABLE_SIZE];
|
|
|
|
const char *disabledFilterNamesM[SECTION_FILTER_TABLE_SIZE];
|
|
|
|
cVector<const char*> helpM;
|
2007-10-06 02:02:50 +02:00
|
|
|
|
2007-10-06 22:57:53 +02:00
|
|
|
eOSState ShowInfo(void);
|
2009-03-20 17:00:17 +01:00
|
|
|
void Setup(void);
|
2013-02-23 14:31:11 +01:00
|
|
|
void StoreFilters(const char *nameP, int *valuesP);
|
2007-09-15 17:38:38 +02:00
|
|
|
|
|
|
|
protected:
|
2013-02-23 14:31:11 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys keyP);
|
2007-09-15 17:38:38 +02:00
|
|
|
virtual void Store(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvPluginSetup();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_SETUP_H
|