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-07-13 12:47:06 +02:00
|
|
|
* $Id: osd.h 1.33 2002/07/13 12:47:06 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __OSD_H
|
|
|
|
#define __OSD_H
|
|
|
|
|
2002-05-18 14:03:22 +02:00
|
|
|
#if defined(DEBUG_OSD) || defined(REMOTE_KBD)
|
|
|
|
#include <ncurses.h>
|
|
|
|
#endif
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "config.h"
|
2002-07-13 12:47:06 +02:00
|
|
|
#include "osdbase.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "interface.h"
|
2002-05-18 14:03:22 +02:00
|
|
|
#include "osdbase.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#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,
|
|
|
|
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
|
|
|
|
2002-05-18 14:03:22 +02:00
|
|
|
class cOsd {
|
|
|
|
private:
|
|
|
|
enum { charWidth = 12, // average character width
|
|
|
|
lineHeight = 27 // smallest text height
|
|
|
|
};
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
static WINDOW *window;
|
|
|
|
enum { MaxColorPairs = 16 };
|
|
|
|
static int colorPairs[MaxColorPairs];
|
|
|
|
static void SetColor(eDvbColor colorFg, eDvbColor colorBg = clrBackground);
|
|
|
|
#else
|
2002-07-13 12:47:06 +02:00
|
|
|
static cOsdBase *osd;
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
static int cols, rows;
|
|
|
|
public:
|
|
|
|
static void Initialize(void);
|
|
|
|
static void Shutdown(void);
|
2002-07-13 12:47:06 +02:00
|
|
|
static cOsdBase *OpenRaw(int x, int y);
|
|
|
|
// Returns a raw OSD without any predefined windows or colors.
|
|
|
|
// If the "normal" OSD is currently in use, NULL will be returned.
|
|
|
|
// The caller must delete this object before the "normal" OSD is used again!
|
2002-05-18 14:03:22 +02:00
|
|
|
static void Open(int w, int h);
|
|
|
|
static void Close(void);
|
|
|
|
static void Clear(void);
|
|
|
|
static void Fill(int x, int y, int w, int h, eDvbColor color = clrBackground);
|
|
|
|
static void SetBitmap(int x, int y, const cBitmap &Bitmap);
|
|
|
|
static void ClrEol(int x, int y, eDvbColor color = clrBackground);
|
|
|
|
static int CellWidth(void);
|
|
|
|
static int LineHeight(void);
|
|
|
|
static int Width(unsigned char c);
|
|
|
|
static int WidthInCells(const char *s);
|
|
|
|
static eDvbFont SetFont(eDvbFont Font);
|
|
|
|
static void Text(int x, int y, const char *s, eDvbColor colorFg = clrWhite, eDvbColor colorBg = clrBackground);
|
|
|
|
static void Flush(void);
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2002-05-18 12:41:18 +02:00
|
|
|
class cOsdObject {
|
2000-04-30 10:22:13 +02:00
|
|
|
protected:
|
|
|
|
bool needsFastResponse;
|
2000-04-29 15:57:42 +02:00
|
|
|
public:
|
2002-05-18 12:41:18 +02:00
|
|
|
cOsdObject(bool FastResponse = false) { needsFastResponse = FastResponse; }
|
|
|
|
virtual ~cOsdObject() {}
|
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; }
|
2002-06-23 09:44:00 +02:00
|
|
|
virtual eOSState ProcessKey(eKeys Key) { return osUnknown; }
|
2001-08-03 14:18:08 +02:00
|
|
|
};
|
2000-04-29 15:57:42 +02:00
|
|
|
|
2002-05-18 12:41:18 +02:00
|
|
|
class cOsdMenu : public cOsdObject, 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
|