| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- * firstlaunch_moc.h, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #pragma once
- #include "../StdInc.h"
- namespace Ui
- {
- class FirstLaunchView;
- }
- class CModListView;
- class FirstLaunchView : public QWidget
- {
- Q_OBJECT
- void changeEvent(QEvent *event) override;
- CModListView * getModView();
- void setSetupProgress(int progress);
- void enterSetup();
- void activateTabLanguage();
- void activateTabHeroesData();
- void activateTabModPreset();
- void exitSetup(bool goToMods);
-
- // Tab Language
- void languageSelected(const QString & languageCode);
- // Tab Heroes III Data
- bool heroesDataDetect();
- void heroesDataMissing();
- void heroesDataDetected();
- QString getHeroesInstallDir();
- void extractGogData();
- void extractGogDataAsync(QString filePathBin, QString filePathExe);
- void copyHeroesData(const QString & path = {}, bool move = false);
- // Tab Mod Preset
- void modPresetUpdate();
- QString findTranslationModName();
- bool checkCanInstallTranslation();
- bool checkCanInstallWog();
- bool checkCanInstallHota();
- bool checkCanInstallExtras();
- bool checkCanInstallMod(const QString & modID);
- public:
- explicit FirstLaunchView(QWidget * parent = nullptr);
- ~FirstLaunchView() override;
- // Tab Heroes III Data
- bool heroesDataUpdate();
- public slots:
- private slots:
- void on_buttonTabLanguage_clicked();
- void on_buttonTabHeroesData_clicked();
- void on_buttonTabModPreset_clicked();
- void on_listWidgetLanguage_currentRowChanged(int currentRow);
- void on_pushButtonLanguageNext_clicked();
- void on_pushButtonDataNext_clicked();
- void on_pushButtonDataBack_clicked();
- void on_pushButtonDataSearch_clicked();
- void on_pushButtonDataCopy_clicked();
- void on_pushButtonGogInstall_clicked();
- void on_pushButtonPresetBack_clicked();
- void on_pushButtonPresetNext_clicked();
- void on_pushButtonDiscord_clicked();
- void on_pushButtonGithub_clicked();
- private:
- std::unique_ptr<Ui::FirstLaunchView> ui;
- };
|