mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
33 lines
620 B
C++
33 lines
620 B
C++
/*
|
|
* 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.9 2007/09/30 21:38:31 rahrenbe Exp $
|
|
*/
|
|
|
|
#ifndef __IPTV_SETUP_H
|
|
#define __IPTV_SETUP_H
|
|
|
|
#include <vdr/menuitems.h>
|
|
|
|
class cIptvPluginSetup : public cMenuSetupPage
|
|
{
|
|
private:
|
|
int tsBufferSize;
|
|
int tsBufferPrefill;
|
|
int sectionFiltering;
|
|
int sidScanning;
|
|
eOSState EditChannel(void);
|
|
virtual void Setup(void);
|
|
|
|
protected:
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
virtual void Store(void);
|
|
|
|
public:
|
|
cIptvPluginSetup();
|
|
};
|
|
|
|
#endif // __IPTV_SETUP_H
|