void AbstractCommand::readProperties(boost::property_tree::wptree& pt) { if (pt.count(L"channel") > 0) setChannel(pt.get<int>(L"channel")); if (pt.count(L"videolayer") > 0) setVideolayer(pt.get<int>(L"videolayer")); if (pt.count(L"delay") > 0) setDelay(pt.get<int>(L"delay")); if (pt.count(L"allowgpi") > 0) setAllowGpi(pt.get<bool>(L"allowgpi")); if (pt.count(L"allowremotetriggering") > 0) setAllowRemoteTriggering(pt.get<bool>(L"allowremotetriggering")); }
void OpacityCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); if (pt.count(L"opacity") > 0) setOpacity(pt.get<float>(L"opacity")); if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration")); if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween"))); if (pt.count(L"defer") > 0) setDefer(pt.get<bool>(L"defer")); }
void SolidColorCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); if (pt.count(L"transition") > 0) setTransition(QString::fromStdWString(pt.get<std::wstring>(L"transition"))); if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration")); if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween"))); if (pt.count(L"direction") > 0) setDirection(QString::fromStdWString(pt.get<std::wstring>(L"direction"))); if (pt.count(L"solidcolor") > 0) setColor(QString::fromStdWString(pt.get<std::wstring>(L"solidcolor"))); }
void ChromaCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); if (pt.count(L"chromablur") > 0) setSpread(pt.get<float>(L"chromablur")); if (pt.count(L"chromakey") > 0) setKey(QString::fromStdWString(pt.get<std::wstring>(L"chromakey"))); if (pt.count(L"chromasoftness") > 0) setSpread(pt.get<float>(L"chromasoftness")); if (pt.count(L"chromaspill") > 0) setSpill(pt.get<float>(L"chromaspill")); if (pt.count(L"chromathreshold") > 0) setThreshold(pt.get<float>(L"chromathreshold")); setShowMask(false); }
void HttpPostCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); setUrl(QString::fromStdWString(pt.get(L"url", Http::DEFAULT_URL.toStdWString()))); setTriggerOnNext(pt.get(L"triggeronnext", Http::DEFAULT_TRIGGER_ON_NEXT)); if (pt.count(L"httpdata") > 0) { BOOST_FOREACH(const boost::property_tree::wptree::value_type& value, pt.get_child(L"httpdata")) { this->models.push_back(KeyValueModel(QString::fromStdWString(value.second.get<std::wstring>(L"key")), QString::fromStdWString(value.second.get<std::wstring>(L"value")))); } }
void CropCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); if (pt.count(L"cropleft") > 0) setCropLeft(pt.get<float>(L"cropleft")); if (pt.count(L"cropright") > 0) setCropRight(pt.get<float>(L"cropright")); if (pt.count(L"croptop") > 0) setCropTop(pt.get<float>(L"croptop")); if (pt.count(L"cropbottom") > 0) setCropBottom(pt.get<float>(L"cropbottom")); if (pt.count(L"duration") > 0) setDuration(pt.get<int>(L"duration")); if (pt.count(L"tween") > 0) setTween(QString::fromStdWString(pt.get<std::wstring>(L"tween"))); if (pt.count(L"defer") > 0) setDefer(pt.get<bool>(L"defer")); }
void RundownSaturationWidget::readProperties(boost::property_tree::wptree& pt) { if (pt.count(L"color") > 0) setColor(QString::fromStdWString(pt.get<std::wstring>(L"color"))); }
void BlendModeCommand::readProperties(boost::property_tree::wptree& pt) { AbstractCommand::readProperties(pt); if (pt.count(L"blendmode") > 0) setBlendMode(QString::fromStdWString(pt.get<std::wstring>(L"blendmode"))); }