// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "settingspage.h" #include "updateinfoplugin.h" #include "updateinfotr.h" #include #include #include #include #include #include #include #include #include #include #include #include #include namespace UpdateInfo { namespace Internal { class UpdateInfoSettingsPageWidget final : public Core::IOptionsPageWidget { public: UpdateInfoSettingsPageWidget(UpdateInfoPlugin *plugin) : m_plugin(plugin) { setWindowTitle(Tr::tr("Configure Filters")); m_updatesGroupBox = new QGroupBox(Tr::tr("Automatic Check for Updates")); m_updatesGroupBox->setCheckable(true); m_updatesGroupBox->setChecked(true); m_infoLabel = new QLabel(Tr::tr("Automatically runs a scheduled check for updates on " "a time interval basis. The automatic check for updates " "will be performed at the scheduled date, or the next " "startup following it.")); m_infoLabel->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); m_infoLabel->setWordWrap(true); m_checkIntervalComboBox = new QComboBox; m_nextCheckDateLabel = new QLabel; m_checkForNewQtVersions = new QCheckBox(Tr::tr("Check for new Qt versions")); using namespace Layouting; Column { m_infoLabel, Row { Form { new QLabel(Tr::tr("Check interval basis:")), m_checkIntervalComboBox, br, new QLabel(Tr::tr("Next check date:")), m_nextCheckDateLabel }, st }, m_checkForNewQtVersions }.attachTo(m_updatesGroupBox); m_lastCheckDateLabel = new QLabel; m_checkNowButton = new QPushButton(Tr::tr("Check Now")); m_messageLabel = new QLabel; Column { m_updatesGroupBox, Row { new QLabel(Tr::tr("Last check date:")), m_lastCheckDateLabel, st, Row { m_messageLabel, st, m_checkNowButton } }, st }.attachTo(this); m_checkIntervalComboBox->setCurrentIndex(-1); m_lastCheckDateLabel->setText(Tr::tr("Not checked yet")); m_checkIntervalComboBox->addItem(Tr::tr("Daily"), UpdateInfoPlugin::DailyCheck); m_checkIntervalComboBox->addItem(Tr::tr("Weekly"), UpdateInfoPlugin::WeeklyCheck); m_checkIntervalComboBox->addItem(Tr::tr("Monthly"), UpdateInfoPlugin::MonthlyCheck); UpdateInfoPlugin::CheckUpdateInterval interval = m_plugin->checkUpdateInterval(); for (int i = 0; i < m_checkIntervalComboBox->count(); i++) { if (m_checkIntervalComboBox->itemData(i).toInt() == interval) { m_checkIntervalComboBox->setCurrentIndex(i); break; } } m_updatesGroupBox->setChecked(m_plugin->isAutomaticCheck()); m_checkForNewQtVersions->setChecked(m_plugin->isCheckingForQtVersions()); updateLastCheckDate(); checkRunningChanged(m_plugin->isCheckForUpdatesRunning()); connect(m_checkNowButton, &QPushButton::clicked, m_plugin, &UpdateInfoPlugin::startCheckForUpdates); connect(m_checkIntervalComboBox, &QComboBox::currentIndexChanged, this, &UpdateInfoSettingsPageWidget::updateNextCheckDate); connect(m_plugin, &UpdateInfoPlugin::lastCheckDateChanged, this, &UpdateInfoSettingsPageWidget::updateLastCheckDate); connect(m_plugin, &UpdateInfoPlugin::checkForUpdatesRunningChanged, this, &UpdateInfoSettingsPageWidget::checkRunningChanged); connect(m_plugin, &UpdateInfoPlugin::newUpdatesAvailable, this, &UpdateInfoSettingsPageWidget::newUpdatesAvailable); } void apply() final; private: void newUpdatesAvailable(bool available); void checkRunningChanged(bool running); void updateLastCheckDate(); void updateNextCheckDate(); UpdateInfoPlugin::CheckUpdateInterval currentCheckInterval() const; QPointer m_progressIndicator; UpdateInfoPlugin *m_plugin; QGroupBox *m_updatesGroupBox; QLabel *m_infoLabel; QComboBox *m_checkIntervalComboBox; QLabel *m_nextCheckDateLabel; QCheckBox *m_checkForNewQtVersions; QLabel *m_lastCheckDateLabel; QPushButton *m_checkNowButton; QLabel *m_messageLabel; }; UpdateInfoPlugin::CheckUpdateInterval UpdateInfoSettingsPageWidget::currentCheckInterval() const { return static_cast (m_checkIntervalComboBox->itemData(m_checkIntervalComboBox->currentIndex()).toInt()); } void UpdateInfoSettingsPageWidget::newUpdatesAvailable(bool available) { const QString message = available ? Tr::tr("New updates are available.") : Tr::tr("No new updates are available."); m_messageLabel->setText(message); } void UpdateInfoSettingsPageWidget::checkRunningChanged(bool running) { m_checkNowButton->setDisabled(running); if (running) { if (!m_progressIndicator) { m_progressIndicator = new Utils::ProgressIndicator(Utils::ProgressIndicatorSize::Large); m_progressIndicator->attachToWidget(this); } m_progressIndicator->show(); } else { if (m_progressIndicator) { delete m_progressIndicator; } } const QString message = running ? Tr::tr("Checking for updates...") : QString(); m_messageLabel->setText(message); } static QString localizedDate(const QDate &date) { static QLocale locale(Core::ICore::userInterfaceLanguage()); return locale.toString(date, locale.dateFormat()); } void UpdateInfoSettingsPageWidget::updateLastCheckDate() { const QDate date = m_plugin->lastCheckDate(); QString lastCheckDateString; if (date.isValid()) { lastCheckDateString = localizedDate(date); } else { lastCheckDateString = Tr::tr("Not checked yet"); } m_lastCheckDateLabel->setText(lastCheckDateString); updateNextCheckDate(); } void UpdateInfoSettingsPageWidget::updateNextCheckDate() { QDate date = m_plugin->nextCheckDate(currentCheckInterval()); if (!date.isValid() || date < QDate::currentDate()) date = QDate::currentDate(); m_nextCheckDateLabel->setText(localizedDate(date)); } void UpdateInfoSettingsPageWidget::apply() { m_plugin->setCheckUpdateInterval(currentCheckInterval()); m_plugin->setAutomaticCheck(m_updatesGroupBox->isChecked()); m_plugin->setCheckingForQtVersions(m_checkForNewQtVersions->isChecked()); } // SettingsPage SettingsPage::SettingsPage(UpdateInfoPlugin *plugin) { setId(FILTER_OPTIONS_PAGE_ID); setCategory(Core::Constants::SETTINGS_CATEGORY_CORE); setDisplayName(Tr::tr("Update")); setWidgetCreator([plugin] { return new UpdateInfoSettingsPageWidget(plugin); }); } } // Internal } // UpdateInfoPlugin