2023-01-26 18:24:34 +02:00
|
|
|
/*
|
|
|
|
* 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 FirstLaunchView : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2023-03-08 02:01:56 +02:00
|
|
|
void changeEvent(QEvent *event);
|
2023-01-26 18:24:34 +02:00
|
|
|
public:
|
|
|
|
explicit FirstLaunchView(QWidget * parent = 0);
|
|
|
|
~FirstLaunchView();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
void on_buttonTabLanguage_clicked();
|
|
|
|
|
|
|
|
void on_buttonTabHeroesData_clicked();
|
|
|
|
|
|
|
|
void on_buttonTabModPreset_clicked();
|
|
|
|
|
|
|
|
void on_buttonTabFinish_clicked();
|
|
|
|
|
2023-03-08 02:01:56 +02:00
|
|
|
void on_listWidgetLanguage_currentRowChanged(int currentRow);
|
|
|
|
|
2023-01-26 18:24:34 +02:00
|
|
|
private:
|
|
|
|
Ui::FirstLaunchView * ui;
|
|
|
|
|
|
|
|
};
|