void OwncloudSetupPage::setupCustomization() { // set defaults for the customize labels. _ui.sideLabel->setText( QString::null ); _ui.sideLabel->setFixedWidth(160); _ui.topLabel->hide(); _ui.bottomLabel->hide(); Theme *theme = Theme::instance(); QVariant variant = theme->customMedia( Theme::oCSetupTop ); setupCustomMedia( variant, _ui.topLabel ); variant = theme->customMedia( Theme::oCSetupSide ); setupCustomMedia( variant, _ui.sideLabel ); variant = theme->customMedia( Theme::oCSetupBottom ); setupCustomMedia( variant, _ui.bottomLabel ); QString fixUrl = theme->overrideServerUrl(); if( !fixUrl.isEmpty() ) { setOCUrl( fixUrl ); _ui.leUrl->setEnabled( false ); _ui.cbSecureConnect->hide(); _ui.leUrl->hide(); _ui.protocolLabel->hide(); _ui.serverAddressLabel->hide(); } }
OwncloudOAuthCredsPage::OwncloudOAuthCredsPage() : AbstractCredentialsWizardPage() { _ui.setupUi(this); Theme *theme = Theme::instance(); _ui.topLabel->hide(); _ui.bottomLabel->hide(); QVariant variant = theme->customMedia(Theme::oCSetupTop); WizardCommon::setupCustomMedia(variant, _ui.topLabel); variant = theme->customMedia(Theme::oCSetupBottom); WizardCommon::setupCustomMedia(variant, _ui.bottomLabel); WizardCommon::initErrorLabel(_ui.errorLabel); setTitle(WizardCommon::titleTemplate().arg(tr("Connect to %1").arg(Theme::instance()->appNameGUI()))); setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Login in your browser"))); connect(_ui.openLinkButton, &QCommandLinkButton::clicked, [this] { _ui.errorLabel->hide(); qobject_cast<OwncloudWizard *>(wizard())->account()->clearCookieJar(); // #6574 if (_asyncAuth) _asyncAuth->openBrowser(); }); _ui.openLinkButton->setContextMenuPolicy(Qt::CustomContextMenu); QObject::connect(_ui.openLinkButton, &QWidget::customContextMenuRequested, [this](const QPoint &pos) { auto menu = new QMenu(_ui.openLinkButton); menu->addAction(tr("Copy link to clipboard"), this, [this] { if (_asyncAuth) QApplication::clipboard()->setText(_asyncAuth->authorisationLink().toString(QUrl::FullyEncoded)); }); menu->setAttribute(Qt::WA_DeleteOnClose); menu->popup(_ui.openLinkButton->mapToGlobal(pos)); }); }
void OwncloudSetupPage::setupCustomization() { // set defaults for the customize labels. // _ui.topLabel->hide(); _ui.bottomLabel->hide(); Theme *theme = Theme::instance(); QVariant variant = theme->customMedia( Theme::oCSetupTop ); if( variant.isNull() ) { _ui.topLabel->setOpenExternalLinks(true); _ui.topLabel->setText("If you don't have an ownCloud server yet, see <a href=\"https://owncloud.com\">owncloud.com</a> for more info."); } else { setupCustomMedia( variant, _ui.topLabel ); } variant = theme->customMedia( Theme::oCSetupBottom ); setupCustomMedia( variant, _ui.bottomLabel ); QString fixUrl = theme->overrideServerUrl(); if( !fixUrl.isEmpty() ) { setServerUrl( fixUrl ); _ui.leUrl->setEnabled( false ); _ui.leUrl->hide(); } }
void OwncloudHttpCredsPage::setupCustomization() { // set defaults for the customize labels. _ui.topLabel->hide(); _ui.bottomLabel->hide(); Theme *theme = Theme::instance(); QVariant variant = theme->customMedia( Theme::oCSetupTop ); if( !variant.isNull() ) { WizardCommon::setupCustomMedia( variant, _ui.topLabel ); } variant = theme->customMedia( Theme::oCSetupBottom ); WizardCommon::setupCustomMedia( variant, _ui.bottomLabel ); }
void OwncloudSetupPage::setupCustomization() { // set defaults for the customize labels. _ui.topLabel->hide(); _ui.bottomLabel->hide(); Theme *theme = Theme::instance(); QVariant variant = theme->customMedia( Theme::oCSetupTop ); if( !variant.isNull() ) { WizardCommon::setupCustomMedia( variant, _ui.topLabel ); } variant = theme->customMedia( Theme::oCSetupBottom ); WizardCommon::setupCustomMedia( variant, _ui.bottomLabel ); QString fixUrl = theme->overrideServerUrl(); if( !fixUrl.isEmpty() ) { _ui.label_2->hide(); setServerUrl( fixUrl ); _ui.leUrl->setEnabled( false ); _ui.leUrl->hide(); } }