Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxICPWidget.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 #include "cxICPWidget.h"
33 
34 #include <QPushButton>
35 #include <QLabel>
36 #include <QSpinBox>
37 #include <QCheckBox>
38 #include <QGroupBox>
39 #include <vtkCellArray.h>
40 #include "cxTypeConversions.h"
41 #include "cxLogger.h"
42 #include "cxTimedAlgorithm.h"
46 #include "cxMesh.h"
47 #include "cxView.h"
48 #include "cxGeometricRep.h"
49 #include "cxGraphicalPrimitives.h"
50 #include "cxRegistrationService.h"
51 #include "cxViewService.h"
52 #include "cxPatientModelService.h"
53 #include "cxHelperWidgets.h"
54 
55 namespace cx
56 {
57 
58 ICPWidget::ICPWidget(QWidget* parent) :
59  BaseWidget(parent, "ICPWidget", "ICPWidget")
60 {
61  QHBoxLayout * buttonLayout = new QHBoxLayout;
62 
63  mRegisterButton = new QPushButton("Register");
64  mRegisterButton->setEnabled(false);
65  connect(mRegisterButton, &QPushButton::clicked, this, &ICPWidget::requestRegister);
66  buttonLayout->addWidget(mRegisterButton, 1, 0);
67 
68  mMetricValue = new QLineEdit(this);
69  mMetricValue->setReadOnly(true);
70  mMetricValue->setToolTip("Current RMS deviation between data sets");
71  buttonLayout->addWidget(mMetricValue);
72 
73  mVesselRegOptionsButton = this->createAction2(this,
74  QIcon(":/icons/open_icon_library/system-run-5.png"),
75  "Options",
76  "Options for controlling ICP algorithm",
77  buttonLayout);
78  mVesselRegOptionsButton->setCheckable(true);
79 
80 
81  mOptionsWidget = new QWidget(this);
82  mVesselRegOptionsWidget = this->wrapInGroupBox(mOptionsWidget, "ICP options");
83  connect(mVesselRegOptionsButton, &QAction::toggled, mVesselRegOptionsWidget, &QWidget::setVisible);
84 
85  QVBoxLayout* layout = new QVBoxLayout(this);
86  layout->addLayout(buttonLayout);
87  layout->addWidget(mVesselRegOptionsWidget);
88 
89  this->enableRegistration(false);
90 }
91 
93 {
94 }
95 
96 void ICPWidget::setSettings(std::vector<PropertyPtr> properties)
97 {
98  QGridLayout* layout = new QGridLayout(mOptionsWidget);
99 
100  int row=0;
101  for (unsigned i=0; i< properties.size(); ++i)
102  sscCreateDataWidget(this, properties[i], layout, i);
103 }
104 
106 {
107  mRegisterButton->setEnabled(on);
108  mVesselRegOptionsButton->setEnabled(true);
109  mVesselRegOptionsWidget->setVisible(mVesselRegOptionsButton->isChecked());
110 // mVesselRegOptionsButton->setEnabled(on);
111 // mVesselRegOptionsWidget->setVisible(mVesselRegOptionsButton->isChecked() && on);
112 }
113 
114 void ICPWidget::setRMS(double val)
115 {
116  mMetricValue->setText(QString("%1mm").arg(val, 0, 'f', 3));
117 }
118 
119 }//namespace cx
virtual ~ICPWidget()
Definition: cxICPWidget.cpp:92
void setSettings(std::vector< PropertyPtr > properties)
Definition: cxICPWidget.cpp:96
ICPWidget(QWidget *parent)
Definition: cxICPWidget.cpp:58
QGroupBox * wrapInGroupBox(QWidget *base, QString name)
void requestRegister()
void setRMS(double val)
Interface for QWidget which handles widgets uniformly for the system.
Definition: cxBaseWidget.h:108
void enableRegistration(bool on)
QWidget * sscCreateDataWidget(QWidget *parent, PropertyPtr data, QGridLayout *gridLayout, int row)
Create a widget capable of displaying the input data.
QAction * createAction2(QObject *parent, QIcon iconName, QString text, QString tip, QLayout *layout=NULL, QToolButton *button=new QToolButton())
Definition: cxBaseWidget.h:128