mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
46 lines
752 B
C++
46 lines
752 B
C++
#ifndef CSV_PREFS_DIALOGUE_H
|
|
#define CSV_PREFS_DIALOGUE_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class QSplitter;
|
|
class QStackedWidget;
|
|
class QListWidgetItem;
|
|
|
|
namespace CSVPrefs
|
|
{
|
|
class PageBase;
|
|
|
|
class Dialogue : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
QStackedWidget* mContent;
|
|
|
|
private:
|
|
void buildCategorySelector(QSplitter* main);
|
|
|
|
void buildContentArea(QSplitter* main);
|
|
|
|
PageBase* makePage(const std::string& key);
|
|
|
|
public:
|
|
Dialogue();
|
|
|
|
~Dialogue() override;
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent* event) override;
|
|
|
|
public slots:
|
|
|
|
void show();
|
|
|
|
private slots:
|
|
|
|
void selectionChanged(QListWidgetItem* current, QListWidgetItem* previous);
|
|
};
|
|
}
|
|
|
|
#endif
|