mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
945f1aad20
Detected by clang-tidy's modernize-use-override
50 lines
839 B
C++
50 lines
839 B
C++
#ifndef CSV_PREFS_DIALOGUE_H
|
|
#define CSV_PREFS_DIALOGUE_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class QSplitter;
|
|
class QListWidget;
|
|
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
|