You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
827 B
C++
47 lines
827 B
C++
#ifndef MAINDIALOG_H
|
|
#define MAINDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include <components/files/configurationmanager.hpp>
|
|
|
|
class QListWidget;
|
|
class QListWidgetItem;
|
|
class QStackedWidget;
|
|
class QStringList;
|
|
class QStringListModel;
|
|
class QString;
|
|
|
|
class PlayPage;
|
|
class GraphicsPage;
|
|
class DataFilesPage;
|
|
|
|
class MainDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainDialog();
|
|
|
|
public slots:
|
|
void changePage(QListWidgetItem *current, QListWidgetItem *previous);
|
|
void play();
|
|
void profileChanged(int index);
|
|
|
|
private:
|
|
void createIcons();
|
|
void createPages();
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
QListWidget *mIconWidget;
|
|
QStackedWidget *mPagesWidget;
|
|
|
|
PlayPage *mPlayPage;
|
|
GraphicsPage *mGraphicsPage;
|
|
DataFilesPage *mDataFilesPage;
|
|
|
|
Files::ConfigurationManager mCfgMgr;
|
|
};
|
|
|
|
#endif
|