forked from openigtlink/OpenIGTLinkIF
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathqSlicerOpenIGTLinkIFModuleWidget.h
More file actions
42 lines (29 loc) · 992 Bytes
/
qSlicerOpenIGTLinkIFModuleWidget.h
File metadata and controls
42 lines (29 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef __qSlicerOpenIGTLinkIFModuleWidget_h
#define __qSlicerOpenIGTLinkIFModuleWidget_h
// SlicerQt includes
#include "qSlicerAbstractModuleWidget.h"
#include "qSlicerOpenIGTLinkIFModuleExport.h"
class qSlicerOpenIGTLinkIFModuleWidgetPrivate;
class vtkMRMLNode;
/// \ingroup Slicer_QtModules_OpenIGTLinkIF
class Q_SLICER_QTMODULES_OPENIGTLINKIF_EXPORT qSlicerOpenIGTLinkIFModuleWidget :
public qSlicerAbstractModuleWidget
{
Q_OBJECT
public:
typedef qSlicerAbstractModuleWidget Superclass;
qSlicerOpenIGTLinkIFModuleWidget(QWidget *parent=0);
virtual ~qSlicerOpenIGTLinkIFModuleWidget();
public slots:
protected:
QScopedPointer<qSlicerOpenIGTLinkIFModuleWidgetPrivate> d_ptr;
virtual void setup();
virtual void setMRMLScene(vtkMRMLScene*);
protected slots:
void onAddConnectorButtonClicked();
void onRemoveConnectorButtonClicked();
private:
Q_DECLARE_PRIVATE(qSlicerOpenIGTLinkIFModuleWidget);
Q_DISABLE_COPY(qSlicerOpenIGTLinkIFModuleWidget);
};
#endif