mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
49 lines
894 B
C++
49 lines
894 B
C++
#ifndef MAINDIALOG_H
|
|
#define MAINDIALOG_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <components/files/configurationmanager.hpp>
|
|
#include <components/settings/settings.hpp>
|
|
|
|
class QListWidget;
|
|
class QListWidgetItem;
|
|
class QStackedWidget;
|
|
class QStringList;
|
|
class QStringListModel;
|
|
class QString;
|
|
|
|
class PlayPage;
|
|
class GraphicsPage;
|
|
class DataFilesPage;
|
|
|
|
class MainDialog : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainDialog();
|
|
|
|
public slots:
|
|
void changePage(QListWidgetItem *current, QListWidgetItem *previous);
|
|
void play();
|
|
bool setup();
|
|
|
|
private:
|
|
void createIcons();
|
|
void createPages();
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
QListWidget *mIconWidget;
|
|
QStackedWidget *mPagesWidget;
|
|
|
|
PlayPage *mPlayPage;
|
|
GraphicsPage *mGraphicsPage;
|
|
DataFilesPage *mDataFilesPage;
|
|
|
|
Files::ConfigurationManager mCfgMgr;
|
|
Settings::Manager mSettings;
|
|
};
|
|
|
|
#endif
|