mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Updated the Italian OSD texts (thanks to Diego Pierotto). - Added option -i to the pictures plugin's pic2mpg to ignore unknown file types. - Revoked the switch to the "multiproto" driver in order to make a new stable version before making this big switch and forcing all users to install a driver that is not yet in the kernel source. The removed code will reappear in version 1.7.0. Note that you may need to switch back to an older version of your channels.conf file if you have already used version 1.5.14, because it introduced new parameters. - Added the new command line option --userdump to enable core dumps in case VDR is run as root with option -u (thanks to Hans-Werner Hilse). - Speeded up anti-aliased font rendering by caching the blend indexes (based on a suggestion by Martin Wache). - Fixed setting the OSD area in the pictures plugin. - Ignoring "repeat" and "release" keys in the time search entry mode during replay, to avoid inadvertently leaving it in case a key is pressed too long (suggested by Andreas Brugger). - Improved sending all frames to devices that can handle them in fast forward trick speeds, including subtitles (thanks to Timo Eskola). - The section handler is now stopped before the device is destroyed, to avoid accessing file handles after they have become invalid (thanks to Reinhard Nissl for reporting an invalid access when ending VDR, and to Deti Fliegl for a patch that was used to implement StopSectionHandler()). - Fixed setting the date in the channel display of the classic and sttng skins, to avoid unnecessary OSD access (thanks to Marco Schlüßler). - The free disk space is now also displayed in the title of the "Recordings" menu (suggested by Walter Koch). - Changed the message "Upcoming VPS recording!" to "Upcoming recording!" because it applies to non-VPS recordings as well. - Fixed a loss of a timer's 'recording' flag after modifying it via MODT. - Fixed detecting directories in cFileNameList::Load(). - Running the thread that removes deleted recordings at a low priority to (maybe) avoid stuttering replay in case the thread is run during replay. - Limiting the length of the recording name in timers in case VDR is run with --vfat, in order to avoid names that are too long for Windows (suggested by Rolf Ahrenberg). - Using cString::sprintf() instead of asprintf() (thanks to Wolfgang Rohdewald for pointing out a possible problem if the return value is not checked). Plugin authors may want to consider doing the same. For convenience there is now an additional version of cString::sprintf() that accepts a va_list parameter. - When deleting the recording that is currently replayed, the replay is now stopped immediately (thanks to Mikko Matilainen for reporting a possible crash if the Info key is pressed after deleting the currently replayed recording). - Updated the Russian OSD texts (thanks to Oleg Roitburd). - When determining the amount of free disk space, any deleted (but not yet removed) recordings on different file systems (that are mounted under the video directory) are no longer taken into account. - When running out of disk space during a recording, only such deleted or old recordings are removed, that actually are on the video directory file system(s). This prevents VDR from accidentally deleting recordings on other file systems, which would not add any free space to the video directory. - Implemented the cStatus, cDevice and cPlayer functions for setting subtitle tracks in plugins (thanks to Petri Hintukainen). - Added cStatus::TimerChange() to inform plugins about changes to the list of timers (based on a patch from Benedikt Elser). - Added new cStatus functions to the 'status' plugin. - Added missing #include <limits.h> to epg.c and menuitems.h (thanks to Ville Skyttä). - The new function cSkin::SetScrollbar() can be implemented by skins to display a scrollbar in every list menu. The 'classic' and 'sttng' skins have been changed accordingly, as well as the 'skincurses' plugin. - Introduced 'operator const void * ()' in cString to catch cases where operator*() should be used. - Fixed calculating the scrollbar sizes in the skins.
527 lines
13 KiB
C
527 lines
13 KiB
C
/*
|
|
* osdbase.c: 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.c 1.32 2008/02/17 11:33:04 kls Exp $
|
|
*/
|
|
|
|
#include "osdbase.h"
|
|
#include <string.h>
|
|
#include "device.h"
|
|
#include "i18n.h"
|
|
#include "remote.h"
|
|
#include "status.h"
|
|
|
|
// --- cOsdItem --------------------------------------------------------------
|
|
|
|
cOsdItem::cOsdItem(eOSState State)
|
|
{
|
|
text = NULL;
|
|
state = State;
|
|
selectable = true;
|
|
fresh = true;
|
|
}
|
|
|
|
cOsdItem::cOsdItem(const char *Text, eOSState State, bool Selectable)
|
|
{
|
|
text = NULL;
|
|
state = State;
|
|
selectable = Selectable;
|
|
fresh = true;
|
|
SetText(Text);
|
|
}
|
|
|
|
cOsdItem::~cOsdItem()
|
|
{
|
|
free(text);
|
|
}
|
|
|
|
void cOsdItem::SetText(const char *Text, bool Copy)
|
|
{
|
|
free(text);
|
|
text = Copy ? strdup(Text) : (char *)Text; // text assumes ownership!
|
|
}
|
|
|
|
void cOsdItem::SetSelectable(bool Selectable)
|
|
{
|
|
selectable = Selectable;
|
|
}
|
|
|
|
void cOsdItem::SetFresh(bool Fresh)
|
|
{
|
|
fresh = Fresh;
|
|
}
|
|
|
|
eOSState cOsdItem::ProcessKey(eKeys Key)
|
|
{
|
|
return Key == kOk ? state : osUnknown;
|
|
}
|
|
|
|
// --- cOsdObject ------------------------------------------------------------
|
|
|
|
void cOsdObject::Show(void)
|
|
{
|
|
if (isMenu)
|
|
((cOsdMenu *)this)->Display();
|
|
}
|
|
|
|
// --- cOsdMenu --------------------------------------------------------------
|
|
|
|
cSkinDisplayMenu *cOsdMenu::displayMenu = NULL;
|
|
int cOsdMenu::displayMenuCount = 0;
|
|
int cOsdMenu::displayMenuItems = 0;//XXX dynamic???
|
|
|
|
cOsdMenu::cOsdMenu(const char *Title, int c0, int c1, int c2, int c3, int c4)
|
|
{
|
|
isMenu = true;
|
|
digit = 0;
|
|
hasHotkeys = false;
|
|
title = NULL;
|
|
SetTitle(Title);
|
|
SetCols(c0, c1, c2, c3, c4);
|
|
first = 0;
|
|
current = marked = -1;
|
|
subMenu = NULL;
|
|
helpRed = helpGreen = helpYellow = helpBlue = NULL;
|
|
status = NULL;
|
|
if (!displayMenuCount++)
|
|
SetDisplayMenu();
|
|
}
|
|
|
|
cOsdMenu::~cOsdMenu()
|
|
{
|
|
free(title);
|
|
delete subMenu;
|
|
free(status);
|
|
displayMenu->Clear();
|
|
cStatus::MsgOsdClear();
|
|
if (!--displayMenuCount)
|
|
DELETENULL(displayMenu);
|
|
}
|
|
|
|
void cOsdMenu::SetDisplayMenu(void)
|
|
{
|
|
if (displayMenu) {
|
|
displayMenu->Clear();
|
|
delete displayMenu;
|
|
}
|
|
displayMenu = Skins.Current()->DisplayMenu();
|
|
displayMenuItems = displayMenu->MaxItems();
|
|
}
|
|
|
|
const char *cOsdMenu::hk(const char *s)
|
|
{
|
|
static cString buffer;
|
|
if (s && hasHotkeys) {
|
|
if (digit == 0 && '1' <= *s && *s <= '9' && *(s + 1) == ' ')
|
|
digit = -1; // prevents automatic hotkeys - input already has them
|
|
if (digit >= 0) {
|
|
digit++;
|
|
buffer = cString::sprintf(" %c %s", (digit < 10) ? '0' + digit : ' ' , s);
|
|
s = buffer;
|
|
}
|
|
}
|
|
return s;
|
|
}
|
|
|
|
void cOsdMenu::SetCols(int c0, int c1, int c2, int c3, int c4)
|
|
{
|
|
cols[0] = c0;
|
|
cols[1] = c1;
|
|
cols[2] = c2;
|
|
cols[3] = c3;
|
|
cols[4] = c4;
|
|
}
|
|
|
|
void cOsdMenu::SetHasHotkeys(bool HasHotkeys)
|
|
{
|
|
hasHotkeys = HasHotkeys;
|
|
digit = 0;
|
|
}
|
|
|
|
void cOsdMenu::SetStatus(const char *s)
|
|
{
|
|
free(status);
|
|
status = s ? strdup(s) : NULL;
|
|
displayMenu->SetMessage(mtStatus, s);
|
|
}
|
|
|
|
void cOsdMenu::SetTitle(const char *Title)
|
|
{
|
|
free(title);
|
|
title = strdup(Title);
|
|
}
|
|
|
|
void cOsdMenu::SetHelp(const char *Red, const char *Green, const char *Yellow, const char *Blue)
|
|
{
|
|
// strings are NOT copied - must be constants!!!
|
|
helpRed = Red;
|
|
helpGreen = Green;
|
|
helpYellow = Yellow;
|
|
helpBlue = Blue;
|
|
displayMenu->SetButtons(helpRed, helpGreen, helpYellow, helpBlue);
|
|
cStatus::MsgOsdHelpKeys(helpRed, helpGreen, helpYellow, helpBlue);
|
|
}
|
|
|
|
void cOsdMenu::Del(int Index)
|
|
{
|
|
cList<cOsdItem>::Del(Get(Index));
|
|
int count = Count();
|
|
while (current < count && !SelectableItem(current))
|
|
current++;
|
|
if (current == count) {
|
|
while (current > 0 && !SelectableItem(current))
|
|
current--;
|
|
}
|
|
if (Index == first && first > 0)
|
|
first--;
|
|
}
|
|
|
|
void cOsdMenu::Add(cOsdItem *Item, bool Current, cOsdItem *After)
|
|
{
|
|
cList<cOsdItem>::Add(Item, After);
|
|
if (Current)
|
|
current = Item->Index();
|
|
}
|
|
|
|
void cOsdMenu::Ins(cOsdItem *Item, bool Current, cOsdItem *Before)
|
|
{
|
|
cList<cOsdItem>::Ins(Item, Before);
|
|
if (Current)
|
|
current = Item->Index();
|
|
}
|
|
|
|
void cOsdMenu::Display(void)
|
|
{
|
|
if (subMenu) {
|
|
subMenu->Display();
|
|
return;
|
|
}
|
|
displayMenu->SetMessage(mtStatus, NULL);
|
|
displayMenu->Clear();
|
|
cStatus::MsgOsdClear();
|
|
displayMenu->SetTabs(cols[0], cols[1], cols[2], cols[3], cols[4]);//XXX
|
|
displayMenu->SetTitle(title);
|
|
cStatus::MsgOsdTitle(title);
|
|
displayMenu->SetButtons(helpRed, helpGreen, helpYellow, helpBlue);
|
|
cStatus::MsgOsdHelpKeys(helpRed, helpGreen, helpYellow, helpBlue);
|
|
int count = Count();
|
|
if (count > 0) {
|
|
int ni = 0;
|
|
for (cOsdItem *item = First(); item; item = Next(item)) {
|
|
cStatus::MsgOsdItem(item->Text(), ni++);
|
|
if (current < 0 && item->Selectable())
|
|
current = item->Index();
|
|
}
|
|
if (current < 0)
|
|
current = 0; // just for safety - there HAS to be a current item!
|
|
if (current - first >= displayMenuItems || current < first) {
|
|
first = current - displayMenuItems / 2;
|
|
if (first + displayMenuItems > count)
|
|
first = count - displayMenuItems;
|
|
if (first < 0)
|
|
first = 0;
|
|
}
|
|
int i = first;
|
|
int n = 0;
|
|
for (cOsdItem *item = Get(first); item; item = Next(item)) {
|
|
bool CurrentSelectable = (i == current) && item->Selectable();
|
|
displayMenu->SetItem(item->Text(), i - first, CurrentSelectable, item->Selectable());
|
|
if (CurrentSelectable)
|
|
cStatus::MsgOsdCurrentItem(item->Text());
|
|
if (++n == displayMenuItems)
|
|
break;
|
|
i++;
|
|
}
|
|
}
|
|
displayMenu->SetScrollbar(count, first);
|
|
if (!isempty(status))
|
|
displayMenu->SetMessage(mtStatus, status);
|
|
}
|
|
|
|
void cOsdMenu::SetCurrent(cOsdItem *Item)
|
|
{
|
|
current = Item ? Item->Index() : -1;
|
|
}
|
|
|
|
void cOsdMenu::RefreshCurrent(void)
|
|
{
|
|
cOsdItem *item = Get(current);
|
|
if (item)
|
|
item->Set();
|
|
}
|
|
|
|
void cOsdMenu::DisplayCurrent(bool Current)
|
|
{
|
|
cOsdItem *item = Get(current);
|
|
if (item) {
|
|
displayMenu->SetItem(item->Text(), current - first, Current && item->Selectable(), item->Selectable());
|
|
if (Current && item->Selectable())
|
|
cStatus::MsgOsdCurrentItem(item->Text());
|
|
if (!Current)
|
|
item->SetFresh(true); // leaving the current item resets 'fresh'
|
|
}
|
|
}
|
|
|
|
void cOsdMenu::DisplayItem(cOsdItem *Item)
|
|
{
|
|
if (Item) {
|
|
int Index = Item->Index();
|
|
int Offset = Index - first;
|
|
if (Offset >= 0 && Offset < first + displayMenuItems) {
|
|
bool Current = Index == current;
|
|
displayMenu->SetItem(Item->Text(), Offset, Current && Item->Selectable(), Item->Selectable());
|
|
if (Current && Item->Selectable())
|
|
cStatus::MsgOsdCurrentItem(Item->Text());
|
|
}
|
|
}
|
|
}
|
|
|
|
void cOsdMenu::Clear(void)
|
|
{
|
|
if (marked >= 0)
|
|
SetStatus(NULL);
|
|
first = 0;
|
|
current = marked = -1;
|
|
cList<cOsdItem>::Clear();
|
|
}
|
|
|
|
bool cOsdMenu::SelectableItem(int idx)
|
|
{
|
|
cOsdItem *item = Get(idx);
|
|
return item && item->Selectable();
|
|
}
|
|
|
|
void cOsdMenu::CursorUp(void)
|
|
{
|
|
int tmpCurrent = current;
|
|
int lastOnScreen = first + displayMenuItems - 1;
|
|
int last = Count() - 1;
|
|
if (last < 0)
|
|
return;
|
|
while (--tmpCurrent != current) {
|
|
if (tmpCurrent < 0) {
|
|
if (first > 0) {
|
|
// make non-selectable items at the beginning visible:
|
|
first = 0;
|
|
Display();
|
|
return;
|
|
}
|
|
if (Setup.MenuScrollWrap)
|
|
tmpCurrent = last + 1;
|
|
else
|
|
return;
|
|
}
|
|
else if (SelectableItem(tmpCurrent))
|
|
break;
|
|
}
|
|
if (first <= tmpCurrent && tmpCurrent <= lastOnScreen)
|
|
DisplayCurrent(false);
|
|
current = tmpCurrent;
|
|
if (current < first) {
|
|
first = Setup.MenuScrollPage ? max(0, current - displayMenuItems + 1) : current;
|
|
Display();
|
|
}
|
|
else if (current > lastOnScreen) {
|
|
first = max(0, current - displayMenuItems + 1);
|
|
Display();
|
|
}
|
|
else
|
|
DisplayCurrent(true);
|
|
}
|
|
|
|
void cOsdMenu::CursorDown(void)
|
|
{
|
|
int tmpCurrent = current;
|
|
int lastOnScreen = first + displayMenuItems - 1;
|
|
int last = Count() - 1;
|
|
if (last < 0)
|
|
return;
|
|
while (++tmpCurrent != current) {
|
|
if (tmpCurrent > last) {
|
|
if (first < last - displayMenuItems) {
|
|
// make non-selectable items at the end visible:
|
|
first = last - displayMenuItems + 1;
|
|
Display();
|
|
return;
|
|
}
|
|
if (Setup.MenuScrollWrap)
|
|
tmpCurrent = -1;
|
|
else
|
|
return;
|
|
}
|
|
else if (SelectableItem(tmpCurrent))
|
|
break;
|
|
}
|
|
if (first <= tmpCurrent && tmpCurrent <= lastOnScreen)
|
|
DisplayCurrent(false);
|
|
current = tmpCurrent;
|
|
if (current > lastOnScreen) {
|
|
first = Setup.MenuScrollPage ? current : max(0, current - displayMenuItems + 1);
|
|
if (first + displayMenuItems > last)
|
|
first = max(0, last - displayMenuItems + 1);
|
|
Display();
|
|
}
|
|
else if (current < first) {
|
|
first = current;
|
|
Display();
|
|
}
|
|
else
|
|
DisplayCurrent(true);
|
|
}
|
|
|
|
void cOsdMenu::PageUp(void)
|
|
{
|
|
int oldCurrent = current;
|
|
int oldFirst = first;
|
|
current -= displayMenuItems;
|
|
first -= displayMenuItems;
|
|
int last = Count() - 1;
|
|
if (current < 0)
|
|
current = 0;
|
|
if (first < 0)
|
|
first = 0;
|
|
int tmpCurrent = current;
|
|
while (!SelectableItem(tmpCurrent) && --tmpCurrent >= 0)
|
|
;
|
|
if (tmpCurrent < 0) {
|
|
tmpCurrent = current;
|
|
while (++tmpCurrent <= last && !SelectableItem(tmpCurrent))
|
|
;
|
|
}
|
|
current = tmpCurrent <= last ? tmpCurrent : -1;
|
|
if (current >= 0) {
|
|
if (current < first)
|
|
first = current;
|
|
else if (current - first >= displayMenuItems)
|
|
first = current - displayMenuItems + 1;
|
|
}
|
|
if (current != oldCurrent || first != oldFirst) {
|
|
Display();
|
|
DisplayCurrent(true);
|
|
}
|
|
else if (Setup.MenuScrollWrap)
|
|
CursorUp();
|
|
}
|
|
|
|
void cOsdMenu::PageDown(void)
|
|
{
|
|
int oldCurrent = current;
|
|
int oldFirst = first;
|
|
current += displayMenuItems;
|
|
first += displayMenuItems;
|
|
int last = Count() - 1;
|
|
if (current > last)
|
|
current = last;
|
|
if (first + displayMenuItems > last)
|
|
first = max(0, last - displayMenuItems + 1);
|
|
int tmpCurrent = current;
|
|
while (!SelectableItem(tmpCurrent) && ++tmpCurrent <= last)
|
|
;
|
|
if (tmpCurrent > last) {
|
|
tmpCurrent = current;
|
|
while (--tmpCurrent >= 0 && !SelectableItem(tmpCurrent))
|
|
;
|
|
}
|
|
current = tmpCurrent > 0 ? tmpCurrent : -1;
|
|
if (current >= 0) {
|
|
if (current < first)
|
|
first = current;
|
|
else if (current - first >= displayMenuItems)
|
|
first = current - displayMenuItems + 1;
|
|
}
|
|
if (current != oldCurrent || first != oldFirst) {
|
|
Display();
|
|
DisplayCurrent(true);
|
|
}
|
|
else if (Setup.MenuScrollWrap)
|
|
CursorDown();
|
|
}
|
|
|
|
void cOsdMenu::Mark(void)
|
|
{
|
|
if (Count() && marked < 0) {
|
|
marked = current;
|
|
SetStatus(tr("Up/Dn for new location - OK to move"));
|
|
}
|
|
}
|
|
|
|
eOSState cOsdMenu::HotKey(eKeys Key)
|
|
{
|
|
for (cOsdItem *item = First(); item; item = Next(item)) {
|
|
const char *s = item->Text();
|
|
if (s && (s = skipspace(s)) != NULL) {
|
|
if (*s == Key - k1 + '1') {
|
|
current = item->Index();
|
|
RefreshCurrent();
|
|
Display();
|
|
cRemote::Put(kOk, true);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return osContinue;
|
|
}
|
|
|
|
eOSState cOsdMenu::AddSubMenu(cOsdMenu *SubMenu)
|
|
{
|
|
delete subMenu;
|
|
subMenu = SubMenu;
|
|
subMenu->Display();
|
|
return osContinue; // convenience return value
|
|
}
|
|
|
|
eOSState cOsdMenu::CloseSubMenu()
|
|
{
|
|
delete subMenu;
|
|
subMenu = NULL;
|
|
RefreshCurrent();
|
|
Display();
|
|
return osContinue; // convenience return value
|
|
}
|
|
|
|
eOSState cOsdMenu::ProcessKey(eKeys Key)
|
|
{
|
|
if (subMenu) {
|
|
eOSState state = subMenu->ProcessKey(Key);
|
|
if (state == osBack)
|
|
return CloseSubMenu();
|
|
return state;
|
|
}
|
|
|
|
cOsdItem *item = Get(current);
|
|
if (marked < 0 && item) {
|
|
eOSState state = item->ProcessKey(Key);
|
|
if (state != osUnknown) {
|
|
DisplayCurrent(true);
|
|
return state;
|
|
}
|
|
}
|
|
switch (Key) {
|
|
case k0: return osUnknown;
|
|
case k1...k9: return hasHotkeys ? HotKey(Key) : osUnknown;
|
|
case kUp|k_Repeat:
|
|
case kUp: CursorUp(); break;
|
|
case kDown|k_Repeat:
|
|
case kDown: CursorDown(); break;
|
|
case kLeft|k_Repeat:
|
|
case kLeft: PageUp(); break;
|
|
case kRight|k_Repeat:
|
|
case kRight: PageDown(); break;
|
|
case kBack: return osBack;
|
|
case kOk: if (marked >= 0) {
|
|
SetStatus(NULL);
|
|
if (marked != current)
|
|
Move(marked, current);
|
|
marked = -1;
|
|
break;
|
|
}
|
|
// else run into default
|
|
default: if (marked < 0)
|
|
return osUnknown;
|
|
}
|
|
return osContinue;
|
|
}
|