2007-09-15 15:38:38 +00:00
|
|
|
/*
|
|
|
|
* setup.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2007-09-29 18:15:31 +00:00
|
|
|
* $Id: setup.h,v 1.8 2007/09/29 18:15:31 rahrenbe Exp $
|
2007-09-15 15:38:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_SETUP_H
|
|
|
|
#define __IPTV_SETUP_H
|
|
|
|
|
|
|
|
#include <vdr/menuitems.h>
|
|
|
|
|
|
|
|
class cIptvPluginSetup : public cMenuSetupPage
|
|
|
|
{
|
|
|
|
private:
|
2007-09-16 13:38:20 +00:00
|
|
|
int tsBufferSize;
|
|
|
|
int tsBufferPrefill;
|
2007-09-18 18:48:10 +00:00
|
|
|
eOSState EditChannel(void);
|
2007-09-15 15:38:38 +00:00
|
|
|
virtual void Setup(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
|
|
virtual void Store(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvPluginSetup();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_SETUP_H
|