From 9ca9addad30d9e1c3ba7ddac4e4060c0e235becd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 2 Jan 2017 16:02:54 +0100 Subject: NOISSUE create a dumb and ugly java setup wizard page All it does is create the existing Java selection dialog --- application/setupwizard/SetupWizard.cpp | 169 ++++++++++++++++++++++---------- 1 file changed, 116 insertions(+), 53 deletions(-) (limited to 'application') diff --git a/application/setupwizard/SetupWizard.cpp b/application/setupwizard/SetupWizard.cpp index 9457e507..18b8aff9 100644 --- a/application/setupwizard/SetupWizard.cpp +++ b/application/setupwizard/SetupWizard.cpp @@ -114,6 +114,116 @@ private: QListView *languageView = nullptr; }; +#include +#include +#include +#include + +class JavaWizardPage : public BaseWizardPage +{ + Q_OBJECT; +public: + explicit JavaWizardPage(QWidget *parent = Q_NULLPTR) + : BaseWizardPage(parent) + { + setObjectName(QStringLiteral("javaPage")); + // FIXME: this is dumb and ugly. + qDebug() << "Java path needs resetting, showing Java selection dialog..."; + JavaInstallPtr java; + + VersionSelectDialog vselect(MMC->javalist().get(), tr("Select a Java version"), this, false); + vselect.setResizeOn(2); + vselect.exec(); + + if (vselect.selectedVersion()) + { + java = std::dynamic_pointer_cast(vselect.selectedVersion()); + } + else + { + CustomMessageBox::selectable(this, + tr("Invalid version selected"), + tr("You didn't select a valid Java version, so MultiMC will select the default. You can change this in the settings dialog."), + QMessageBox::Warning)->show(); + JavaUtils ju; + java = ju.GetDefaultJava(); + } + if (java) + { + MMC->settings()->set("JavaPath", java->path); + } + else + { + MMC->settings()->set("JavaPath", QString("java")); + } + retranslate(); + } + + virtual ~JavaWizardPage() + { + }; + + bool validatePage() override + { + auto settings = MMC->settings(); + /* + auto analytics = MMC->analytics(); + auto status = checkBox->isChecked(); + settings->set("AnalyticsSeen", analytics->version()); + settings->set("Analytics", status); + */ + return true; + } + + static bool isRequired() + { + QString currentHostName = QHostInfo::localHostName(); + QString oldHostName = MMC->settings()->get("LastHostname").toString(); + if (currentHostName != oldHostName) + { + MMC->settings()->set("LastHostname", currentHostName); + return true; + } + QString currentJavaPath = MMC->settings()->get("JavaPath").toString(); + QString actualPath = FS::ResolveExecutable(currentJavaPath); + if (actualPath.isNull()) + { + return true; + } + return false; + } + +protected: + void retranslate() override + { + setTitle(QApplication::translate("JavaWizardPage", "Java", Q_NULLPTR)); + setSubTitle(QApplication::translate("JavaWizardPage", "You need to set up Java to proceed.", Q_NULLPTR)); + /* + textBrowser->setHtml(QApplication::translate("JavaWizardPage", + "" + "

MultiMC sends anonymous usage statistics on every start of the application. This helps us decide what platforms and issues to focus on.

" + "

The data is processed by Google Analytics, see their article on the matter.

" + "

The following data is collected:

" + "
  • A random unique ID of the MultiMC installation.
    It is stored in the application settings (multimc.cfg).
  • " + "
  • Anonymized IP address.
    Last octet is set to 0 by Google and not stored.
  • " + "
  • MultiMC version.
  • " + "
  • Operating system name, version and architecture.
  • " + "
  • CPU architecture (kernel architecture on linux).
  • " + "
  • Size of system memory.
  • " + "
  • Java version, architecture and memory settings.
" + "

The analytics will activate on next start, unless you disable them in the settings.

" + "

If we change the tracked information, analytics won't be active for the first run and you will see this page again.

", Q_NULLPTR)); + checkBox->setText(QApplication::translate("JavaWizardPage", "Enable Analytics", Q_NULLPTR)); + */ + } +private: + /* + QVBoxLayout *verticalLayout_3 = nullptr; + QTextBrowser *textBrowser = nullptr; + QCheckBox *checkBox = nullptr; + */ +}; + class AnalyticsWizardPage : public BaseWizardPage { Q_OBJECT; @@ -204,6 +314,10 @@ SetupWizard::SetupWizard(QWidget *parent) : QWizard(parent) { setPage(Page::Language, new LanguageWizardPage(this)); } + if (JavaWizardPage::isRequired()) + { + setPage(Page::Java, new JavaWizardPage(this)); + } if(AnalyticsWizardPage::isRequired()) { setPage(Page::Analytics, new AnalyticsWizardPage(this)); @@ -231,66 +345,15 @@ SetupWizard::~SetupWizard() { } -/* -bool SetupWizard::javaIsRequired() -{ - QString currentHostName = QHostInfo::localHostName(); - QString oldHostName = MMC->settings()->get("LastHostname").toString(); - if (currentHostName != oldHostName) - { - MMC->settings()->set("LastHostname", currentHostName); - return true; - } - QString currentJavaPath = MMC->settings()->get("JavaPath").toString(); - QString actualPath = FS::ResolveExecutable(currentJavaPath); - if (actualPath.isNull()) - { - return true; - } - return false; -} -*/ - bool SetupWizard::isRequired() { if (LanguageWizardPage::isRequired()) return true; + if (JavaWizardPage::isRequired()) + return true; if (AnalyticsWizardPage::isRequired()) return true; return false; } -/* -void MainWindow::checkSetDefaultJava() -{ - qDebug() << "Java path needs resetting, showing Java selection dialog..."; - - JavaInstallPtr java; - - VersionSelectDialog vselect(MMC->javalist().get(), tr("Select a Java version"), this, false); - vselect.setResizeOn(2); - vselect.exec(); - - if (vselect.selectedVersion()) - java = std::dynamic_pointer_cast(vselect.selectedVersion()); - else - { - CustomMessageBox::selectable(this, tr("Invalid version selected"), tr("You didn't select a valid Java version, so MultiMC will " - "select the default. " - "You can change this in the settings dialog."), - QMessageBox::Warning) - ->show(); - - JavaUtils ju; - java = ju.GetDefaultJava(); - } - if (java) - { - MMC->settings()->set("JavaPath", java->path); - } - else - MMC->settings()->set("JavaPath", QString("java")); -} -*/ - #include "SetupWizard.moc" -- cgit v1.2.3