CustusX  16.5
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxMeshInfoWidget.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 CXMESHINFOWIDGET_H_
33 #define CXMESHINFOWIDGET_H_
34 
35 #include "cxGuiExport.h"
36 
37 #include <vector>
38 #include <QtWidgets>
39 
40 #include "cxMesh.h"
41 #include "cxDataInterface.h"
42 #include "cxInfoWidget.h"
43 #include "cxTabbedWidget.h"
44 
45 
46 namespace cx
47 {
48 typedef boost::shared_ptr<class SelectDataStringPropertyBase> SelectDataStringPropertyBasePtr;
49 
50 class cxGui_EXPORT ActiveMeshPropertiesWidget : public TabbedWidget
51 {
52  Q_OBJECT
53 public:
54  ActiveMeshPropertiesWidget(VisServicesPtr services, QWidget* parent);
56 };
57 
59 
60 //class cxGui_EXPORT SelectedMeshInfoWidget : public BaseWidget
61 //{
62 // Q_OBJECT
63 
64 //public:
65 // SelectedMeshInfoWidget(PatientModelServicePtr patientModelService, ViewServicePtr viewService, QWidget* parent);
66 // virtual ~SelectedMeshInfoWidget();
67 //};
68 
80 class cxGui_EXPORT MeshInfoWidget : public InfoWidget
81 {
82  Q_OBJECT
83 
84 public:
87  QWidget* parent);
88  virtual ~MeshInfoWidget();
89 
90  SelectDataStringPropertyBasePtr getSelector() { return mMeshSelector; }
91 
92 protected slots:
93  void setColorSlot();
94  void setColorSlotDelayed();
95  void meshSelectedSlot();
96  void importTransformSlot();
97  void meshChangedSlot();
98 
99 protected:
100  virtual void showEvent(QShowEvent* event);
101  virtual void hideEvent(QCloseEvent* event);
102 
103 private:
104  void addWidgets();
105 
106  MeshPtr mMesh;
107  StringPropertyParentFramePtr mParentFrameAdapter;
110  SelectDataStringPropertyBasePtr mMeshSelector;
111  ColorPropertyPtr mColorAdapter;
112  QCheckBox* mBackfaceCullingCheckBox;
113  QCheckBox* mFrontfaceCullingCheckBox;
114  DoublePropertyPtr mVisSizeWidget;
115  QCheckBox* mGlyphVisualizationCheckBox;
116  StringPropertyGlyphOrientationArrayPtr mGlyphOrientationArrayAdapter;
117  StringPropertyGlyphColorArrayPtr mGlyphColorArrayAdapter;
118  StringPropertyGlyphLUTPtr mGlyphColorLUTAdapter;
119 
120 
121  PatientModelServicePtr mPatientModelService;
122  ViewServicePtr mViewService;
123 
124  MeshInfoWidget();
125 };
126 
127 }//end namespace cx
128 
129 #endif /* CXMESHINFOWIDGET_H_ */
boost::shared_ptr< class StringPropertyDataUidEditable > StringPropertyDataUidEditablePtr
boost::shared_ptr< class ColorProperty > ColorPropertyPtr
boost::shared_ptr< class StringPropertyParentFrame > StringPropertyParentFramePtr
boost::shared_ptr< class VisServices > VisServicesPtr
Definition: cxMainWindow.h:62
boost::shared_ptr< class StringPropertyGlyphColorArray > StringPropertyGlyphColorArrayPtr
boost::shared_ptr< class StringPropertyDataNameEditable > StringPropertyDataNameEditablePtr
boost::shared_ptr< class ViewService > ViewServicePtr
boost::shared_ptr< class StringPropertyGlyphOrientationArray > StringPropertyGlyphOrientationArrayPtr
boost::shared_ptr< class SelectDataStringPropertyBase > SelectDataStringPropertyBasePtr
Interface for making widgets with a hierarchy of tabs.
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
boost::shared_ptr< class StringPropertyGlyphLUT > StringPropertyGlyphLUTPtr
boost::shared_ptr< class DoubleProperty > DoublePropertyPtr
cxLogicManager_EXPORT ViewServicePtr viewService()
SelectDataStringPropertyBasePtr getSelector()
boost::shared_ptr< class Mesh > MeshPtr