Fraxinus  17.12
An IGT application
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 BaseWidget
51 {
52  Q_OBJECT
53 public:
54  ActiveMeshPropertiesWidget(VisServicesPtr services, QWidget* parent);
56 };
57 
58 class cxGui_EXPORT AllMeshPropertiesWidget : public TabbedWidget
59 {
60  Q_OBJECT
61 public:
62  AllMeshPropertiesWidget(SelectDataStringPropertyBasePtr mesh, VisServicesPtr services, QWidget* parent);
64  SelectDataStringPropertyBasePtr getSelector() { return mMeshSelector; }
65 private:
66  SelectDataStringPropertyBasePtr mMeshSelector;
67 };
68 
70 
82 class cxGui_EXPORT MeshInfoWidget : public InfoWidget
83 {
84  Q_OBJECT
85 
86 public:
87  MeshInfoWidget(SelectDataStringPropertyBasePtr meshSelector,
88  PatientModelServicePtr patientModelService, ViewServicePtr viewService,
89  QWidget* parent);
90  virtual ~MeshInfoWidget();
91 
92  SelectDataStringPropertyBasePtr getSelector() { return mMeshSelector; }
93 
94 protected slots:
95  void meshSelectedSlot();
96  void importTransformSlot();
97  void meshChangedSlot();
98  void generateNormalsSlot();
99 
100 protected:
101  virtual void showEvent(QShowEvent* event);
102  virtual void hideEvent(QCloseEvent* event);
103 
104 private:
105  void addWidgets();
106 
107  MeshPtr mMesh;
108  StringPropertyParentFramePtr mParentFrameAdapter;
111  SelectDataStringPropertyBasePtr mMeshSelector;
112 
113  PatientModelServicePtr mPatientModelService;
114  ViewServicePtr mViewService;
115 
116  MeshInfoWidget();
117 };
118 
119 }//end namespace cx
120 
121 #endif /* CXMESHINFOWIDGET_H_ */
boost::shared_ptr< class StringPropertyDataUidEditable > StringPropertyDataUidEditablePtr
boost::shared_ptr< class StringPropertyParentFrame > StringPropertyParentFramePtr
boost::shared_ptr< class VisServices > VisServicesPtr
Definition: cxMainWindow.h:61
boost::shared_ptr< class StringPropertyDataNameEditable > StringPropertyDataNameEditablePtr
boost::shared_ptr< class ViewService > ViewServicePtr
boost::shared_ptr< class SelectDataStringPropertyBase > SelectDataStringPropertyBasePtr
Interface for making widgets with a hierarchy of tabs.
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
Interface for QWidget which handles widgets uniformly for the system.
Definition: cxBaseWidget.h:109
SelectDataStringPropertyBasePtr getSelector()
SelectDataStringPropertyBasePtr getSelector()
boost::shared_ptr< class Mesh > MeshPtr
Namespace for all CustusX production code.