summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-02-24 14:07:21 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-02-24 14:07:21 +0100
commit715ed57ab1650cac0c6279d9cd60b2c63d32539c (patch)
treee237442562e909c163366f2a2962d5a084fd44d4 /menu.h
parent44ee59b21ab0d84aa1f2f9cb8d55439b5dd483a8 (diff)
downloadvdr-715ed57ab1650cac0c6279d9cd60b2c63d32539c.tar.gz
vdr-715ed57ab1650cac0c6279d9cd60b2c63d32539c.tar.bz2
Removed DVD support from the core VDR source
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h25
1 files changed, 1 insertions, 24 deletions
diff --git a/menu.h b/menu.h
index 4a55df56..9e49bf65 100644
--- a/menu.h
+++ b/menu.h
@@ -4,16 +4,13 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.36 2002/02/17 13:40:41 kls Exp $
+ * $Id: menu.h 1.37 2002/02/24 12:40:37 kls Exp $
*/
#ifndef _MENU_H
#define _MENU_H
#include "dvbapi.h"
-#ifdef DVDSUPPORT
-#include "dvd.h"
-#endif //DVDSUPPORT
#include "osd.h"
#include "recording.h"
@@ -43,18 +40,6 @@ public:
virtual eOSState ProcessKey(eKeys Key);
};
-#ifdef DVDSUPPORT
-class cMenuDVD : public cOsdMenu {
-private:
- cDVD *dvd;//XXX member really necessary???
- eOSState Play(void);
- eOSState Eject(void);
-public:
- cMenuDVD(void);
- virtual eOSState ProcessKey(eKeys Key);
- };
-#endif //DVDSUPPORT
-
class cMenuRecordingItem;
class cMenuRecordings : public cOsdMenu {
@@ -125,10 +110,6 @@ private:
void Show(int Seconds = 0);
void Hide(void);
static char *fileName;
-#ifdef DVDSUPPORT
- static cDVD *dvd;//XXX member really necessary???
- static int titleid;//XXX
-#endif //DVDSUPPORT
static char *title;
void DisplayAtBottom(const char *s = NULL);
void ShowMode(void);
@@ -144,10 +125,6 @@ public:
virtual eOSState ProcessKey(eKeys Key);
bool Visible(void) { return visible; }
static void SetRecording(const char *FileName, const char *Title);
-#ifdef DVDSUPPORT
- static void SetDVD(cDVD *DVD, int Title);//XXX
- static int LastTitleID(void);
-#endif //DVDSUPPORT
static const char *LastReplayed(void);
static void ClearLastReplayed(const char *FileName);
};