diff options
author | horchi <vdr@jwendel.de> | 2017-03-05 16:48:30 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-05 16:48:30 +0100 |
commit | bf558fd824c7ab8c794448f718b364ad403a706a (patch) | |
tree | e0ba2269c08ccc9c9bd9c336df06b1fa6fce5ec6 /setupmenu.h | |
download | vdr-plugin-pin-0.1.16.tar.gz vdr-plugin-pin-0.1.16.tar.bz2 |
git init0.1.16
Diffstat (limited to 'setupmenu.h')
-rw-r--r-- | setupmenu.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/setupmenu.h b/setupmenu.h new file mode 100644 index 0000000..7b70944 --- /dev/null +++ b/setupmenu.h @@ -0,0 +1,42 @@ + +#ifndef __PINSETUTMENU_H_ +#define __PINSETUTMENU_H_ + +//*************************************************************************** +// Includes +//*************************************************************************** + +#include <vdr/plugin.h> +#include "pin.h" + +//*************************************************************************** +// Pin Setup Menu +//*************************************************************************** + +class PinSetupMenu : public cMenuSetupPage +{ + + public: + + PinSetupMenu(); + ~PinSetupMenu(); + + protected: + + void Store(void); + + // data + + char pinCode[cPinPlugin::sizePinCode+TB]; + int skipChannelSilent; + int pinResetTime; + int autoMenuOpen; + int autoProtectionMode; + int hidePinCode; + int hideProtectedMenus; + int hideProtectedPlugins; + int hideProtectedRecordings; +}; + +//*************************************************************************** +#endif // __PINSETUTMENU_H_ |