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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#define __STL_CONFIG_H
#include <vdr/menu.h>
#include "displayvolumeview.h"
cDisplayVolumeView::cDisplayVolumeView(cTemplateView *tmplView) : cView(tmplView) {
volumeLast = -1;
muteLast = false;
DeleteOsdOnExit();
}
cDisplayVolumeView::~cDisplayVolumeView() {
}
bool cDisplayVolumeView::createOsd(void) {
cRect osdSize = tmplView->GetOsdSize();
bool ok = CreateOsd(cOsd::OsdLeft() + osdSize.X(),
cOsd::OsdTop() + osdSize.Y(),
osdSize.Width(),
osdSize.Height());
return ok;
}
void cDisplayVolumeView::DrawBackground(void) {
map < string, string > stringTokens;
map < string, int > intTokens;
DrawViewElement(veBackground, &stringTokens, &intTokens);
}
void cDisplayVolumeView::DrawVolume(int current, int total, bool mute) {
if ((volumeLast == current) && (muteLast == mute))
return;
volumeLast = current;
muteLast = mute;
map < string, string > stringTokens;
map < string, int > intTokens;
intTokens.insert(pair<string,int>("volume", current));
intTokens.insert(pair<string,int>("maxvolume", total));
intTokens.insert(pair<string,int>("volpercent", (double)current *100 / (double)total));
intTokens.insert(pair<string,int>("mute", mute));
ClearViewElement(veVolume);
DrawViewElement(veVolume, &stringTokens, &intTokens);
}
|