mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed checking compatibility mode for old subtitles plugin (thanks to Marco Schlüßler). - Updated the French OSD texts (thanks to Michael Nival). - Updated the Estonian OSD texts (thanks to Arthur Konovalov). - Updated the Italian OSD texts (thanks to Diego Pierotto). - The "Play" key now starts replay of the selected recording in the Recordings menu (thanks to Ville Skyttä); - Improved shutdown handling (thanks to Udo Richter). - Housekeeping now waits for a while after a replay has ended (thanks to Udo Richter). - Added more special characters to the list of allowed characters when entering strings (thanks to Thomas Günther). - Added Ukrainian language texts (thanks to Yarema Aka Knedlyk). - Added a workaround for recovering from wrongfully interpreted "pre 1.3.19 PS1 packets". - Fixed a possible blocking in replay when subtitles are active. - Fixed displaying subtitles in live mode. - Fixed handling CONFDIR (thanks to Rolf Ahrenberg). - Added some missing 'const' keywords (thanks to Sascha Volkenandt). - The 'Allowed' parameter in cMenuEditStrItem() is now NULL by default, which results in using tr(FileNameChars) (suggested by Thomas Günther). - Added a missing '.' to the date returned by DayDateTime() (thanks to Lauri Nurmi). - Improved the 'i18n' target in the Makefile to avoid unnecessary work (thanks to Stefan Huelswitt). The 'newplugin' and 'i18n-to-gettext.pl' scripts have been changed accordingly. Plugin authors may want to adjust the 'i18n' target of their Makefiles. - Fixed a crash if no fonts are found (thanks to Mario Ivankovits and Clemens Kirchgatterer). - Fixed decoding filename characters in case there are not two hex digits after the '#' (reported by Helmut Auer).
135 lines
4.0 KiB
C++
135 lines
4.0 KiB
C++
/*
|
|
* osdbase.h: Basic interface to the On Screen Display
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: osdbase.h 1.17 2007/11/03 14:50:52 kls Exp $
|
|
*/
|
|
|
|
#ifndef __OSDBASE_H
|
|
#define __OSDBASE_H
|
|
|
|
#include "config.h"
|
|
#include "osd.h"
|
|
#include "skins.h"
|
|
#include "tools.h"
|
|
|
|
enum eOSState { osUnknown,
|
|
osContinue,
|
|
osSchedule,
|
|
osChannels,
|
|
osTimers,
|
|
osRecordings,
|
|
osPlugin,
|
|
osSetup,
|
|
osCommands,
|
|
osPause,
|
|
osRecord,
|
|
osReplay,
|
|
osStopRecord,
|
|
osStopReplay,
|
|
osCancelEdit,
|
|
osSwitchDvb,
|
|
osBack,
|
|
osEnd,
|
|
os_User, // the following values can be used locally
|
|
osUser1,
|
|
osUser2,
|
|
osUser3,
|
|
osUser4,
|
|
osUser5,
|
|
osUser6,
|
|
osUser7,
|
|
osUser8,
|
|
osUser9,
|
|
osUser10,
|
|
};
|
|
|
|
class cOsdItem : public cListObject {
|
|
private:
|
|
char *text;
|
|
eOSState state;
|
|
bool selectable;
|
|
protected:
|
|
bool fresh;
|
|
public:
|
|
cOsdItem(eOSState State = osUnknown);
|
|
cOsdItem(const char *Text, eOSState State = osUnknown, bool Selectable = true);
|
|
virtual ~cOsdItem();
|
|
bool Selectable(void) const { return selectable; }
|
|
void SetText(const char *Text, bool Copy = true);
|
|
void SetSelectable(bool Selectable);
|
|
void SetFresh(bool Fresh);
|
|
const char *Text(void) const { return text; }
|
|
virtual void Set(void) {}
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
};
|
|
|
|
class cOsdObject {
|
|
friend class cOsdMenu;
|
|
private:
|
|
bool isMenu;
|
|
bool needsFastResponse;
|
|
protected:
|
|
void SetNeedsFastResponse(bool NeedsFastResponse) { needsFastResponse = NeedsFastResponse; }
|
|
public:
|
|
cOsdObject(bool FastResponse = false) { isMenu = false; needsFastResponse = FastResponse; }
|
|
virtual ~cOsdObject() {}
|
|
virtual bool NeedsFastResponse(void) { return needsFastResponse; }
|
|
bool IsMenu(void) const { return isMenu; }
|
|
virtual void Show(void);
|
|
virtual eOSState ProcessKey(eKeys Key) { return osUnknown; }
|
|
};
|
|
|
|
class cOsdMenu : public cOsdObject, public cList<cOsdItem> {
|
|
private:
|
|
static cSkinDisplayMenu *displayMenu;
|
|
static int displayMenuCount;
|
|
static int displayMenuItems;
|
|
char *title;
|
|
int cols[cSkinDisplayMenu::MaxTabs];
|
|
int first, current, marked;
|
|
cOsdMenu *subMenu;
|
|
const char *helpRed, *helpGreen, *helpYellow, *helpBlue;
|
|
char *status;
|
|
int digit;
|
|
bool hasHotkeys;
|
|
protected:
|
|
void SetDisplayMenu(void);
|
|
cSkinDisplayMenu *DisplayMenu(void) { return displayMenu; }
|
|
const char *hk(const char *s);
|
|
void SetCols(int c0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0);
|
|
void SetHasHotkeys(bool HasHotkeys = true);
|
|
virtual void Clear(void);
|
|
bool SelectableItem(int idx);
|
|
void SetCurrent(cOsdItem *Item);
|
|
void RefreshCurrent(void);
|
|
void DisplayCurrent(bool Current);
|
|
void DisplayItem(cOsdItem *Item);
|
|
void CursorUp(void);
|
|
void CursorDown(void);
|
|
void PageUp(void);
|
|
void PageDown(void);
|
|
void Mark(void);
|
|
eOSState HotKey(eKeys Key);
|
|
eOSState AddSubMenu(cOsdMenu *SubMenu);
|
|
eOSState CloseSubMenu();
|
|
bool HasSubMenu(void) { return subMenu; }
|
|
void SetStatus(const char *s);
|
|
void SetTitle(const char *Title);
|
|
void SetHelp(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL);
|
|
virtual void Del(int Index);
|
|
public:
|
|
cOsdMenu(const char *Title, int c0 = 0, int c1 = 0, int c2 = 0, int c3 = 0, int c4 = 0);
|
|
virtual ~cOsdMenu();
|
|
virtual bool NeedsFastResponse(void) { return subMenu ? subMenu->NeedsFastResponse() : cOsdObject::NeedsFastResponse(); }
|
|
int Current(void) const { return current; }
|
|
void Add(cOsdItem *Item, bool Current = false, cOsdItem *After = NULL);
|
|
void Ins(cOsdItem *Item, bool Current = false, cOsdItem *Before = NULL);
|
|
virtual void Display(void);
|
|
virtual eOSState ProcessKey(eKeys Key);
|
|
};
|
|
|
|
#endif //__OSDBASE_H
|