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.
|
|
|
|
*
|
2002-05-12 14:46:46 +02:00
|
|
|
* $Id: osd.h 1.29 2002/05/12 11:19:22 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"
|
|
|
|
|
2001-07-27 11:51:42 +02:00
|
|
|
#define MAXOSDITEMS (Setup.OSDheight - 4)
|
2000-02-19 13:36:48 +01:00
|
|
|
|
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,
|
2002-05-09 16:26:56 +02:00
|
|
|
osPlugin,
|
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,
|
2002-03-16 10:03:04 +01:00
|
|
|
os_User, // the following values can be used locally
|
|
|
|
osUser1,
|
|
|
|
osUser2,
|
|
|
|
osUser3,
|
|
|
|
osUser4,
|
|
|
|
osUser5,
|
|
|
|
osUser6,
|
|
|
|
osUser7,
|
|
|
|
osUser8,
|
|
|
|
osUser9,
|
2002-05-09 16:26:56 +02:00
|
|
|
osUser10,
|
2000-03-11 11:22:37 +01:00
|
|
|
};
|
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;
|
2001-08-03 14:18:08 +02:00
|
|
|
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);
|
2001-08-03 14:18:08 +02:00
|
|
|
};
|
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;
|
2001-08-03 14:18:08 +02:00
|
|
|
};
|
2000-04-29 15:57:42 +02:00
|
|
|
|
|
|
|
class cOsdMenu : public cOsdBase, public cList<cOsdItem> {
|
2000-02-19 13:36:48 +01:00
|
|
|
private:
|
2001-08-25 13:27:26 +02:00
|
|
|
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;
|
2002-03-16 10:03:04 +01:00
|
|
|
int digit;
|
2001-02-03 15:28:49 +01:00
|
|
|
bool hasHotkeys;
|
2000-02-19 13:36:48 +01:00
|
|
|
protected:
|
2000-03-11 11:22:37 +01:00
|
|
|
bool visible;
|
2002-03-16 10:03:04 +01:00
|
|
|
const char *hk(const char *s);
|
|
|
|
void SetHasHotkeys(void);
|
2000-11-12 16:48:50 +01:00
|
|
|
virtual void Clear(void);
|
2000-09-09 14:57:43 +02:00
|
|
|
bool SpecialItem(int idx);
|
2002-01-20 14:05:28 +01:00
|
|
|
void SetCurrent(cOsdItem *Item);
|
2000-02-19 13:36:48 +01:00
|
|
|
void RefreshCurrent(void);
|
|
|
|
void DisplayCurrent(bool Current);
|
|
|
|
void CursorUp(void);
|
|
|
|
void CursorDown(void);
|
2001-02-03 14:35:28 +01:00
|
|
|
void PageUp(void);
|
|
|
|
void PageDown(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
void Mark(void);
|
2001-02-03 15:28:49 +01:00
|
|
|
eOSState HotKey(eKeys Key);
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState AddSubMenu(cOsdMenu *SubMenu);
|
|
|
|
bool HasSubMenu(void) { return subMenu; }
|
|
|
|
void SetStatus(const char *s);
|
2001-08-25 13:27:26 +02:00
|
|
|
void SetTitle(const char *Title, bool ShowDate = 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; }
|
2002-05-12 14:46:46 +02:00
|
|
|
void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL);
|
|
|
|
void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL);
|
2000-02-19 13:36:48 +01:00
|
|
|
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
|