summaryrefslogtreecommitdiff
path: root/dxr3osd.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-10-08 11:24:34 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-10-08 11:24:34 +0200
commit34dffe437703ebf2d194a3221bb45cc18760627f (patch)
tree23f9433e939e69be6e06cd5055e4c6157f10c007 /dxr3osd.h
parent103bb43176501953c3c4e873fe45d74950ffcf4d (diff)
downloadvdr-plugin-dxr3-34dffe437703ebf2d194a3221bb45cc18760627f.tar.gz
vdr-plugin-dxr3-34dffe437703ebf2d194a3221bb45cc18760627f.tar.bz2
store informations about regions in cDxr3Osd class
Diffstat (limited to 'dxr3osd.h')
-rw-r--r--dxr3osd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/dxr3osd.h b/dxr3osd.h
index 1738587..3d0ab07 100644
--- a/dxr3osd.h
+++ b/dxr3osd.h
@@ -11,6 +11,8 @@ public:
virtual cOsd *CreateOsd(int Left, int Top, uint Level);
};
+static const int MAXNUMWINDOWS = 7;
+
// ==================================
// osd interface
class cDxr3Osd : public cOsd {
@@ -31,6 +33,8 @@ private:
bool shown; ///< is the osd shown?
cPalette* Palette; ///< global palette (needed by all bitmaps)
cTimeMs *last;
+ tArea areas[MAXNUMWINDOWS];
+ int numAreas;
};
#endif /*_DXR3_OSD_H_*/