blob: f440b89115f20e49602b9887819932c11b416cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// --- cLCARSNGDisplayVolume -----------------------------------------------
class cLCARSNGDisplayVolume : public cSkinDisplayVolume {
private:
cOsd *osd;
int Margin;
int x0, x1, x2, x3, x4, x5, x6, x7;
int y0, y1;
tColor frameColor;
int mute;
public:
cLCARSNGDisplayVolume(void);
virtual ~cLCARSNGDisplayVolume();
virtual void SetVolume(int Current, int Total, bool Mute);
virtual void Flush(void);
};
|