vdr/menu.h

31 lines
517 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.
*
2000-04-24 15:32:11 +02:00
* $Id: menu.h 1.5 2000/04/24 15:31:53 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
};
2000-04-23 15:38:16 +02:00
class cReplayDisplay {
2000-04-24 15:32:11 +02:00
private:
bool shown;
2000-04-23 15:38:16 +02:00
public:
cReplayDisplay(void);
~cReplayDisplay();
eKeys ProcessKey(eKeys Key);
};
2000-02-19 13:36:48 +01:00
#endif //_MENU_H