mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
40 lines
611 B
C++
40 lines
611 B
C++
|
#ifndef CSV_PREFS_DIALOGUE_H
|
||
|
#define CSV_PREFS_DIALOGUE_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
class QSplitter;
|
||
|
class QListWidget;
|
||
|
class QStackedWidget;
|
||
|
|
||
|
namespace CSVPrefs
|
||
|
{
|
||
|
class Dialogue : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
QListWidget *mList;
|
||
|
QStackedWidget *mContent;
|
||
|
|
||
|
private:
|
||
|
|
||
|
void buildCategorySelector (QSplitter *main);
|
||
|
|
||
|
void buildContentArea (QSplitter *main);
|
||
|
|
||
|
public:
|
||
|
|
||
|
Dialogue();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
void closeEvent (QCloseEvent *event);
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
void show();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|