mirror of https://github.com/OpenMW/openmw.git
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.
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
|