2000-02-19 13:36:48 +01:00
|
|
|
/*
|
|
|
|
* osd.c: 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.
|
|
|
|
*
|
2003-06-06 12:28:29 +02:00
|
|
|
* $Id: osd.c 1.43 2003/06/04 16:13:00 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "osd.h"
|
|
|
|
#include <string.h>
|
2002-06-16 12:57:31 +02:00
|
|
|
#include "device.h"
|
2000-11-11 10:39:27 +01:00
|
|
|
#include "i18n.h"
|
2002-05-19 15:50:11 +02:00
|
|
|
#include "status.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2002-05-18 14:03:22 +02:00
|
|
|
// --- cOsd ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
WINDOW *cOsd::window = NULL;
|
|
|
|
int cOsd::colorPairs[MaxColorPairs] = { 0 };
|
|
|
|
#else
|
2002-07-13 12:47:06 +02:00
|
|
|
cOsdBase *cOsd::osd = NULL;
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
int cOsd::cols = 0;
|
|
|
|
int cOsd::rows = 0;
|
|
|
|
|
|
|
|
void cOsd::Initialize(void)
|
|
|
|
{
|
|
|
|
#if defined(DEBUG_OSD)
|
2002-12-08 14:30:32 +01:00
|
|
|
initscr();
|
2002-05-18 14:03:22 +02:00
|
|
|
start_color();
|
|
|
|
leaveok(stdscr, true);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Shutdown(void)
|
|
|
|
{
|
|
|
|
Close();
|
2002-12-08 14:30:32 +01:00
|
|
|
#if defined(DEBUG_OSD)
|
2002-05-18 14:03:22 +02:00
|
|
|
endwin();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
void cOsd::SetColor(eDvbColor colorFg, eDvbColor colorBg)
|
|
|
|
{
|
|
|
|
int color = (colorBg << 16) | colorFg | 0x80000000;
|
|
|
|
for (int i = 0; i < MaxColorPairs; i++) {
|
|
|
|
if (!colorPairs[i]) {
|
|
|
|
colorPairs[i] = color;
|
|
|
|
init_pair(i + 1, colorFg, colorBg);
|
|
|
|
wattrset(window, COLOR_PAIR(i + 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (color == colorPairs[i]) {
|
|
|
|
wattrset(window, COLOR_PAIR(i + 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-07-13 12:47:06 +02:00
|
|
|
cOsdBase *cOsd::OpenRaw(int x, int y)
|
|
|
|
{
|
2002-07-14 11:05:30 +02:00
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return NULL;
|
|
|
|
#else
|
2002-08-25 09:36:09 +02:00
|
|
|
return osd ? NULL : cDevice::PrimaryDevice()->NewOsd(x, y);
|
2002-07-14 11:05:30 +02:00
|
|
|
#endif
|
2002-07-13 12:47:06 +02:00
|
|
|
}
|
|
|
|
|
2002-05-18 14:03:22 +02:00
|
|
|
void cOsd::Open(int w, int h)
|
|
|
|
{
|
|
|
|
int d = (h < 0) ? Setup.OSDheight + h : 0;
|
|
|
|
h = abs(h);
|
|
|
|
cols = w;
|
|
|
|
rows = h;
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
window = subwin(stdscr, h, w, d, (Setup.OSDwidth - w) / 2);
|
|
|
|
syncok(window, true);
|
|
|
|
#define B2C(b) (((b) * 1000) / 255)
|
|
|
|
#define SETCOLOR(n, r, g, b, o) init_color(n, B2C(r), B2C(g), B2C(b))
|
|
|
|
//XXX
|
|
|
|
SETCOLOR(clrBackground, 0x00, 0x00, 0x00, 127); // background 50% gray
|
|
|
|
SETCOLOR(clrBlack, 0x00, 0x00, 0x00, 255);
|
|
|
|
SETCOLOR(clrRed, 0xFC, 0x14, 0x14, 255);
|
|
|
|
SETCOLOR(clrGreen, 0x24, 0xFC, 0x24, 255);
|
|
|
|
SETCOLOR(clrYellow, 0xFC, 0xC0, 0x24, 255);
|
|
|
|
SETCOLOR(clrBlue, 0x00, 0x00, 0xFC, 255);
|
|
|
|
SETCOLOR(clrCyan, 0x00, 0xFC, 0xFC, 255);
|
|
|
|
SETCOLOR(clrMagenta, 0xB0, 0x00, 0xFC, 255);
|
|
|
|
SETCOLOR(clrWhite, 0xFC, 0xFC, 0xFC, 255);
|
|
|
|
#else
|
|
|
|
w *= charWidth;
|
|
|
|
h *= lineHeight;
|
|
|
|
d *= lineHeight;
|
|
|
|
int x = (720 - w + charWidth) / 2; //TODO PAL vs. NTSC???
|
|
|
|
int y = (576 - Setup.OSDheight * lineHeight) / 2 + d;
|
|
|
|
//XXX
|
2002-07-13 12:47:06 +02:00
|
|
|
osd = OpenRaw(x, y);
|
2002-05-18 14:03:22 +02:00
|
|
|
//XXX TODO this should be transferred to the places where the individual windows are requested (there's too much detailed knowledge here!)
|
2003-06-06 12:28:29 +02:00
|
|
|
if (!osd)
|
|
|
|
return;
|
2002-05-18 14:03:22 +02:00
|
|
|
if (h / lineHeight == 5) { //XXX channel display
|
|
|
|
osd->Create(0, 0, w, h, 4);
|
|
|
|
}
|
|
|
|
else if (h / lineHeight == 1) { //XXX info display
|
|
|
|
osd->Create(0, 0, w, h, 4);
|
|
|
|
}
|
|
|
|
else if (d == 0) { //XXX full menu
|
|
|
|
osd->Create(0, 0, w, lineHeight, 2);
|
|
|
|
osd->Create(0, lineHeight, w, (Setup.OSDheight - 3) * lineHeight, 2);
|
|
|
|
osd->AddColor(clrBackground);
|
|
|
|
osd->AddColor(clrCyan);
|
|
|
|
osd->AddColor(clrWhite);
|
|
|
|
osd->AddColor(clrBlack);
|
|
|
|
osd->Create(0, (Setup.OSDheight - 2) * lineHeight, w, 2 * lineHeight, 4);
|
|
|
|
}
|
|
|
|
else { //XXX progress display
|
|
|
|
/*XXX
|
|
|
|
osd->Create(0, 0, w, lineHeight, 1);
|
|
|
|
osd->Create(0, lineHeight, w, lineHeight, 2, false);
|
|
|
|
osd->Create(0, 2 * lineHeight, w, lineHeight, 1);
|
|
|
|
XXX*///XXX some pixels are not drawn correctly with lower bpp values
|
2002-08-15 11:20:44 +02:00
|
|
|
osd->Create(0, 0, w, h, 4);
|
2002-05-18 14:03:22 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Close(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
if (window) {
|
|
|
|
delwin(window);
|
|
|
|
window = 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
delete osd;
|
|
|
|
osd = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Clear(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(clrBackground, clrBackground);
|
|
|
|
Fill(0, 0, cols, rows, clrBackground);
|
2002-12-08 14:30:32 +01:00
|
|
|
refresh();
|
2002-05-18 14:03:22 +02:00
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
if (osd)
|
|
|
|
osd->Clear();
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Fill(int x, int y, int w, int h, eDvbColor color)
|
|
|
|
{
|
|
|
|
if (x < 0) x = cols + x;
|
|
|
|
if (y < 0) y = rows + y;
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(color, color);
|
|
|
|
for (int r = 0; r < h; r++) {
|
|
|
|
wmove(window, y + r, x); // ncurses wants 'y' before 'x'!
|
|
|
|
whline(window, ' ', w);
|
|
|
|
}
|
|
|
|
wsyncup(window); // shouldn't be necessary because of 'syncok()', but w/o it doesn't work
|
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
if (osd)
|
|
|
|
osd->Fill(x * charWidth, y * lineHeight, (x + w) * charWidth - 1, (y + h) * lineHeight - 1, color);
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::SetBitmap(int x, int y, const cBitmap &Bitmap)
|
|
|
|
{
|
|
|
|
#ifndef DEBUG_OSD
|
2003-06-06 12:28:29 +02:00
|
|
|
if (osd)
|
|
|
|
osd->SetBitmap(x, y, Bitmap);
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::ClrEol(int x, int y, eDvbColor color)
|
|
|
|
{
|
|
|
|
Fill(x, y, cols - x, 1, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cOsd::CellWidth(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return charWidth;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int cOsd::LineHeight(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return lineHeight;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int cOsd::Width(unsigned char c)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
return osd ? osd->Width(c) : 1;
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int cOsd::WidthInCells(const char *s)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return strlen(s);
|
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
return osd ? (osd->Width(s) + charWidth - 1) / charWidth : strlen(s);
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
eDvbFont cOsd::SetFont(eDvbFont Font)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return Font;
|
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
return osd ? osd->SetFont(Font) : Font;
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Text(int x, int y, const char *s, eDvbColor colorFg, eDvbColor colorBg)
|
|
|
|
{
|
|
|
|
if (x < 0) x = cols + x;
|
|
|
|
if (y < 0) y = rows + y;
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(colorFg, colorBg);
|
|
|
|
wmove(window, y, x); // ncurses wants 'y' before 'x'!
|
|
|
|
waddnstr(window, s, cols - x);
|
|
|
|
#else
|
2003-06-06 12:28:29 +02:00
|
|
|
if (osd)
|
|
|
|
osd->Text(x * charWidth, y * lineHeight, s, colorFg, colorBg);
|
2002-05-18 14:03:22 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsd::Flush(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
refresh();
|
|
|
|
#else
|
|
|
|
if (osd)
|
|
|
|
osd->Flush();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
// --- cOsdItem --------------------------------------------------------------
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
cOsdItem::cOsdItem(eOSState State)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
text = NULL;
|
|
|
|
offset = -1;
|
2000-03-11 11:22:37 +01:00
|
|
|
state = State;
|
2000-02-19 13:36:48 +01:00
|
|
|
fresh = false;
|
2000-09-09 14:57:43 +02:00
|
|
|
userColor = false;
|
|
|
|
fgColor = clrWhite;
|
|
|
|
bgColor = clrBackground;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
cOsdItem::cOsdItem(const char *Text, eOSState State)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
text = NULL;
|
|
|
|
offset = -1;
|
2000-03-11 11:22:37 +01:00
|
|
|
state = State;
|
2000-02-19 13:36:48 +01:00
|
|
|
fresh = false;
|
2000-09-09 14:57:43 +02:00
|
|
|
userColor = false;
|
|
|
|
fgColor = clrWhite;
|
|
|
|
bgColor = clrBackground;
|
2000-02-19 13:36:48 +01:00
|
|
|
SetText(Text);
|
|
|
|
}
|
|
|
|
|
|
|
|
cOsdItem::~cOsdItem()
|
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(text);
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-23 15:38:16 +02:00
|
|
|
void cOsdItem::SetText(const char *Text, bool Copy)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(text);
|
|
|
|
text = Copy ? strdup(Text) : (char *)Text; // text assumes ownership!
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-09-09 14:57:43 +02:00
|
|
|
void cOsdItem::SetColor(eDvbColor FgColor, eDvbColor BgColor)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-09-09 14:57:43 +02:00
|
|
|
userColor = true;
|
|
|
|
fgColor = FgColor;
|
|
|
|
bgColor = BgColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdItem::Display(int Offset, eDvbColor FgColor, eDvbColor BgColor)
|
|
|
|
{
|
|
|
|
if (Offset < 0) {
|
|
|
|
FgColor = clrBlack;
|
|
|
|
BgColor = clrCyan;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
fresh |= Offset >= 0;
|
|
|
|
if (Offset >= 0)
|
|
|
|
offset = Offset;
|
|
|
|
if (offset >= 0)
|
2000-10-08 12:24:30 +02:00
|
|
|
Interface->WriteText(0, offset + 2, text, userColor ? fgColor : FgColor, userColor ? bgColor : BgColor);
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cOsdItem::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
return Key == kOk ? state : osUnknown;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cOsdMenu --------------------------------------------------------------
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
cOsdMenu::cOsdMenu(const char *Title, int c0, int c1, int c2, int c3, int c4)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2002-11-24 10:45:39 +01:00
|
|
|
isMenu = true;
|
2002-03-29 16:45:36 +01:00
|
|
|
digit = 0;
|
2001-02-03 15:28:49 +01:00
|
|
|
hasHotkeys = false;
|
2000-03-11 11:22:37 +01:00
|
|
|
visible = false;
|
2001-08-25 13:27:26 +02:00
|
|
|
title = NULL;
|
|
|
|
SetTitle(Title);
|
2000-02-19 13:36:48 +01:00
|
|
|
cols[0] = c0;
|
|
|
|
cols[1] = c1;
|
|
|
|
cols[2] = c2;
|
|
|
|
cols[3] = c3;
|
|
|
|
cols[4] = c4;
|
2000-03-11 11:22:37 +01:00
|
|
|
first = 0;
|
|
|
|
current = marked = -1;
|
2000-02-19 13:36:48 +01:00
|
|
|
subMenu = NULL;
|
2000-03-11 11:22:37 +01:00
|
|
|
helpRed = helpGreen = helpYellow = helpBlue = NULL;
|
|
|
|
status = NULL;
|
2000-10-08 12:24:30 +02:00
|
|
|
Interface->Open();
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cOsdMenu::~cOsdMenu()
|
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(title);
|
2000-02-19 13:36:48 +01:00
|
|
|
delete subMenu;
|
2002-08-11 13:32:23 +02:00
|
|
|
free(status);
|
2000-10-08 12:24:30 +02:00
|
|
|
Interface->Clear();
|
|
|
|
Interface->Close();
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2002-03-16 10:03:04 +01:00
|
|
|
const char *cOsdMenu::hk(const char *s)
|
|
|
|
{
|
2002-05-09 16:26:56 +02:00
|
|
|
static char buffer[64];
|
2002-03-29 16:45:36 +01:00
|
|
|
if (s && hasHotkeys) {
|
|
|
|
if (digit == 0 && '1' <= *s && *s <= '9' && *(s + 1) == ' ')
|
2002-05-09 16:26:56 +02:00
|
|
|
digit = -1; // prevents automatic hotkeys - input already has them
|
|
|
|
if (digit >= 0) {
|
|
|
|
digit++;
|
|
|
|
snprintf(buffer, sizeof(buffer), " %c %s", (digit < 10) ? '0' + digit : ' ' , s);
|
2002-03-29 16:45:36 +01:00
|
|
|
s = buffer;
|
|
|
|
}
|
2002-03-16 10:03:04 +01:00
|
|
|
}
|
2002-03-29 16:45:36 +01:00
|
|
|
return s;
|
2002-03-16 10:03:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::SetHasHotkeys(void)
|
|
|
|
{
|
|
|
|
hasHotkeys = true;
|
|
|
|
digit = 0;
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
void cOsdMenu::SetStatus(const char *s)
|
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(status);
|
2000-03-11 11:22:37 +01:00
|
|
|
status = s ? strdup(s) : NULL;
|
|
|
|
if (visible)
|
2000-10-08 12:24:30 +02:00
|
|
|
Interface->Status(status);
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
2001-08-25 13:27:26 +02:00
|
|
|
void cOsdMenu::SetTitle(const char *Title, bool ShowDate)
|
2000-10-29 13:17:22 +01:00
|
|
|
{
|
2002-08-11 13:32:23 +02:00
|
|
|
free(title);
|
2001-08-25 13:27:26 +02:00
|
|
|
if (ShowDate)
|
|
|
|
asprintf(&title, "%s\t%s", Title, DayDateTime(time(NULL)));
|
|
|
|
else
|
|
|
|
title = strdup(Title);
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
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;
|
2000-09-09 14:57:43 +02:00
|
|
|
if (visible)
|
2002-01-26 11:13:48 +01:00
|
|
|
Interface->Help(helpRed, helpGreen, helpYellow, helpBlue);
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::Del(int Index)
|
|
|
|
{
|
|
|
|
cList<cOsdItem>::Del(Get(Index));
|
|
|
|
if (current == Count())
|
|
|
|
current--;
|
|
|
|
if (Index == first && first > 0)
|
|
|
|
first--;
|
|
|
|
}
|
|
|
|
|
2002-05-12 14:46:46 +02:00
|
|
|
void cOsdMenu::Add(cOsdItem *Item, bool Current, cOsdItem *After)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2002-05-12 14:46:46 +02:00
|
|
|
cList<cOsdItem>::Add(Item, After);
|
|
|
|
if (Current)
|
|
|
|
current = Item->Index();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::Ins(cOsdItem *Item, bool Current, cOsdItem *Before)
|
|
|
|
{
|
|
|
|
cList<cOsdItem>::Ins(Item, Before);
|
2000-03-11 11:22:37 +01:00
|
|
|
if (Current)
|
2000-02-19 13:36:48 +01:00
|
|
|
current = Item->Index();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::Display(void)
|
|
|
|
{
|
2002-01-20 14:05:28 +01:00
|
|
|
if (subMenu) {
|
|
|
|
subMenu->Display();
|
|
|
|
return;
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
visible = true;
|
2000-10-08 12:24:30 +02:00
|
|
|
Interface->Clear();
|
|
|
|
Interface->SetCols(cols);
|
|
|
|
Interface->Title(title);
|
|
|
|
Interface->Help(helpRed, helpGreen, helpYellow, helpBlue);
|
2000-03-11 11:22:37 +01:00
|
|
|
int count = Count();
|
|
|
|
if (count > 0) {
|
2003-05-03 14:55:17 +02:00
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
cOsdItem *item = Get(i);
|
|
|
|
if (item)
|
|
|
|
cStatus::MsgOsdItem(item->Text(), i);
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
if (current < 0)
|
|
|
|
current = 0; // just for safety - there HAS to be a current item!
|
|
|
|
int n = 0;
|
|
|
|
if (current - first >= MAXOSDITEMS) {
|
|
|
|
first = current - MAXOSDITEMS / 2;
|
|
|
|
if (first + MAXOSDITEMS > count)
|
|
|
|
first = count - MAXOSDITEMS;
|
|
|
|
if (first < 0)
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
for (int i = first; i < count; i++) {
|
|
|
|
cOsdItem *item = Get(i);
|
2002-05-19 15:50:11 +02:00
|
|
|
if (item) {
|
2000-09-09 14:57:43 +02:00
|
|
|
item->Display(i - first, i == current ? clrBlack : clrWhite, i == current ? clrCyan : clrBackground);
|
2002-05-19 15:50:11 +02:00
|
|
|
if (i == current)
|
2002-06-16 13:26:00 +02:00
|
|
|
cStatus::MsgOsdCurrentItem(item->Text());
|
2002-05-19 15:50:11 +02:00
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
if (++n == MAXOSDITEMS) //TODO get this from Interface!!!
|
|
|
|
break;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-11-01 11:45:05 +01:00
|
|
|
if (!isempty(status))
|
|
|
|
Interface->Status(status);
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2002-01-20 14:05:28 +01:00
|
|
|
void cOsdMenu::SetCurrent(cOsdItem *Item)
|
|
|
|
{
|
|
|
|
current = Item ? Item->Index() : -1;
|
|
|
|
}
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
void cOsdMenu::RefreshCurrent(void)
|
|
|
|
{
|
|
|
|
cOsdItem *item = Get(current);
|
|
|
|
if (item)
|
|
|
|
item->Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::DisplayCurrent(bool Current)
|
|
|
|
{
|
|
|
|
cOsdItem *item = Get(current);
|
2002-05-19 15:50:11 +02:00
|
|
|
if (item) {
|
2000-09-09 14:57:43 +02:00
|
|
|
item->Display(current - first, Current ? clrBlack : clrWhite, Current ? clrCyan : clrBackground);
|
2002-05-19 15:50:11 +02:00
|
|
|
if (Current)
|
2002-06-16 13:26:00 +02:00
|
|
|
cStatus::MsgOsdCurrentItem(item->Text());
|
2002-05-19 15:50:11 +02:00
|
|
|
}
|
2000-09-09 14:57:43 +02:00
|
|
|
}
|
|
|
|
|
2000-11-12 16:48:50 +01:00
|
|
|
void cOsdMenu::Clear(void)
|
|
|
|
{
|
|
|
|
first = 0;
|
|
|
|
current = marked = -1;
|
|
|
|
cList<cOsdItem>::Clear();
|
|
|
|
}
|
|
|
|
|
2000-09-09 14:57:43 +02:00
|
|
|
bool cOsdMenu::SpecialItem(int idx)
|
|
|
|
{
|
|
|
|
cOsdItem *item = Get(idx);
|
|
|
|
return item && item->HasUserColor();
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::CursorUp(void)
|
|
|
|
{
|
|
|
|
if (current > 0) {
|
2000-09-09 14:57:43 +02:00
|
|
|
int tmpCurrent = current;
|
|
|
|
while (--tmpCurrent >= 0 && SpecialItem(tmpCurrent));
|
|
|
|
if (tmpCurrent < 0)
|
|
|
|
return;
|
|
|
|
if (tmpCurrent >= first)
|
|
|
|
DisplayCurrent(false);
|
|
|
|
current = tmpCurrent;
|
|
|
|
if (current < first) {
|
|
|
|
first = first > MAXOSDITEMS - 1 ? first - (MAXOSDITEMS - 1) : 0;
|
2000-09-10 10:51:58 +02:00
|
|
|
if (Setup.MenuScrollPage)
|
|
|
|
current = SpecialItem(first) ? first + 1 : first;
|
2000-02-19 13:36:48 +01:00
|
|
|
Display();
|
|
|
|
}
|
2000-09-09 14:57:43 +02:00
|
|
|
else
|
2000-02-19 13:36:48 +01:00
|
|
|
DisplayCurrent(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::CursorDown(void)
|
|
|
|
{
|
2000-09-09 14:57:43 +02:00
|
|
|
int last = Count() - 1;
|
|
|
|
int lastOnScreen = first + MAXOSDITEMS - 1;
|
|
|
|
|
|
|
|
if (current < last) {
|
|
|
|
int tmpCurrent = current;
|
|
|
|
while (++tmpCurrent <= last && SpecialItem(tmpCurrent));
|
|
|
|
if (tmpCurrent > last)
|
|
|
|
return;
|
|
|
|
if (tmpCurrent <= lastOnScreen)
|
|
|
|
DisplayCurrent(false);
|
|
|
|
current = tmpCurrent;
|
|
|
|
if (current > lastOnScreen) {
|
|
|
|
first += MAXOSDITEMS - 1;
|
|
|
|
lastOnScreen = first + MAXOSDITEMS - 1;
|
|
|
|
if (lastOnScreen > last) {
|
|
|
|
first = last - (MAXOSDITEMS - 1);
|
|
|
|
lastOnScreen = last;
|
|
|
|
}
|
2000-09-10 10:51:58 +02:00
|
|
|
if (Setup.MenuScrollPage)
|
|
|
|
current = SpecialItem(lastOnScreen) ? lastOnScreen - 1 : lastOnScreen;
|
2000-02-19 13:36:48 +01:00
|
|
|
Display();
|
|
|
|
}
|
2000-09-09 14:57:43 +02:00
|
|
|
else
|
2000-02-19 13:36:48 +01:00
|
|
|
DisplayCurrent(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-03 14:35:28 +01:00
|
|
|
void cOsdMenu::PageUp(void)
|
|
|
|
{
|
|
|
|
current -= MAXOSDITEMS;
|
|
|
|
first -= MAXOSDITEMS;
|
2001-02-24 16:26:11 +01:00
|
|
|
if (first < 0)
|
|
|
|
first = current = 0;
|
2002-03-24 11:23:23 +01:00
|
|
|
if (SpecialItem(current)) {
|
|
|
|
current -= (current > 0) ? 1 : -1;
|
|
|
|
first = min(first, current - 1);
|
|
|
|
}
|
2001-02-03 14:35:28 +01:00
|
|
|
Display();
|
|
|
|
DisplayCurrent(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cOsdMenu::PageDown(void)
|
|
|
|
{
|
|
|
|
current += MAXOSDITEMS;
|
|
|
|
first += MAXOSDITEMS;
|
|
|
|
if (current > Count() - 1) {
|
2001-02-24 16:26:11 +01:00
|
|
|
current = Count() - 1;
|
2003-03-23 15:47:48 +01:00
|
|
|
first = max(0, Count() - MAXOSDITEMS);
|
2001-02-03 14:35:28 +01:00
|
|
|
}
|
2002-03-24 11:23:23 +01:00
|
|
|
if (SpecialItem(current)) {
|
|
|
|
current += (current < Count() - 1) ? 1 : -1;
|
|
|
|
first = max(first, current - MAXOSDITEMS);
|
|
|
|
}
|
2001-02-03 14:35:28 +01:00
|
|
|
Display();
|
|
|
|
DisplayCurrent(true);
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
void cOsdMenu::Mark(void)
|
|
|
|
{
|
|
|
|
if (Count() && marked < 0) {
|
|
|
|
marked = current;
|
2000-11-11 10:39:27 +01:00
|
|
|
SetStatus(tr("Up/Dn for new location - OK to move"));
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-03 15:28:49 +01:00
|
|
|
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();
|
2003-05-02 10:54:00 +02:00
|
|
|
cRemote::Put(kOk, true);
|
|
|
|
break;
|
2001-02-03 15:28:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cOsdMenu::AddSubMenu(cOsdMenu *SubMenu)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
delete subMenu;
|
|
|
|
subMenu = SubMenu;
|
|
|
|
subMenu->Display();
|
2002-11-10 15:50:21 +01:00
|
|
|
return osContinue; // convenience return value
|
|
|
|
}
|
|
|
|
|
|
|
|
eOSState cOsdMenu::CloseSubMenu()
|
|
|
|
{
|
|
|
|
delete subMenu;
|
|
|
|
subMenu = NULL;
|
|
|
|
RefreshCurrent();
|
|
|
|
Display();
|
|
|
|
return osContinue; // convenience return value
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState cOsdMenu::ProcessKey(eKeys Key)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
|
|
|
if (subMenu) {
|
2000-03-11 11:22:37 +01:00
|
|
|
eOSState state = subMenu->ProcessKey(Key);
|
2002-11-10 15:50:21 +01:00
|
|
|
if (state == osBack)
|
|
|
|
return CloseSubMenu();
|
2000-03-11 11:22:37 +01:00
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cOsdItem *item = Get(current);
|
2000-03-11 11:22:37 +01:00
|
|
|
if (marked < 0 && item) {
|
|
|
|
eOSState state = item->ProcessKey(Key);
|
|
|
|
if (state != osUnknown)
|
|
|
|
return state;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
switch (Key) {
|
2002-10-13 12:14:49 +02:00
|
|
|
case k1...k9: return hasHotkeys ? HotKey(Key) : osUnknown;
|
2000-10-08 11:39:11 +02:00
|
|
|
case kUp|k_Repeat:
|
2000-02-19 13:36:48 +01:00
|
|
|
case kUp: CursorUp(); break;
|
2000-10-08 11:39:11 +02:00
|
|
|
case kDown|k_Repeat:
|
2000-02-19 13:36:48 +01:00
|
|
|
case kDown: CursorDown(); break;
|
2001-02-03 14:35:28 +01:00
|
|
|
case kLeft|k_Repeat:
|
|
|
|
case kLeft: PageUp(); break;
|
|
|
|
case kRight|k_Repeat:
|
|
|
|
case kRight: PageDown(); break;
|
2000-02-19 13:36:48 +01:00
|
|
|
case kBack: return osBack;
|
2000-03-11 11:22:37 +01:00
|
|
|
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;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
return osContinue;
|
|
|
|
}
|
|
|
|
|