Details
Description
info;
http://forum.team-mediaportal.com/designers-lounge-69/tv-server-mytv-gui-solution-handle-tune-more-than-one-channel-one-tv-card-15810/
I have added 4 icons to the following skins;
xface
b2
b2w
b2b
The 4 Icons are;
1) tv_is_available.png
2) tv_is_recording.png
3) tv_is_timeshifting.png
4) tv_is_unavailable.png
50x50 pixels.
I used already exisisting gfx.
So Harley or any other gfx junkie, plz. make some prettier Icons :)
If we decide to use a legend on the bottom of the screen, then plz. someone add those to the XML files.
Se Iloop's screenshot nr. 2 on the above link.
Also feel free to edit the skins XML files.
The code I added to support this is 4 lines.
item.PinImage = yadada.
So it should NOT break anything.
ex. -->
switch (CurrentChanState)
{
case 0: //not avail.
sb.Append(" ");
sb.Append(local1056);
item.IsPlayed = true;
item.PinImage = Thumbs.TvIsUnavailableIcon;
break;
case 2: // timeshifting
sb.Append(" ");
sb.Append(local1055);
item.PinImage = Thumbs.TvIsTimeshiftingIcon;
break;
case 3: // recording
sb.Append(" ");
sb.Append(local1054);
item.PinImage = Thumbs.TvIsRecordingIcon;
break;
default:
item.IsPlayed = false;
item.PinImage = Thumbs.TvIsAvailableIcon;
break;
}
Should any of these Icons also be used in the TVguide ?
Maybe in a scaled down version ?
/gibman
http://forum.team-mediaportal.com/designers-lounge-69/tv-server-mytv-gui-solution-handle-tune-more-than-one-channel-one-tv-card-15810/
I have added 4 icons to the following skins;
xface
b2
b2w
b2b
The 4 Icons are;
1) tv_is_available.png
2) tv_is_recording.png
3) tv_is_timeshifting.png
4) tv_is_unavailable.png
50x50 pixels.
I used already exisisting gfx.
So Harley or any other gfx junkie, plz. make some prettier Icons :)
If we decide to use a legend on the bottom of the screen, then plz. someone add those to the XML files.
Se Iloop's screenshot nr. 2 on the above link.
Also feel free to edit the skins XML files.
The code I added to support this is 4 lines.
item.PinImage = yadada.
So it should NOT break anything.
ex. -->
switch (CurrentChanState)
{
case 0: //not avail.
sb.Append(" ");
sb.Append(local1056);
item.IsPlayed = true;
item.PinImage = Thumbs.TvIsUnavailableIcon;
break;
case 2: // timeshifting
sb.Append(" ");
sb.Append(local1055);
item.PinImage = Thumbs.TvIsTimeshiftingIcon;
break;
case 3: // recording
sb.Append(" ");
sb.Append(local1054);
item.PinImage = Thumbs.TvIsRecordingIcon;
break;
default:
item.IsPlayed = false;
item.PinImage = Thumbs.TvIsAvailableIcon;
break;
}
Should any of these Icons also be used in the TVguide ?
Maybe in a scaled down version ?
/gibman