vdr-plugin-iptv/setup.h

39 lines
838 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.
*
* $Id: setup.h,v 1.10 2007/10/06 00:02:50 rahrenbe Exp $
2007-09-15 17:38:38 +02:00
*/
#ifndef __IPTV_SETUP_H
#define __IPTV_SETUP_H
#include <vdr/menuitems.h>
#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;
int sectionFiltering;
int sidScanning;
int numDisabledFilters;
int disabledFilterIndexes[SECTION_FILTER_TABLE_SIZE];
const char *disabledFilterNames[SECTION_FILTER_TABLE_SIZE];
eOSState EditChannel(void);
2007-09-15 17:38:38 +02:00
virtual void Setup(void);
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