1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-20 03:29:32 +02:00
vcmi/launcher/mainwindow_moc.h

86 lines
1.8 KiB
C++
Raw Normal View History

/*
* mainwindow_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 <QMainWindow>
#include <QStringList>
2023-01-07 18:26:02 +02:00
#include <QTranslator>
namespace Ui
{
class MainWindow;
const QString teamName = "vcmi";
const QString appName = "launcher";
}
class QTableWidgetItem;
2022-11-17 03:15:26 +04:00
class CModList;
2023-03-11 00:57:55 +02:00
class CModListView;
enum class ETranslationStatus : int8_t
{
NOT_AVAILABLE, // translation for this language was not found in mod list. Could also happen if player is offline or disabled repository checkout
NOT_INSTALLLED, // translation mod found, but it is not installed
DISABLED, // translation mod found, and installed, but toggled off
ACTIVE // translation mod active OR game is already in specified language (e.g. English H3 for players with English language)
};
class MainWindow : public QMainWindow
{
Q_OBJECT
#ifdef ENABLE_QT_TRANSLATIONS
QTranslator translator;
#endif
Ui::MainWindow * ui;
2024-04-20 19:51:03 +03:00
void load();
2024-04-20 19:51:03 +03:00
2022-11-27 05:35:05 +04:00
enum TabRows
{
MODS = 0,
SETTINGS = 1,
2024-01-11 22:33:58 +02:00
SETUP = 2,
ABOUT = 3,
2024-11-24 17:33:25 +00:00
START = 4,
2022-11-27 05:35:05 +04:00
};
public:
explicit MainWindow(QWidget * parent = nullptr);
~MainWindow() override;
2022-11-17 03:15:26 +04:00
2023-03-11 00:57:55 +02:00
CModListView * getModView();
2022-11-17 03:15:26 +04:00
void updateTranslation();
void computeSidePanelSizes();
void detectPreferredLanguage();
2023-03-12 18:33:29 +02:00
void enterSetup();
void exitSetup();
void switchToModsTab();
2024-11-24 17:33:25 +00:00
void switchToStartTab();
2023-03-12 18:33:29 +02:00
void dragEnterEvent(QDragEnterEvent* event) override;
void dropEvent(QDropEvent *event) override;
void manualInstallFile(QString filePath);
ETranslationStatus getTranslationStatus();
2024-04-20 19:51:03 +03:00
protected:
void changeEvent(QEvent * event) override;
2022-10-27 01:39:57 +04:00
public slots:
void on_startGameButton_clicked();
2022-11-27 05:35:05 +04:00
private slots:
void on_modslistButton_clicked();
void on_settingsButton_clicked();
2023-06-30 15:24:43 +03:00
void on_aboutButton_clicked();
};