mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
Fixed hide root menu from a subview template
This commit is contained in:
parent
a5e051e327
commit
9f8cd6dab5
3
HISTORY
3
HISTORY
@ -221,3 +221,6 @@ Version 0.3.0
|
||||
- fixed colors in tvguideng timeline in nopacity darkred
|
||||
|
||||
Version 0.3.1
|
||||
|
||||
- Fixed hide root menu from a subview template
|
||||
|
||||
|
@ -404,6 +404,8 @@ int cTemplateFunction::GetNumericParameter(eParamType type) {
|
||||
return 0;
|
||||
else if (type == ptMenuItemWidth)
|
||||
return 0;
|
||||
else if (type == ptHideRoot)
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
return hit->second;
|
||||
@ -1053,7 +1055,7 @@ bool cTemplateFunction::SetOverflow(string value) {
|
||||
}
|
||||
|
||||
bool cTemplateFunction::SetHideRoot(string value) {
|
||||
bool hideRoot = 0;
|
||||
int hideRoot = 0;
|
||||
if (!value.compare("true"))
|
||||
hideRoot = 1;
|
||||
numericParameters.insert(pair<eParamType, int>(ptHideRoot, hideRoot));
|
||||
@ -1538,6 +1540,9 @@ string cTemplateFunction::GetParamName(eParamType pt) {
|
||||
case ptScaleTvHeight:
|
||||
name = "Scale TV Picture Height";
|
||||
break;
|
||||
case ptHideRoot:
|
||||
name = "Hide Root View";
|
||||
break;
|
||||
case ptCache:
|
||||
name = "Cache Image";
|
||||
break;
|
||||
|
@ -149,7 +149,7 @@
|
||||
<drawimage condition="gt({cputemp}, 80)" imagetype="skinpart" path="tachohands/temp_81" x="{areawidth}*0.53" y="5%" width="20%" height="{areawidth}*0.2"/>
|
||||
<drawimage condition="lt({cputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{cputemp}" x="{areawidth}*0.53" y="5%" width="20%" height="{areawidth}*0.2"/>
|
||||
<drawimage condition="gt({gputemp}, 80)" imagetype="skinpart" path="tachohands/temp_81" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.2"/>
|
||||
<drawimage condition="lt({cputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{gputemp}" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.2"/>
|
||||
<drawimage condition="lt({gputemp}, 81)" imagetype="skinpart" path="tachohands/temp_{gputemp}" x="{areawidth}*0.78" y="5%" width="20%" height="{areawidth}*0.2"/>
|
||||
</area>
|
||||
<area x="77%" y="51%" width="11%" height="19%" layer="4">
|
||||
<drawtext align="center" y="85%" font="{regular}" fontsize="15%" color="{clrWhite}" text="CPU Temp: {cputemp}°C" />
|
||||
|
@ -34,11 +34,11 @@ bool cDisplayPluginView::createOsd(void) {
|
||||
|
||||
void cDisplayPluginView::Deactivate(bool hide) {
|
||||
Stop();
|
||||
if (!hide) {
|
||||
bool hideFromTemplate = tmplView->HideView();
|
||||
if (!hideFromTemplate)
|
||||
return;
|
||||
esyslog("skindesigner: hiding from template");
|
||||
bool hideFromTemplate = tmplView->HideView();
|
||||
if (!hide && !hideFromTemplate)
|
||||
return;
|
||||
if (tvScaled) {
|
||||
cDevice::PrimaryDevice()->ScaleVideo(cRect::Null);
|
||||
}
|
||||
HidePixmaps();
|
||||
for (map< int, cViewGrid* >::iterator it = viewGrids.begin(); it != viewGrids.end(); it++) {
|
||||
|
Loading…
Reference in New Issue
Block a user