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-12-28 12:57:16 +01:00
|
|
|
* $Id: osd.h 1.18 2000/12/24 10:16:52 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
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
enum eOSState { osUnknown,
|
2000-04-29 15:57:42 +02:00
|
|
|
osMenu,
|
2000-03-11 11:22:37 +01:00
|
|
|
osContinue,
|
2000-10-29 13:17:22 +01:00
|
|
|
osSchedule,
|
2000-03-11 11:22:37 +01:00
|
|
|
osChannels,
|
2000-11-11 10:39:27 +01:00
|
|
|
osTimers,
|
2000-03-11 11:22:37 +01:00
|
|
|
osRecordings,
|
2000-09-10 10:51:58 +02:00
|
|
|
osSetup,
|
2000-11-11 16:38:41 +01:00
|
|
|
osCommands,
|
2000-05-27 16:10:47 +02:00
|
|
|
osRecord,
|
2000-04-29 15:57:42 +02:00
|
|
|
osReplay,
|
2000-04-30 11:15:16 +02:00
|
|
|
osStopRecord,
|
2000-05-01 16:29:46 +02:00
|
|
|
osStopReplay,
|
2000-12-28 12:57:16 +01:00
|
|
|
osCancelEdit,
|
2000-09-10 10:51:58 +02:00
|
|
|
osSwitchDvb,
|
2000-03-11 11:22:37 +01:00
|
|
|
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;
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state;
|
2000-02-19 13:36:48 +01:00
|
|
|
protected:
|
|
|
|
bool fresh;
|
2000-09-09 14:57:43 +02:00
|
|
|
bool userColor;
|
|
|
|
eDvbColor fgColor, bgColor;
|
2000-02-19 13:36:48 +01:00
|
|
|
public:
|
2000-03-11 11:22:37 +01:00
|
|
|
cOsdItem(eOSState State = osUnknown);
|
2000-10-29 13:17:22 +01:00
|
|
|
cOsdItem(const char *Text, eOSState State = osUnknown);
|
2000-02-19 13:36:48 +01:00
|
|
|
virtual ~cOsdItem();
|
2000-09-09 14:57:43 +02:00
|
|
|
bool HasUserColor(void) { return userColor; }
|
2000-04-23 15:38:16 +02:00
|
|
|
void SetText(const char *Text, bool Copy = true);
|
2000-09-09 14:57:43 +02:00
|
|
|
void SetColor(eDvbColor FgColor, eDvbColor BgColor = clrBackground);
|
2000-04-23 15:38:16 +02:00
|
|
|
const char *Text(void) { return text; }
|
2000-11-01 11:45:05 +01:00
|
|
|
virtual void Display(int Offset = -1, eDvbColor FgColor = clrWhite, eDvbColor BgColor = clrBackground);
|
2000-02-19 13:36:48 +01:00
|
|
|
virtual void Set(void) {}
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
2000-04-29 15:57:42 +02:00
|
|
|
class cOsdBase {
|
2000-04-30 10:22:13 +02:00
|
|
|
protected:
|
|
|
|
bool needsFastResponse;
|
2000-04-29 15:57:42 +02:00
|
|
|
public:
|
2000-04-30 10:22:13 +02:00
|
|
|
cOsdBase(bool FastResponse = false) { needsFastResponse = FastResponse; }
|
2000-04-29 15:57:42 +02:00
|
|
|
virtual ~cOsdBase() {}
|
2000-11-01 15:41:33 +01:00
|
|
|
int Width(void) { return Interface->Width(); }
|
|
|
|
int Height(void) { return Interface->Height(); }
|
2000-04-30 10:22:13 +02:00
|
|
|
bool NeedsFastResponse(void) { return needsFastResponse; }
|
2000-11-01 15:41:33 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key) = 0;
|
2000-04-29 15:57:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class cOsdMenu : public cOsdBase, public cList<cOsdItem> {
|
2000-02-19 13:36:48 +01:00
|
|
|
private:
|
2000-10-29 13:17:22 +01:00
|
|
|
const char *title;
|
2000-02-19 13:36:48 +01:00
|
|
|
int cols[cInterface::MaxCols];
|
2000-03-11 11:22:37 +01:00
|
|
|
int first, current, marked;
|
2000-02-19 13:36:48 +01:00
|
|
|
cOsdMenu *subMenu;
|
2000-03-11 11:22:37 +01:00
|
|
|
const char *helpRed, *helpGreen, *helpYellow, *helpBlue;
|
|
|
|
const char *status;
|
2000-02-19 13:36:48 +01:00
|
|
|
protected:
|
2000-03-11 11:22:37 +01:00
|
|
|
bool visible;
|
2000-11-12 16:48:50 +01:00
|
|
|
virtual void Clear(void);
|
2000-09-09 14:57:43 +02:00
|
|
|
bool SpecialItem(int idx);
|
2000-02-19 13:36:48 +01:00
|
|
|
void RefreshCurrent(void);
|
|
|
|
void DisplayCurrent(bool Current);
|
|
|
|
void CursorUp(void);
|
|
|
|
void CursorDown(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
void Mark(void);
|
|
|
|
eOSState AddSubMenu(cOsdMenu *SubMenu);
|
|
|
|
bool HasSubMenu(void) { return subMenu; }
|
|
|
|
void SetStatus(const char *s);
|
2000-10-29 13:17:22 +01:00
|
|
|
void SetTitle(const char *Title, bool Copy = true);
|
2000-03-11 11:22:37 +01:00
|
|
|
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:
|
2000-10-29 13:17:22 +01:00
|
|
|
cOsdMenu(const char *Title, int c0 = 0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0);
|
2000-02-19 13:36:48 +01:00
|
|
|
virtual ~cOsdMenu();
|
|
|
|
int Current(void) { return current; }
|
|
|
|
void Add(cOsdItem *Item, bool Current = false);
|
|
|
|
void Display(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
virtual eOSState ProcessKey(eKeys Key);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__OSD_H
|