blob: 6855439006f6a0fc412168bf32d50f667272f0fc (
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, const cRect &Rect, eMessageType Type, const char *Text, bool isMenuMessage = false);
~cNopacityMessageBox();
void SetAlpha(int Alpha);
};
#endif //__NOPACITY_MESSAGEBOX_H
|