blob: 6217a81d3d935e5b9e3c11fb32f702dda41b64b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef __NOPACITY_DISPLAYVOLUME_H
#define __NOPACITY_DISPLAYVOLUME_H
class cNopacityDisplayVolume : public cSkinDisplayVolume, cThread {
private:
int FrameTime;
int FadeTime;
bool initial;
bool muted;
int width, height;
int labelHeight;
int progressBarWidth, progressBarHeight;
cOsd *osd;
cPixmap *pixmapBackgroundTop;
cPixmap *pixmapBackgroundBottom;
cPixmap *pixmapProgressBar;
cPixmap *pixmapLabel;
cFont *font;
virtual void Action(void);
void DrawProgressBar(int Current, int Total);
tColor DrawProgressbarBackground(int left, int top, int width, int height);
public:
cNopacityDisplayVolume(void);
virtual ~cNopacityDisplayVolume();
virtual void SetVolume(int Current, int Total, bool Mute);
virtual void Flush(void);
};
#endif //__NOPACITY_DISPLAYVOLUME_H
|