blob: ed2c803f4f180c1576f4ecba327a0c58ff1d86e8 (
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, bool isMenuMessage = false);
~cNopacityMessageBox();
void SetAlpha(int Alpha);
};
#endif //__NOPACITY_MESSAGEBOX_H
|