QXRD  0.11.16
qxrdglobalpreferencesdialog.h
Go to the documentation of this file.
1 #ifndef QXRDGLOBALPREFERENCESDIALOG_H
2 #define QXRDGLOBALPREFERENCESDIALOG_H
3 
4 #include <QDialog>
5 #include <QCheckBox>
6 #include "ui_qxrdglobalpreferencesdialog.h"
7 #include "qxrdapplication-ptr.h"
8 
9 class QxrdGlobalPreferencesDialog : public QDialog, public Ui::QxrdGlobalPreferencesDialog
10 {
11  Q_OBJECT
12 
13 public:
14  explicit QxrdGlobalPreferencesDialog(QxrdApplication *app, QWidget *parent = 0);
16 
17 public slots:
18  void accept();
19 
20 protected:
21  void changeEvent(QEvent *e);
22 
23 private:
24  void setupDebugWidgets(qint64 dbg);
25  qint64 readDebugWidgets();
26 
27 private:
29  QVector<QCheckBox*> m_DebugWidgetList;
30 };
31 
32 #endif // QXRDGLOBALPREFERENCESDIALOG_H
QVector< QCheckBox * > m_DebugWidgetList
QxrdGlobalPreferencesDialog(QxrdApplication *app, QWidget *parent=0)