1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
19 #ifndef VVTOOLSTRUCTURESETMANAGER_H
20 #define VVTOOLSTRUCTURESETMANAGER_H
22 #include <QtDesigner/QDesignerExportWidget>
23 #include "vvToolBase.h"
24 #include "vvToolWidgetBase.h"
25 #include "clitkDicomRT_StructureSet.h"
26 #include "ui_vvToolStructureSetManager.h"
27 #include "vvROIActor.h"
29 #include <QSharedPointer>
31 class vvStructureSetActor;
33 //------------------------------------------------------------------------------
34 class vvToolStructureSetManager:
35 public vvToolWidgetBase,
36 public vvToolBase<vvToolStructureSetManager>,
37 private Ui::vvToolStructureSetManager
41 vvToolStructureSetManager(vvMainWindowBase* parent=0, Qt::WindowFlags f=0, vvSlicerManager * c = NULL);
42 virtual ~vvToolStructureSetManager();
44 static void Initialize();
45 virtual void InputIsSelected(vvSlicerManager *m);
47 int AddStructureSet(clitk::DicomRT_StructureSet * mStructureSet);
48 void UpdateStructureSetInTreeWidget(int index, clitk::DicomRT_StructureSet * s);
49 void AddRoiInTreeWidget(clitk::DicomRT_ROI * roi, QTreeWidget * w);
51 static vvToolStructureSetManager * AddImage(vvSlicerManager * m, std::string name, vvImage::Pointer image, double BG, bool modeBG=true);
52 void AddImage(vvImage * image, std::string filename, double BG, bool modeBG=true);
58 void OpenBinaryImage();
59 void SelectedItemChangedInTree();
60 void VisibleROIToggled(bool b);
61 void VisibleContourROIToggled(bool b);
62 void OpacityChanged(int v);
64 void ChangeContourColor();
65 void ChangeContourWidth(int n);
66 void AllVisibleROIToggled(int b);
67 void AllVisibleContourROIToggled(bool b);
68 void ReloadCurrentROI();
71 Ui::vvToolStructureSetManager ui;
72 clitk::DicomRT_StructureSet* mCurrentStructureSet;
73 vvStructureSetActor * mCurrentStructureSetActor;
74 int mCurrentStructureSetIndex;
75 clitk::DicomRT_ROI::Pointer mCurrentROI;
76 vvROIActor * mCurrentROIActor;
77 vtkSmartPointer<vtkLookupTable> mDefaultLUTColor;
78 bool mIsAllVisibleEnabled;
79 int mNumberOfVisibleROI;
80 int mNumberOfVisibleContourROI;
81 std::vector<clitk::DicomRT_StructureSet::Pointer > mStructureSetsList;
82 std::vector< QSharedPointer<vvStructureSetActor> > mStructureSetActorsList;
83 std::vector< QSharedPointer<QTreeWidgetItem> > mTreeWidgetList;
84 std::map<clitk::DicomRT_ROI::Pointer, QTreeWidgetItem *> mMapROIToTreeWidget;
85 std::map<QTreeWidgetItem *, clitk::DicomRT_ROI::Pointer> mMapTreeWidgetToROI;
86 std::vector<int> mLoadedROIIndex;
87 std::vector<vvImage::Pointer> mOpenedBinaryImage;
89 void setCurrentSelectedROI(clitk::DicomRT_ROI * roi);
90 void UpdateAllROIStatus();
92 virtual void closeEvent(QCloseEvent *event);
94 // Management of all instances
95 virtual void CheckInputList(std::vector<vvSlicerManager*> & l, int & index);
96 static std::vector<vvSlicerManager*> mListOfInputs;
97 static std::map<vvSlicerManager*, vvToolStructureSetManager*> mListOfOpenTool;
98 static int m_NumberOfTool;
99 bool MustOpenDialogWhenCreated;
101 }; // end class vvToolStructureSetManager
102 //------------------------------------------------------------------------------