vdr/menu.h

37 lines
758 B
C
Raw Normal View History

2000-02-19 13:36:48 +01:00
/*
* menu.h: The actual menu implementations
*
2000-04-24 09:46:05 +02:00
* See the main source file 'vdr.c' for copyright information and
2000-02-19 13:36:48 +01:00
* how to reach the author.
*
* $Id: menu.h 1.6 2000/04/29 15:38:39 kls Exp $
2000-02-19 13:36:48 +01:00
*/
#ifndef _MENU_H
#define _MENU_H
#include "osd.h"
class cMenuMain : public cOsdMenu {
public:
cMenuMain(void);
virtual eOSState ProcessKey(eKeys Key);
2000-02-19 13:36:48 +01:00
};
class cReplayControl : public cOsdBase {
2000-04-24 15:32:11 +02:00
private:
bool visible, shown;
void Show(void);
void Hide(void);
static char *fileName;
static char *title;
2000-04-23 15:38:16 +02:00
public:
cReplayControl(void);
virtual ~cReplayControl();
virtual eOSState ProcessKey(eKeys Key);
bool Visible(void) { return visible; }
static void SetRecording(const char *FileName, const char *Title);
2000-04-23 15:38:16 +02:00
};
2000-02-19 13:36:48 +01:00
#endif //_MENU_H