From 4921cf32c8bda089a21dc4a14ce191ed477f80ff Mon Sep 17 00:00:00 2001 From: Midas Date: Thu, 22 Apr 2010 01:06:40 +0200 Subject: Initial release. Version 0.0.1b. Fork of the taste plugin 0.0.2d by LordJaxom. Patches for the taste plugin by tomg and mapovi were added permanently to the source of the block plugin. For more information, feature list und bugfixes read HISTORY and README please. --- block/setup.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 block/setup.h (limited to 'block/setup.h') diff --git a/block/setup.h b/block/setup.h new file mode 100644 index 0000000..1bbc7c6 --- /dev/null +++ b/block/setup.h @@ -0,0 +1,48 @@ +/** + * based on setup.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom + * + * version by Midas + * + */ + +#ifndef VDR_BLOCK_SETUP_H +#define VDR_BLOCK_SETUP_H + +#include + +#include "event.h" +#include "config.h" + +class cMenuSetupBlock : public cMenuSetupPage { +private: + cEventsBlock mEventsData; + cSetupBlock mSetupData; + +protected: + virtual void Store(void); + virtual eOSState ProcessKey(eKeys Key); + + void Set(void); + void SetHelpKeys(void); + + eOSState Edit(void); + eOSState New(void); + eOSState Delete(void); + +public: + cMenuSetupBlock(); +}; + +class cMenuSetupEditBlock : public cOsdMenu { +private: + cEventBlock *mEvent; + cEventBlock mData; + +protected: + eOSState ProcessKey(eKeys Key); + +public: + cMenuSetupEditBlock(cEventBlock *Event); +}; + +#endif // VDR_BLOCK_SETUP_H -- cgit v1.2.3