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.
50 lines
838 B
C++
50 lines
838 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();
|
|
|
|
virtual ~Dialogue();
|
|
|
|
protected:
|
|
|
|
void closeEvent (QCloseEvent *event) override;
|
|
|
|
public slots:
|
|
|
|
void show();
|
|
|
|
private slots:
|
|
|
|
void selectionChanged (QListWidgetItem *current, QListWidgetItem *previous);
|
|
};
|
|
}
|
|
|
|
#endif
|