Kooky
coptions.h
Go to the documentation of this file.
1 
19 #ifndef COPTIONS_H
20 #define COPTIONS_H
21 
22 #include "cmainwindow.h"
23 
24 #include <QDialog>
25 #include <QStandardItemModel>
26 #include <QItemSelection>
27 
28 
29 namespace Ui {
30 class cOptions;
31 }
32 
37 class cOptions : public QDialog
38 {
39  Q_OBJECT
40 
41 public:
47  explicit cOptions(QWidget *parent = 0);
52  ~cOptions();
53 
54 private slots:
61  void onOptionsTreeSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected);
62 
63 private:
64  Ui::cOptions* ui;
66  QList<cPlugin*> m_pluginList;
67  QStandardItemModel* m_lpOptionsTreeModel;
69 protected:
74  void init();
75 };
76 
77 #endif // COPTIONS_H
cMainWindow * m_lpMainWindow
Definition: coptions.h:65
Ui::cOptions * ui
Definition: coptions.h:64
Definition: cconfigdialog.h:27
QList< cPlugin * > m_pluginList
Definition: coptions.h:66
QStandardItemModel * m_lpOptionsTreeModel
Definition: coptions.h:67
This is the class that implements the main window.
Definition: cmainwindow.h:42
This dialog displays all options.
Definition: coptions.h:37