| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * 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);
- CModListView * getModView();
- void setSetupProgress(int progress);
- void enterSetup();
- void activateTabLanguage();
- void activateTabHeroesData();
- void activateTabModPreset();
- void exitSetup();
-
- // Tab Language
- void languageSelected(const QString & languageCode);
- // Tab Heroes III Data
- bool heroesDataDetect();
- void heroesDataMissing();
- void heroesDataDetected();
- QString getHeroesInstallDir();
- void extractGogData();
- 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);
- // 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:
- Ui::FirstLaunchView * ui;
- };
|