bool ZMLivePlayer::Create(void) { // Load the theme for this screen QString winName = m_isMiniPlayer ? "miniplayer" : "zmliveplayer"; if (!LoadWindowFromXML("zoneminder-ui.xml", winName, this)) { LOG(VB_GENERAL, LOG_ERR, QString("Cannot load screen '%1'").arg(winName)); return false; } if (!hideAll()) return false; if (m_isMiniPlayer) { // we only support the single camera layout in the mini player if (!initMonitorLayout(1)) return false; } else { if (!initMonitorLayout(gCoreContext->GetNumSetting("ZoneMinderLiveLayout", 1))) return false; } return true; }
bool ZMLivePlayer::Create(void) { bool foundtheme = false; // Load the theme for this screen foundtheme = LoadWindowFromXML("zoneminder-ui.xml", "zmliveplayer", this); if (!foundtheme) return false; if (!hideAll()) return false; if (!initMonitorLayout()) return false; return true; }