diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 12:41:18 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 12:41:18 +0200 |
commit | 3e5b31af5e88bc4e43971a70b5add6f67cebb701 (patch) | |
tree | aba62ea0b1ba467df4b938420518f09bbb9900c8 /osdbase.h | |
parent | 4da8a8e0666b3bfc1eac21aaf6a3aa66db02578c (diff) | |
download | vdr-3e5b31af5e88bc4e43971a70b5add6f67cebb701.tar.gz vdr-3e5b31af5e88bc4e43971a70b5add6f67cebb701.tar.bz2 |
Rearranged OSD class names to make 'cOsd' available for the main OSD interface
Diffstat (limited to 'osdbase.h')
-rw-r--r-- | osdbase.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osdbase.h 1.1 2002/05/10 14:26:09 kls Exp $ + * $Id: osdbase.h 1.2 2002/05/18 12:38:17 kls Exp $ */ #ifndef __OSDBASE_H @@ -119,7 +119,7 @@ typedef int tWindowHandle; #define ALL_TILED_WINDOWS (-3) #define LAST_CREATED_WINDOW (-4) -class cOsd { +class cOsdBase { private: int numWindows; int x0, y0; @@ -149,9 +149,9 @@ protected: virtual void CloseWindow(cWindow *Window) = 0; // Close the window and release any OSD hardware resources allocated for it. public: - cOsd(int x, int y); + cOsdBase(int x, int y); // Initializes the OSD, starting at screen coordinates (x, y). - virtual ~cOsd(); + virtual ~cOsdBase(); // Destroys all windows and shuts down the OSD. tWindowHandle Create(int x, int y, int w, int h, int Bpp, bool ClearWithBackground = true, bool Tiled = true); // Creates a window at coordinates (x, y), which are relative to the OSD's |