mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
588 lines
20 KiB
C
588 lines
20 KiB
C
#define __STL_CONFIG_H
|
|
#include <vdr/menu.h>
|
|
#include "../services/scraper2vdr.h"
|
|
#include "displaychannelview.h"
|
|
#include "displayviewelements.h"
|
|
#include "../libcore/timers.h"
|
|
#include "../libcore/helpers.h"
|
|
|
|
cDisplayChannelView::cDisplayChannelView(cTemplateView *tmplView) : cView(tmplView) {
|
|
lastScreenWidth = 0;
|
|
lastScreenHeight = 0;
|
|
lastNumAudioTracks = 0;
|
|
lastAudioChannel = -1;
|
|
lastTracDesc = "";
|
|
lastTrackLang = "";
|
|
InitDevices();
|
|
DeleteOsdOnExit();
|
|
SetFadeTime(tmplView->GetNumericParameter(ptFadeTime));
|
|
}
|
|
|
|
cDisplayChannelView::~cDisplayChannelView() {
|
|
CancelSave();
|
|
FadeOut();
|
|
}
|
|
|
|
bool cDisplayChannelView::createOsd(void) {
|
|
cRect osdSize = tmplView->GetOsdSize();
|
|
bool ok = CreateOsd(cOsd::OsdLeft() + osdSize.X(),
|
|
cOsd::OsdTop() + osdSize.Y(),
|
|
osdSize.Width(),
|
|
osdSize.Height());
|
|
return ok;
|
|
}
|
|
|
|
void cDisplayChannelView::DrawBackground(void) {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
DrawViewElement(veBackground, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawChannel(cString &number, cString &name, cString &id, bool switching) {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
stringTokens.insert(pair<string,string>("channelname", *name));
|
|
stringTokens.insert(pair<string,string>("channelnumber", *number));
|
|
stringTokens.insert(pair<string,string>("channelid", *id));
|
|
|
|
intTokens.insert(pair<string, int>("switching", switching));
|
|
bool logoExisis = imgCache->LogoExists(*id);
|
|
intTokens.insert(pair<string, int>("channellogoexists", logoExisis));
|
|
|
|
DrawViewElement(veChannelInfo, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearChannel(void) {
|
|
ClearViewElement(veChannelInfo);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawDate(void) {
|
|
if (!ExecuteViewElement(veDateTime)) {
|
|
return;
|
|
}
|
|
|
|
if (DetachViewElement(veDateTime)) {
|
|
cViewElement *viewElement = GetViewElement(veDateTime);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementDate(tmplView->GetViewElement(veDateTime));
|
|
AddViewElement(veDateTime, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
if (!SetDate(false, stringTokens, intTokens)) {
|
|
return;
|
|
}
|
|
|
|
ClearViewElement(veDateTime);
|
|
DrawViewElement(veDateTime, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::DrawTime(void) {
|
|
if (!ExecuteViewElement(veTime)) {
|
|
return;
|
|
}
|
|
|
|
if (DetachViewElement(veTime)) {
|
|
cViewElement *viewElement = GetViewElement(veTime);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementTime(tmplView->GetViewElement(veTime));
|
|
AddViewElement(veTime, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
if (!SetTime(false, stringTokens, intTokens)) {
|
|
return;
|
|
}
|
|
ClearViewElement(veTime);
|
|
DrawViewElement(veTime, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::DrawProgressBar(cString &start, cString &stop, int Current, int Total) {
|
|
if (!ExecuteViewElement(veProgressBar)) {
|
|
return;
|
|
}
|
|
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
stringTokens.insert(pair<string, string>("start", *start));
|
|
stringTokens.insert(pair<string, string>("stop", *stop));
|
|
|
|
intTokens.insert(pair<string, int>("duration", Total));
|
|
intTokens.insert(pair<string, int>("elapsed", Current));
|
|
intTokens.insert(pair<string, int>("remaining", Total - Current));
|
|
|
|
ClearProgressBar();
|
|
DrawViewElement(veProgressBar, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearProgressBar(void) {
|
|
ClearViewElement(veProgressBar);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawProgressBarBack(void) {
|
|
DrawViewElement(veProgressBarBack);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearProgressBarBack(void) {
|
|
ClearViewElement(veProgressBarBack);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawEPGInfo(const cEvent *present, const cEvent *next, bool presentRecording, bool nextRecording) {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
if (present) {
|
|
stringTokens.insert(pair<string,string>("currenttitle", (present->Title())?present->Title():""));
|
|
stringTokens.insert(pair<string,string>("currentsubtitle", (present->ShortText())?present->ShortText():""));
|
|
stringTokens.insert(pair<string,string>("currentstart", *present->GetTimeString()));
|
|
stringTokens.insert(pair<string,string>("currentstop", *present->GetEndTimeString()));
|
|
|
|
intTokens.insert(pair<string,int>("currentduration", present->Duration() / 60));
|
|
intTokens.insert(pair<string,int>("currentdurationhours", present->Duration() / 3600));
|
|
stringTokens.insert(pair<string,string>("currentdurationminutes", *cString::sprintf("%.2d", (present->Duration() / 60)%60)));
|
|
intTokens.insert(pair<string,int>("currentelapsed", (int)round((time(NULL) - present->StartTime())/60)));
|
|
intTokens.insert(pair<string,int>("currentremaining", (int)round((present->EndTime() - time(NULL))/60)));
|
|
intTokens.insert(pair<string,int>("currentrecording", presentRecording ? 1 : 0));
|
|
intTokens.insert(pair<string,int>("hasVPS", (bool)present->Vps()));
|
|
} else {
|
|
stringTokens.insert(pair<string,string>("currenttitle", ""));
|
|
stringTokens.insert(pair<string,string>("currentsubtitle", ""));
|
|
stringTokens.insert(pair<string,string>("currentstart", ""));
|
|
stringTokens.insert(pair<string,string>("currentstop", ""));
|
|
|
|
intTokens.insert(pair<string,int>("currentduration", 0));
|
|
intTokens.insert(pair<string,int>("currentdurationhours", 0));
|
|
stringTokens.insert(pair<string,string>("currentdurationminutes", ""));
|
|
intTokens.insert(pair<string,int>("currentelapsed", 0));
|
|
intTokens.insert(pair<string,int>("currentremaining", 0));
|
|
intTokens.insert(pair<string,int>("currentrecording", 0));
|
|
intTokens.insert(pair<string,int>("hasVPS", 0));
|
|
}
|
|
|
|
if (next) {
|
|
stringTokens.insert(pair<string,string>("nexttitle", (next->Title())?next->Title():""));
|
|
stringTokens.insert(pair<string,string>("nextsubtitle", (next->ShortText())?next->ShortText():""));
|
|
stringTokens.insert(pair<string,string>("nextstart", *next->GetTimeString()));
|
|
stringTokens.insert(pair<string,string>("nextstop", *next->GetEndTimeString()));
|
|
|
|
intTokens.insert(pair<string,int>("nextduration", next->Duration() / 60));
|
|
intTokens.insert(pair<string,int>("nextdurationhours", next->Duration() / 3600));
|
|
stringTokens.insert(pair<string,string>("nextdurationminutes", *cString::sprintf("%.2d", (next->Duration() / 60)%60)));
|
|
intTokens.insert(pair<string,int>("nextrecording", nextRecording ? 1 : 0));
|
|
} else {
|
|
stringTokens.insert(pair<string,string>("nexttitle", ""));
|
|
stringTokens.insert(pair<string,string>("nextsubtitle", ""));
|
|
stringTokens.insert(pair<string,string>("nextstart", ""));
|
|
stringTokens.insert(pair<string,string>("nextstop", ""));
|
|
|
|
intTokens.insert(pair<string,int>("nextduration", 0));
|
|
intTokens.insert(pair<string,int>("nextdurationhours", 0));
|
|
stringTokens.insert(pair<string,string>("nextdurationminutes", ""));
|
|
intTokens.insert(pair<string,int>("nextrecording", 0));
|
|
}
|
|
DrawViewElement(veEpgInfo, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearEPGInfo(void) {
|
|
ClearViewElement(veEpgInfo);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawStatusIcons(const cChannel *Channel) {
|
|
if (!ExecuteViewElement(veStatusInfo)) {
|
|
return;
|
|
}
|
|
|
|
map < string, int > intTokens;
|
|
map < string, string > stringTokens;
|
|
|
|
bool isRadio = !Channel->Vpid() && Channel->Apid(0);
|
|
bool hasVT = Channel->Vpid() && Channel->Tpid();
|
|
bool isStereo = Channel->Apid(0);
|
|
bool isDolby = Channel->Dpid(0);
|
|
bool isEncrypted = Channel->Ca();
|
|
bool isRecording = cRecordControls::Active();
|
|
cGlobalSortedTimers SortedTimers;// local and remote timers
|
|
for (int i = 0; i < SortedTimers.Size() && !isRecording; i++)
|
|
if (const cTimer *Timer = SortedTimers[i])
|
|
if (Timer->Recording())
|
|
isRecording = true;
|
|
|
|
intTokens.insert(pair<string,int>("isRadio", isRadio));
|
|
intTokens.insert(pair<string,int>("hasVT", hasVT));
|
|
intTokens.insert(pair<string,int>("isStereo", isStereo));
|
|
intTokens.insert(pair<string,int>("isDolby", isDolby));
|
|
intTokens.insert(pair<string,int>("isEncrypted", isEncrypted));
|
|
intTokens.insert(pair<string,int>("isRecording", isRecording));
|
|
intTokens.insert(pair<string,int>("newmails", CheckNewMails()));
|
|
|
|
DrawViewElement(veStatusInfo, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearStatusIcons(void) {
|
|
ClearViewElement(veStatusInfo);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawAudioInfo(void) {
|
|
if (!ExecuteViewElement(veAudioInfo)) {
|
|
return;
|
|
}
|
|
|
|
int numAudioTracks = 0;
|
|
int audioChannel = -1;
|
|
string trackDescription = "";
|
|
string trackLanguage = "";
|
|
|
|
cDevice *device = cDevice::PrimaryDevice();
|
|
if (device) {
|
|
numAudioTracks = device->NumAudioTracks();
|
|
audioChannel = device->GetAudioChannel();
|
|
if (numAudioTracks > 0) {
|
|
const tTrackId *track = device->GetTrack(device->GetCurrentAudioTrack());
|
|
if (track) {
|
|
trackDescription = track->description ? track->description : "";
|
|
trackLanguage = track->language ? track->language : "";
|
|
}
|
|
}
|
|
}
|
|
if (lastNumAudioTracks != numAudioTracks || lastAudioChannel != audioChannel || lastTracDesc.compare(trackDescription) || lastTrackLang.compare(trackLanguage)) {
|
|
lastNumAudioTracks = numAudioTracks;
|
|
lastAudioChannel = audioChannel;
|
|
lastTracDesc = trackDescription;
|
|
lastTrackLang = trackLanguage;
|
|
|
|
map < string, int > intTokens;
|
|
map < string, string > stringTokens;
|
|
intTokens.insert(pair<string,int>("numaudiotracks", numAudioTracks));
|
|
intTokens.insert(pair<string,int>("audiochannel", audioChannel));
|
|
stringTokens.insert(pair<string,string>("trackdesc", trackDescription));
|
|
stringTokens.insert(pair<string,string>("tracklang", trackLanguage));
|
|
|
|
ClearAudioInfo();
|
|
DrawViewElement(veAudioInfo, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::ClearAudioInfo(void) {
|
|
ClearViewElement(veAudioInfo);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawEncryptionInfo(int channelSid) {
|
|
if (!ExecuteViewElement(veEcmInfo)) {
|
|
return;
|
|
}
|
|
map < string, int > intTokens;
|
|
map < string, string > stringTokens;
|
|
|
|
if (SetEcmInfos(channelSid, stringTokens, intTokens)) {
|
|
ClearEncryptionInfo();
|
|
DrawViewElement(veEcmInfo, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::ClearEncryptionInfo(void) {
|
|
ClearViewElement(veEcmInfo);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawScreenResolution(void) {
|
|
if (!ExecuteViewElement(veScreenResolution)) {
|
|
return;
|
|
}
|
|
|
|
int screenWidth = 0;
|
|
int screenHeight = 0;
|
|
double aspect = 0;
|
|
|
|
cDevice::PrimaryDevice()->GetVideoSize(screenWidth, screenHeight, aspect);
|
|
|
|
if ((lastScreenWidth == screenWidth) && (lastScreenHeight == screenHeight))
|
|
return;
|
|
|
|
if ((screenWidth == 0) && (screenHeight == 0))
|
|
return;
|
|
|
|
lastScreenWidth = screenWidth;
|
|
lastScreenHeight = screenHeight;
|
|
|
|
bool isHD = false;
|
|
string resName = GetScreenResolutionString(screenWidth, screenHeight, &isHD);
|
|
|
|
bool isWideScreen = false;
|
|
string aspectName = GetScreenAspectString(aspect, &isWideScreen);
|
|
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
intTokens.insert(pair<string,int>("screenwidth", screenWidth));
|
|
intTokens.insert(pair<string,int>("screenheight", screenHeight));
|
|
intTokens.insert(pair<string,int>("isHD", isHD));
|
|
intTokens.insert(pair<string,int>("isWideScreen", isWideScreen));
|
|
stringTokens.insert(pair<string,string>("resolution", resName));
|
|
stringTokens.insert(pair<string,string>("aspect", aspectName));
|
|
|
|
ClearViewElement(veScreenResolution);
|
|
DrawViewElement(veScreenResolution, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearScreenResolution(void) {
|
|
ClearViewElement(veScreenResolution);
|
|
lastScreenWidth = 0;
|
|
lastScreenHeight = 0;
|
|
}
|
|
|
|
void cDisplayChannelView::DrawScraperContent(const cEvent *event) {
|
|
if (!event) {
|
|
return;
|
|
}
|
|
|
|
if (!ExecuteViewElement(veScraperContent)) {
|
|
return;
|
|
}
|
|
|
|
if (DetachViewElement(veScraperContent)) {
|
|
cViewElement *viewElement = GetViewElement(veScraperContent);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementScraperContent(event, ctPosterBanner, tmplView->GetViewElement(veScraperContent));
|
|
AddViewElement(veScraperContent, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
SetPosterBanner(event, stringTokens, intTokens);
|
|
ClearScraperContent();
|
|
DrawViewElement(veScraperContent, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::ClearScraperContent(void) {
|
|
ClearViewElement(veScraperContent);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawSignal(void) {
|
|
if (!ExecuteViewElement(veSignalQuality)) {
|
|
return;
|
|
}
|
|
|
|
if (DetachViewElement(veSignalQuality)) {
|
|
cViewElement *viewElement = GetViewElement(veSignalQuality);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementSignal(tmplView->GetViewElement(veSignalQuality));
|
|
AddViewElement(veSignalQuality, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
bool changed = SetSignal(intTokens);
|
|
if (!changed)
|
|
return;
|
|
|
|
ClearSignal();
|
|
DrawViewElement(veSignalQuality, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::DrawSignalBackground(void) {
|
|
if (!ExecuteViewElement(veSignalQualityBack)) {
|
|
return;
|
|
}
|
|
DrawViewElement(veSignalQualityBack);
|
|
}
|
|
|
|
|
|
void cDisplayChannelView::ClearSignal(void) {
|
|
ClearViewElement(veSignalQuality);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearSignalBackground(void) {
|
|
ClearViewElement(veSignalQualityBack);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawDevices(bool initial) {
|
|
if (!ExecuteViewElement(veDevices)) {
|
|
return;
|
|
}
|
|
string mode = tmplView->GetViewElementMode(veDevices);
|
|
bool light = false;
|
|
if (!mode.compare("light")) {
|
|
light = true;
|
|
}
|
|
if (DetachViewElement(veDevices)) {
|
|
cViewElement *viewElement = GetViewElement(veDevices);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementDevices(light, tmplView->GetViewElement(veDevices));
|
|
AddViewElement(veDevices, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
map < string, vector< map< string, string > > > deviceLoopTokens;
|
|
vector< map< string, string > > devices;
|
|
|
|
bool changed = SetDevices(initial, light, &intTokens, &devices);
|
|
if (!changed)
|
|
return;
|
|
|
|
deviceLoopTokens.insert(pair< string, vector< map< string, string > > >("devices", devices));
|
|
|
|
ClearDevices();
|
|
DrawViewElement(veDevices, &stringTokens, &intTokens, &deviceLoopTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::ClearDevices(void) {
|
|
ClearViewElement(veDevices);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawChannelGroups(const cChannel *Channel, cString ChannelName) {
|
|
if (!ExecuteViewElement(veChannelGroup)) {
|
|
return;
|
|
}
|
|
|
|
bool separatorExists = imgCache->SeparatorLogoExists(*ChannelName);
|
|
string separatorPath = separatorExists ? *ChannelName : "";
|
|
|
|
string prevChannelSep = GetChannelSep(Channel, true);
|
|
string nextChannelSep = GetChannelSep(Channel, false);
|
|
bool prevAvailable = (prevChannelSep.size() > 0)?true:false;
|
|
bool nextAvailable = (nextChannelSep.size() > 0)?true:false;
|
|
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
intTokens.insert(pair<string,int>("sepexists", separatorExists));
|
|
intTokens.insert(pair<string,int>("prevAvailable", prevAvailable));
|
|
intTokens.insert(pair<string,int>("nextAvailable", nextAvailable));
|
|
stringTokens.insert(pair<string,string>("group", *ChannelName));
|
|
stringTokens.insert(pair<string,string>("nextgroup", nextChannelSep));
|
|
stringTokens.insert(pair<string,string>("prevgroup", prevChannelSep));
|
|
stringTokens.insert(pair<string,string>("seppath", separatorPath));
|
|
|
|
ClearViewElement(veChannelGroup);
|
|
DrawViewElement(veChannelGroup, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::ClearChannelGroups(void) {
|
|
ClearViewElement(veChannelGroup);
|
|
}
|
|
|
|
string cDisplayChannelView::GetChannelSep(const cChannel *channel, bool prev) {
|
|
string sepName = "";
|
|
const cChannel *sep = prev ? Channels.Prev(channel) :
|
|
Channels.Next(channel);
|
|
for (; sep; (prev)?(sep = Channels.Prev(sep)):(sep = Channels.Next(sep))) {
|
|
if (sep->GroupSep()) {
|
|
sepName = sep->Name();
|
|
break;
|
|
}
|
|
}
|
|
return sepName;
|
|
}
|
|
|
|
void cDisplayChannelView::DisplayMessage(eMessageType Type, const char *Text) {
|
|
if (!Text) {
|
|
ClearViewElement(veMessage);
|
|
return;
|
|
}
|
|
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
|
|
stringTokens.insert(pair<string,string>("text", Text));
|
|
|
|
intTokens.insert(pair<string,int>("status", (Type == mtStatus) ? true : false));
|
|
intTokens.insert(pair<string,int>("info", (Type == mtInfo) ? true : false));
|
|
intTokens.insert(pair<string,int>("warning", (Type == mtWarning) ? true : false));
|
|
intTokens.insert(pair<string,int>("error", (Type == mtError) ? true : false));
|
|
|
|
ClearViewElement(veMessage);
|
|
DrawViewElement(veMessage, &stringTokens, &intTokens);
|
|
}
|
|
|
|
void cDisplayChannelView::DrawCustomTokens(void) {
|
|
if (!ExecuteViewElement(veCustomTokens)) {
|
|
return;
|
|
}
|
|
if (!tmplView)
|
|
return;
|
|
|
|
if (DetachViewElement(veCustomTokens)) {
|
|
cViewElement *viewElement = GetViewElement(veCustomTokens);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementCustomTokens(tmplView->GetViewElement(veCustomTokens), tmplView);
|
|
AddViewElement(veCustomTokens, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens = tmplView->GetCustomStringTokens();
|
|
map < string, int > intTokens = tmplView->GetCustomIntTokens();
|
|
DrawViewElement(veCustomTokens, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
void cDisplayChannelView::DrawCurrentWeather(void) {
|
|
if (!ExecuteViewElement(veCurrentWeather)) {
|
|
return;
|
|
}
|
|
|
|
if (DetachViewElement(veCurrentWeather)) {
|
|
cViewElement *viewElement = GetViewElement(veCurrentWeather);
|
|
if (!viewElement) {
|
|
viewElement = new cViewElementWeather(tmplView->GetViewElement(veCurrentWeather));
|
|
AddViewElement(veCurrentWeather, viewElement);
|
|
viewElement->Start();
|
|
} else {
|
|
if (!viewElement->Starting())
|
|
viewElement->Render();
|
|
}
|
|
} else {
|
|
map < string, string > stringTokens;
|
|
map < string, int > intTokens;
|
|
if (!SetCurrentWeatherTokens(stringTokens, intTokens)){
|
|
ClearViewElement(veCurrentWeather);
|
|
return;
|
|
}
|
|
ClearViewElement(veCurrentWeather);
|
|
DrawViewElement(veCurrentWeather, &stringTokens, &intTokens);
|
|
}
|
|
}
|
|
|
|
|
|
void cDisplayChannelView::Action(void) {
|
|
SetInitFinished();
|
|
FadeIn();
|
|
DoFlush();
|
|
cView::Action();
|
|
}
|