| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /*
- * 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;
- const QString teamName = "VCMI Team";
- const QString appName = "VCMI Launcher";
- }
- class QTableWidgetItem;
- class CModList;
- class MainWindow : public QMainWindow
- {
- Q_OBJECT
- private:
- Ui::MainWindow * ui;
- void load();
-
- enum TabRows
- {
- MODS = 0, SETTINGS = 1, LOBBY = 2
- };
- public:
- explicit MainWindow(QWidget * parent = 0);
- ~MainWindow();
- const CModList & getModList() const;
-
- public slots:
- void on_startGameButton_clicked();
-
- private slots:
- void on_tabSelectList_currentRowChanged(int currentRow);
- };
|