summaryrefslogtreecommitdiff
path: root/discmenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'discmenu.h')
-rw-r--r--discmenu.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/discmenu.h b/discmenu.h
new file mode 100644
index 0000000..8503c59
--- /dev/null
+++ b/discmenu.h
@@ -0,0 +1,27 @@
+/*
+ * titlemenu.h: BluRay disc library menu
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ */
+
+#ifndef _DISCMENU_H
+#define _DISCMENU_H
+
+#include <vdr/menuitems.h>
+
+#include "discmgr.h"
+
+class cDiscMenu : public cOsdMenu {
+ private:
+ void Scan(cString& Root);
+
+ cDiscMgr& mgr;
+
+ public:
+ cDiscMenu(cDiscMgr& Mgr, cString& Root);
+
+ virtual eOSState ProcessKey(eKeys Key);
+};
+
+#endif //_DISCMENU_H