vdr-plugin-iptv/setup.h

40 lines
844 B
C
Raw Normal View History

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>
#include "common.h"
2007-09-15 17:38:38 +02:00
class cIptvPluginSetup : public cMenuSetupPage
{
private:
2013-02-23 14:31:11 +01:00
int tsBufferSizeM;
int tsBufferPrefillM;
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;
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