summaryrefslogtreecommitdiff
path: root/menusetup.h
diff options
context:
space:
mode:
Diffstat (limited to 'menusetup.h')
-rw-r--r--menusetup.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/menusetup.h b/menusetup.h
new file mode 100644
index 0000000..aac738f
--- /dev/null
+++ b/menusetup.h
@@ -0,0 +1,32 @@
+/*
+ * playlist: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id: menusetup.h 0.2 2004/10/08 02:34:00 hflor Exp $
+ */
+
+#ifndef __MENUSETUP_H
+#define __MENUSETUP_H
+
+#include <vdr/menu.h>
+#include <vdr/menuitems.h>
+
+// --- cMenuSetupPlayList -------------------------------------------------------
+
+class cMenuSetupPlayList : public cMenuSetupPage {
+private:
+ int store;
+ int fileitempos;
+ int changedefault;
+ int changechar;
+protected:
+ virtual void Store(void);
+public:
+ cMenuSetupPlayList(void);
+ virtual ~cMenuSetupPlayList(void);
+ virtual void Set(bool sel = false);
+ virtual eOSState ProcessKey(eKeys Key);
+ };
+
+#endif //__MENUSETUP_H