1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00
vdr-plugin-iptv/setup.h

32 lines
599 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.6 2007/09/28 16:44:59 rahrenbe Exp $
2007-09-15 17:38:38 +02:00
*/
#ifndef __IPTV_SETUP_H
#define __IPTV_SETUP_H
#include <vdr/menuitems.h>
class cIptvPluginSetup : public cMenuSetupPage
{
private:
2007-09-16 15:38:20 +02:00
int tsBufferSize;
int tsBufferPrefill;
int fileIdleTimeMs;
eOSState EditChannel(void);
2007-09-15 17:38:38 +02:00
virtual void Setup(void);
protected:
virtual eOSState ProcessKey(eKeys Key);
virtual void Store(void);
public:
cIptvPluginSetup();
};
#endif // __IPTV_SETUP_H