1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/launcher/mainwindow_moc.h

72 lines
1.3 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 01:15:26 +02:00
class CModList;
2023-03-11 00:57:55 +02:00
class CModListView;
class MainWindow : public QMainWindow
{
Q_OBJECT
#ifdef ENABLE_QT_TRANSLATIONS
QTranslator translator;
#endif
Ui::MainWindow * ui;
2024-04-20 18:51:03 +02:00
void load();
2024-04-20 18:51:03 +02:00
2022-11-27 03:35:05 +02:00
enum TabRows
{
MODS = 0,
SETTINGS = 1,
2024-01-11 22:33:58 +02:00
SETUP = 2,
ABOUT = 3,
2022-11-27 03:35:05 +02:00
};
public:
explicit MainWindow(QWidget * parent = nullptr);
~MainWindow() override;
2022-11-17 01:15:26 +02:00
const CModList & getModList() const;
2023-03-11 00:57:55 +02:00
CModListView * getModView();
2022-11-17 01:15:26 +02:00
void updateTranslation();
void computeSidePanelSizes();
void detectPreferredLanguage();
2023-03-12 18:33:29 +02:00
void enterSetup();
void exitSetup();
void switchToModsTab();
2023-03-12 18:33:29 +02:00
2024-04-20 18:51:03 +02:00
protected:
void changeEvent(QEvent * event) override;
2022-10-26 23:39:57 +02:00
public slots:
void on_startGameButton_clicked();
2022-11-27 03:35:05 +02:00
private slots:
void on_modslistButton_clicked();
void on_settingsButton_clicked();
void on_startEditorButton_clicked();
2023-06-30 14:24:43 +02:00
void on_aboutButton_clicked();
};