summaryrefslogtreecommitdiff
path: root/setupmenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'setupmenu.h')
-rw-r--r--setupmenu.h42
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_