vdr/osd.h

77 lines
1.9 KiB
C
Raw Normal View History

2000-02-19 13:36:48 +01:00
/*
* osd.h: Abstract On Screen Display layer
*
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 09:46:05 +02:00
* $Id: osd.h 1.4 2000/04/24 09:44:32 kls Exp $
2000-02-19 13:36:48 +01:00
*/
#ifndef __OSD_H
#define __OSD_H
#include "config.h"
#include "interface.h"
#include "tools.h"
#define MAXOSDITEMS 9
enum eOSState { osUnknown,
osContinue,
osProcessed,
osChannels,
osTimer,
osRecordings,
osBack,
osEnd,
};
2000-02-19 13:36:48 +01:00
class cOsdItem : public cListObject {
private:
2000-04-23 15:38:16 +02:00
const char *text;
2000-02-19 13:36:48 +01:00
int offset;
eOSState state;
2000-02-19 13:36:48 +01:00
protected:
bool fresh;
public:
cOsdItem(eOSState State = osUnknown);
cOsdItem(char *Text, eOSState State = osUnknown);
2000-02-19 13:36:48 +01:00
virtual ~cOsdItem();
2000-04-23 15:38:16 +02:00
void SetText(const char *Text, bool Copy = true);
const char *Text(void) { return text; }
2000-02-19 13:36:48 +01:00
void Display(int Offset = -1, bool Current = false);
virtual void Set(void) {}
virtual eOSState ProcessKey(eKeys Key);
2000-02-19 13:36:48 +01:00
};
class cOsdMenu : public cList<cOsdItem> {
private:
char *title;
int cols[cInterface::MaxCols];
int first, current, marked;
2000-02-19 13:36:48 +01:00
cOsdMenu *subMenu;
const char *helpRed, *helpGreen, *helpYellow, *helpBlue;
const char *status;
2000-02-19 13:36:48 +01:00
protected:
bool visible;
2000-02-19 13:36:48 +01:00
void RefreshCurrent(void);
void DisplayCurrent(bool Current);
void CursorUp(void);
void CursorDown(void);
void Mark(void);
eOSState AddSubMenu(cOsdMenu *SubMenu);
bool HasSubMenu(void) { return subMenu; }
void SetStatus(const char *s);
void SetHelp(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL);
virtual void Del(int Index);
2000-02-19 13:36:48 +01:00
public:
cOsdMenu(char *Title, int c0 = 0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0);
virtual ~cOsdMenu();
int Current(void) { return current; }
void Add(cOsdItem *Item, bool Current = false);
void Display(void);
virtual eOSState ProcessKey(eKeys Key);
2000-02-19 13:36:48 +01:00
};
#endif //__OSD_H