CustusX  16.5
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxShapedMetric.h
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 #ifndef CXSHAPEDMETRIC_H
33 #define CXSHAPEDMETRIC_H
34 
35 #include "cxResourceExport.h"
36 #include "cxPrecompiledHeader.h"
37 
38 #include "cxDataMetric.h"
39 #include "cxPointMetric.h"
41 
42 namespace cx
43 {
50 typedef boost::shared_ptr<class DonutMetric> DonutMetricPtr;
51 
61 class cxResource_EXPORT DonutMetric: public DataMetric
62 {
63 Q_OBJECT
64 public:
65  virtual ~DonutMetric();
66  static DonutMetricPtr create(QString uid, QString name, PatientModelServicePtr dataManager, SpaceProviderPtr spaceProvider);
67 
68  virtual bool isValid() const;
69  virtual QString getAsSingleLineString() const;
70  virtual QIcon getIcon() {return QIcon(":/icons/metric_torus.png");}
71 
72  void setRadius(double val);
73  double getRadius() const;
74  void setThickness(double val);
75  double getThickness() const;
76  void setHeight(double val);
77  double getHeight() const;
78  bool getFlat() const;
79  void setFlat(bool val);
80 
81  Vector3D getPosition();
82  Vector3D getDirection();
83 
85  virtual void addXml(QDomNode& dataNode);
86  virtual void parseXml(QDomNode& dataNode);
87  virtual DoubleBoundingBox3D boundingBox() const;
88  virtual Vector3D getRefCoord() const;
89  virtual QString getType() const
90  {
91  return getTypeName();
92  }
93  static QString getTypeName()
94  {
95  return "DonutMetric";
96  }
97  virtual QString getValueAsString() const { return ""; }
98  virtual bool showValueInGraphics() const { return false; }
99 
100 private:
101  DonutMetric(const QString& uid, const QString& name, PatientModelServicePtr dataManager, SpaceProviderPtr spaceProvider);
103  double mRadius;
104  double mThickness;
105  double mHeight;
106  bool mFlat;
107 };
108 
112 } // namespace cx
113 
114 #endif // CXSHAPEDMETRIC_H
boost::shared_ptr< class SpaceProvider > SpaceProviderPtr
boost::shared_ptr< class DonutMetric > DonutMetricPtr
virtual QString getType() const
static QString getTypeName()
MetricReferenceArgumentListPtr getArguments()
virtual QString getValueAsString() const
Data class that represents a donut.
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
boost::shared_ptr< class MetricReferenceArgumentList > MetricReferenceArgumentListPtr
Representation of a floating-point bounding box in 3D. The data are stored as {xmin,xmax,ymin,ymax,zmin,zmax}, in order to simplify communication with vtk.
virtual bool showValueInGraphics() const
cxLogicManager_EXPORT SpaceProviderPtr spaceProvider()
Eigen::Vector3d Vector3D
Vector3D is a representation of a point or vector in 3D.
Definition: cxVector3D.h:63
virtual QIcon getIcon()
Base class for all Data Metrics.
Definition: cxDataMetric.h:64