summaryrefslogtreecommitdiff
path: root/osd.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-07-13 12:47:06 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-07-13 12:47:06 +0200
commit5fb0a0ed1841e3825f73244af02864cc899f3e24 (patch)
tree8d945d5273934e8a5ef36ab02556d8fb943d80f9 /osd.c
parentf2b637ed852c81301ea1f64692447733745ffa06 (diff)
downloadvdr-5fb0a0ed1841e3825f73244af02864cc899f3e24.tar.gz
vdr-5fb0a0ed1841e3825f73244af02864cc899f3e24.tar.bz2
Added cOsd::OpenRaw() to create a raw OSD (needed for displaying SPUs)
Diffstat (limited to 'osd.c')
-rw-r--r--osd.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/osd.c b/osd.c
index 1092187b..fd5abcc2 100644
--- a/osd.c
+++ b/osd.c
@@ -4,12 +4,13 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.c 1.29 2002/06/16 13:24:00 kls Exp $
+ * $Id: osd.c 1.30 2002/07/13 12:46:30 kls Exp $
*/
#include "osd.h"
#include <string.h>
#include "device.h"
+#include "dvbosd.h"
#include "i18n.h"
#include "status.h"
@@ -19,7 +20,7 @@
WINDOW *cOsd::window = NULL;
int cOsd::colorPairs[MaxColorPairs] = { 0 };
#else
- cDvbOsd *cOsd::osd = NULL;
+ cOsdBase *cOsd::osd = NULL;
#endif
int cOsd::cols = 0;
int cOsd::rows = 0;
@@ -67,6 +68,11 @@ void cOsd::SetColor(eDvbColor colorFg, eDvbColor colorBg)
}
#endif
+cOsdBase *cOsd::OpenRaw(int x, int y)
+{
+ return osd ? NULL : new cDvbOsd(cDevice::PrimaryDevice()->OsdDeviceHandle(), x, y);
+}
+
void cOsd::Open(int w, int h)
{
int d = (h < 0) ? Setup.OSDheight + h : 0;
@@ -95,7 +101,7 @@ void cOsd::Open(int w, int h)
int x = (720 - w + charWidth) / 2; //TODO PAL vs. NTSC???
int y = (576 - Setup.OSDheight * lineHeight) / 2 + d;
//XXX
- osd = new cDvbOsd(cDevice::PrimaryDevice()->OsdDeviceHandle(), x, y);
+ 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 (h / lineHeight == 5) { //XXX channel display
osd->Create(0, 0, w, h, 4);