diff options
author | Soeren Moch <smoch@web.de> | 2021-02-13 14:03:29 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-02-16 11:56:10 +0100 |
commit | f0da5c8eacd54de7346bc000e86ad90ca0d18003 (patch) | |
tree | 3843abca573aad8fe4af607b28f5574029f29e63 /displaymessage.h | |
parent | 1e9345336c9e714c37495352ad37a67f72e6a7a2 (diff) | |
download | skin-nopacity-f0da5c8eacd54de7346bc000e86ad90ca0d18003.tar.gz skin-nopacity-f0da5c8eacd54de7346bc000e86ad90ca0d18003.tar.bz2 |
Split MessageBox class out of DisplayMessage
So we can reuse this MessageBox code later.
Signed-off-by: Soeren Moch <smoch@web.de>
Diffstat (limited to 'displaymessage.h')
-rw-r--r-- | displaymessage.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/displaymessage.h b/displaymessage.h index fc1d5b0..e89d4fb 100644 --- a/displaymessage.h +++ b/displaymessage.h @@ -4,13 +4,13 @@ #include <vdr/thread.h> #include <vdr/skins.h> #include "imagecache.h" +#include "messagebox.h" class cNopacityDisplayMessage : public cSkinDisplayMessage , cThread { private: cOsd *osd; cImageCache *imgCache; - cPixmap *pixmap; - cPixmap *pixmapBackground; + cNopacityMessageBox *messageBox; int FrameTime; int FadeTime; virtual void Action(void); @@ -21,4 +21,4 @@ public: virtual void Flush(void); }; -#endif //__NOPACITY_DISPLAYMESSAGE_H
\ No newline at end of file +#endif //__NOPACITY_DISPLAYMESSAGE_H |