mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
1110dd27d1
First of all SDL2 trying to use dbus and this conflict with Qt. Check mantis#2704. And there no reason to use SDL2 in launcher when Qt can do the same thing as well.
34 lines
606 B
C++
34 lines
606 B
C++
/*
|
|
* 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>
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class QTableWidgetItem;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
void load();
|
|
void startExecutable(QString name);
|
|
public:
|
|
explicit MainWindow(QWidget * parent = 0);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
void on_startGameButton_clicked();
|
|
};
|