summaryrefslogtreecommitdiff
path: root/osd.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-06-09 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2003-06-09 18:00:00 +0200
commit64ddfca3b0e37d877bb3cb247fb8b2ad810dd47f (patch)
tree2f801b7c86c01b2b9004939d4d0ae6c5f4714ac1 /osd.c
parent40334f3e099de4faf87599c0511e003dbdc2ce80 (diff)
downloadvdr-patch-lnbsharing-64ddfca3b0e37d877bb3cb247fb8b2ad810dd47f.tar.gz
vdr-patch-lnbsharing-64ddfca3b0e37d877bb3cb247fb8b2ad810dd47f.tar.bz2
Version 1.2.1vdr-1.2.1
- Fixed OSD access in case none of the devices provides one (thanks to Axel Gruber for reporting this one). - Fixed editing channels ('timers.conf' was not written after a channel has been modified, which could result in errors upon the next start of VDR). - Fixed a crash when canceling a newly created timer (thanks to Thomas Schmidt for reporting this one). - Completed Hungarian language texts (thanks to Istvan Koenigsberger and Guido Josten). - Fixed device handling in the CICAM menu in case a VDR instance was started with a specific device using the -D option (thanks to Gerald Raaf for reporting ths one). - Initializing the current channel to '1' to avoid a crash in creating a new timer in case there is no device in the system that can actually receive any channel (thanks to Malcolm Caldwell for reporting this one). - Some corrections to the Finnish OSD texts (thanks to Niko Tarnanen and Rolf Ahrenberg).
Diffstat (limited to 'osd.c')
-rw-r--r--osd.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/osd.c b/osd.c
index 9d8b72d..8f3343b 100644
--- a/osd.c
+++ b/osd.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.c 1.42 2003/05/03 14:46:38 kls Exp $
+ * $Id: osd.c 1.43 2003/06/04 16:13:00 kls Exp $
*/
#include "osd.h"
@@ -99,6 +99,8 @@ void cOsd::Open(int w, int h)
//XXX
osd = OpenRaw(x, y);
//XXX TODO this should be transferred to the places where the individual windows are requested (there's too much detailed knowledge here!)
+ if (!osd)
+ return;
if (h / lineHeight == 5) { //XXX channel display
osd->Create(0, 0, w, h, 4);
}
@@ -145,7 +147,8 @@ void cOsd::Clear(void)
Fill(0, 0, cols, rows, clrBackground);
refresh();
#else
- osd->Clear();
+ if (osd)
+ osd->Clear();
#endif
}
@@ -161,14 +164,16 @@ void cOsd::Fill(int x, int y, int w, int h, eDvbColor color)
}
wsyncup(window); // shouldn't be necessary because of 'syncok()', but w/o it doesn't work
#else
- osd->Fill(x * charWidth, y * lineHeight, (x + w) * charWidth - 1, (y + h) * lineHeight - 1, color);
+ if (osd)
+ osd->Fill(x * charWidth, y * lineHeight, (x + w) * charWidth - 1, (y + h) * lineHeight - 1, color);
#endif
}
void cOsd::SetBitmap(int x, int y, const cBitmap &Bitmap)
{
#ifndef DEBUG_OSD
- osd->SetBitmap(x, y, Bitmap);
+ if (osd)
+ osd->SetBitmap(x, y, Bitmap);
#endif
}
@@ -200,7 +205,7 @@ int cOsd::Width(unsigned char c)
#ifdef DEBUG_OSD
return 1;
#else
- return osd->Width(c);
+ return osd ? osd->Width(c) : 1;
#endif
}
@@ -209,7 +214,7 @@ int cOsd::WidthInCells(const char *s)
#ifdef DEBUG_OSD
return strlen(s);
#else
- return (osd->Width(s) + charWidth - 1) / charWidth;
+ return osd ? (osd->Width(s) + charWidth - 1) / charWidth : strlen(s);
#endif
}
@@ -218,7 +223,7 @@ eDvbFont cOsd::SetFont(eDvbFont Font)
#ifdef DEBUG_OSD
return Font;
#else
- return osd->SetFont(Font);
+ return osd ? osd->SetFont(Font) : Font;
#endif
}
@@ -231,7 +236,8 @@ void cOsd::Text(int x, int y, const char *s, eDvbColor colorFg, eDvbColor colorB
wmove(window, y, x); // ncurses wants 'y' before 'x'!
waddnstr(window, s, cols - x);
#else
- osd->Text(x * charWidth, y * lineHeight, s, colorFg, colorBg);
+ if (osd)
+ osd->Text(x * charWidth, y * lineHeight, s, colorFg, colorBg);
#endif
}