blob: 75c1df43ccc8335d6dba37e7146622c3787351d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __NOPACITY_MESSAGEBOX_H
#define __NOPACITY_MESSAGEBOX_H
#include <vdr/skins.h>
#include "imagecache.h"
class cNopacityMessageBox {
private:
cOsd *osd;
cPixmap *pixmap;
cPixmap *pixmapBackground;
public:
cNopacityMessageBox(cOsd *Osd, cImageCache *imgCache, const cRect &Rect, eMessageType Type, const char *Text);
~cNopacityMessageBox();
void SetAlpha(int Alpha);
};
#endif //__NOPACITY_MESSAGEBOX_H
|