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://oncora1.lyon.fnclcc.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 class vvStructureSetActor;
31 //------------------------------------------------------------------------------
32 class vvToolStructureSetManager:
33 public vvToolWidgetBase,
34 public vvToolBase<vvToolStructureSetManager>,
35 private Ui::vvToolStructureSetManager
39 vvToolStructureSetManager(vvMainWindowBase* parent=0, Qt::WindowFlags f=0, vvSlicerManager * c = NULL);
40 ~vvToolStructureSetManager();
42 static void Initialize();
43 virtual void InputIsSelected(vvSlicerManager *m);
45 int AddStructureSet(clitk::DicomRT_StructureSet * mStructureSet);
46 void UpdateStructureSetInTreeWidget(int index, clitk::DicomRT_StructureSet * s);
47 void AddRoiInTreeWidget(clitk::DicomRT_ROI * roi, QTreeWidget * w);
49 static vvToolStructureSetManager * AddImage(vvSlicerManager * m, std::string name, vvImage::Pointer image, double BG, bool modeBG=true);
50 void AddImage(vvImage::Pointer image, std::string filename, double BG, bool modeBG=true);
56 void OpenBinaryImage();
57 void SelectedItemChangedInTree();
58 void VisibleROIToggled(bool b);
59 void VisibleContourROIToggled(bool b);
60 void OpacityChanged(int v);
62 void ChangeContourColor();
63 void ChangeContourWidth(int n);
64 void AllVisibleROIToggled(int b);
65 void AllVisibleContourROIToggled(bool b);
66 void ReloadCurrentROI();
69 Ui::vvToolStructureSetManager ui;
70 clitk::DicomRT_StructureSet * mCurrentStructureSet;
71 vvStructureSetActor * mCurrentStructureSetActor;
72 int mCurrentStructureSetIndex;
73 clitk::DicomRT_ROI * mCurrentROI;
74 vvROIActor * mCurrentROIActor;
75 vtkLookupTable * mDefaultLUTColor;
76 bool mIsAllVisibleEnabled;
77 int mNumberOfVisibleROI;
78 int mNumberOfVisibleContourROI;
79 std::vector<clitk::DicomRT_StructureSet*> mStructureSetsList;
80 std::vector<vvStructureSetActor *> mStructureSetActorsList;
81 std::map<int, QTreeWidgetItem *> mMapStructureSetIndexToTreeWidget;
82 std::map<clitk::DicomRT_ROI*, QTreeWidgetItem *> mMapROIToTreeWidget;
83 std::map<QTreeWidgetItem *, clitk::DicomRT_ROI*> mMapTreeWidgetToROI;
84 std::vector<int> mLoadedROIIndex;
86 void setCurrentSelectedROI(clitk::DicomRT_ROI * roi);
87 void UpdateAllROIStatus();
89 virtual void closeEvent(QCloseEvent *event);
91 // Management of all instances
92 virtual void CheckInputList(std::vector<vvSlicerManager*> & l, int & index);
93 static std::vector<vvSlicerManager*> mListOfInputs;
94 static std::map<vvSlicerManager*, vvToolStructureSetManager*> mListOfOpenTool;
95 static int m_NumberOfTool;
96 bool MustOpenDialogWhenCreated;
98 }; // end class vvToolStructureSetManager
99 //------------------------------------------------------------------------------