MorphoGraphX
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DebugDlg.hpp
1 #ifndef DEBUGDLG_HPP
2 #define DEBUGDLG_HPP
3 
4 #include <Config.hpp>
5 
6 #include <MorphoViewer.hpp>
7 
8 #include <ui_DebugDlg.h>
9 
10 class DebugDlg : public QDialog {
11  Q_OBJECT
12 public:
13  DebugDlg(MorphoViewer* viewer, QWidget* parent = 0, Qt::WindowFlags f = 0);
14 
15 protected slots:
16  void on_peeling_toggled(bool on);
17  void on_peelingSlice_valueChanged(int val);
18  void on_peelingType_currentIndexChanged(int val);
19 
20 protected:
21  MorphoViewer* viewer;
22  Ui::DebugDlg ui;
23 };
24 
25 #endif
Definition: DebugDlg.hpp:10
Definition: MorphoViewer.hpp:96