summaryrefslogtreecommitdiff
path: root/dxr3osd.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-10-06 09:31:04 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-10-06 09:31:04 +0200
commit103bb43176501953c3c4e873fe45d74950ffcf4d (patch)
treeffb31d2f9f7f9e24e5ee9b1e9b547fa3c7985834 /dxr3osd.h
parent34c05c5693dd8a8b02584026e690dfa107cec712 (diff)
downloadvdr-plugin-dxr3-103bb43176501953c3c4e873fe45d74950ffcf4d.tar.gz
vdr-plugin-dxr3-103bb43176501953c3c4e873fe45d74950ffcf4d.tar.bz2
fix codeing style
Diffstat (limited to 'dxr3osd.h')
-rw-r--r--dxr3osd.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/dxr3osd.h b/dxr3osd.h
index dce01d6..1738587 100644
--- a/dxr3osd.h
+++ b/dxr3osd.h
@@ -5,8 +5,7 @@
// ==================================
// osd plugin provider
-class cDxr3OsdProvider : public cOsdProvider
-{
+class cDxr3OsdProvider : public cOsdProvider {
public:
cDxr3OsdProvider() {}
virtual cOsd *CreateOsd(int Left, int Top, uint Level);
@@ -14,15 +13,7 @@ public:
// ==================================
// osd interface
-class cDxr3Osd : public cOsd
-{
-private:
- cSPUEncoder* Spu; ///< interface to cSPUEncoder
- bool shown; ///< is the osd shown?
- cPalette* Palette; ///< global palette (needed by all bitmaps)
- cTimeMs *last;
-protected:
- virtual void SetActive(bool On);
+class cDxr3Osd : public cOsd {
public:
cDxr3Osd(int Left, int Top, uint Level);
~cDxr3Osd();
@@ -31,6 +22,15 @@ public:
eOsdError SetAreas(const tArea *Areas, int NumAreas);
void Flush();
+
+protected:
+ virtual void SetActive(bool On);
+
+private:
+ cSPUEncoder* Spu; ///< interface to cSPUEncoder
+ bool shown; ///< is the osd shown?
+ cPalette* Palette; ///< global palette (needed by all bitmaps)
+ cTimeMs *last;
};
#endif /*_DXR3_OSD_H_*/