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 VVMAINWINDOW_H
20 #define VVMAINWINDOW_H
24 #include "ui_vvMainWindow.h"
25 #include "vvMainWindowBase.h"
26 #include "vvToolManager.h"
27 #include "vvImageReader.h"
29 #include "clitkMemoryUsage.h"
31 #include "vtkSmartPointer.h"
34 class vvSlicerManager;
36 class vvDocumentation;
37 class vtkRenderWindowInteractor;
41 class vvDicomSeriesSelector;
45 //------------------------------------------------------------------------------
46 class vvMainWindow: public vvMainWindowBase,
47 private Ui::vvMainWindow
54 void LoadImages(std::vector<std::string> filenames, vvImageReader::LoadedImageType type);
55 vvSlicerManager * AddImage(vvImage::Pointer image,std::string filename);
56 void AddField(QString file,int index);
57 void AddOverlayImage(int index, QString filename);
58 void AddFusionImage(int index, QString filename);
59 void AddROI(int index, QString filename);
60 ///Adds a mesh to a SlicerManager, with optional warping by vector field
61 void AddContour(int image_index, vvMesh::Pointer contour, bool propagation);
62 ///This is used to show an image when opened or computed
64 void SaveCurrentStateAs(const std::string& stateFile);
65 void ReadSavedStateFile(const std::string& stateFile);
67 QString Get4x4MatrixDoubleAsString(vtkSmartPointer<vtkMatrix4x4> matrix, const int precision=3);
69 virtual void UpdateCurrentSlicer();
70 virtual QTabWidget * GetTab();
71 QTreeWidget* GetTree() { return DataTree; }
72 //vvMainWindowToolInfo * GetInfoForTool();
73 // void AddRunningTool(vvToolCreatorBase * tool);
76 ///Allows the user to open and select various surfaces contained in a dicom-struct file
77 void AddDCStructContour(int index, QString file);
78 void OpenDCStructContour();
79 ///Computes the midposition image of a 4D sequence with a VF and displays it
80 void ComputeMidPosition();
82 ///Slot triggered by the dynamically-generated recent file menu actions
83 void OpenRecentImage();
84 void OpenImageWithTime();
87 void MergeImagesWithTime();
89 ///Open a vtkPolyData surface mesh and display it over the current image
90 void OpenVTKContour();
92 void SaveCurrentState();
93 void ReadSavedState();
94 void CurrentImageChanged(std::string id);
95 void CurrentPickedImageChanged(std::string id);
96 void ImageInfoChanged();
97 void ShowHelpDialog();
98 void ShowDocumentation();
99 void PopupRegisterForm(bool checkCanPush=false);
100 void ComputeDeformableRegistration();
102 void ChangeViewMode();
103 void DisplayChanged(QTreeWidgetItem *item, int column);
104 void CloseImage(QTreeWidgetItem* item, int column);
105 void ReloadImage(QTreeWidgetItem* item, int column);
106 void MousePositionChanged(int visibility, double x, double y, double z, double X, double Y, double Z , double value);
107 void VectorChanged(int visibility, double x, double y, double z, double value);
108 void OverlayChanged(int visibility, double valueOver, double valueRef);
109 void FusionChanged(int visibility, double value);
110 void SegmentationOnCurrentImage();
111 void SurfaceViewerLaunch();
113 void WindowLevelChanged();
114 void UpdateSlice(int slicer, int slice);
115 void UpdateTSlice(int slicer, int slice);
116 void UpdateSliceRange(int slicer, int min, int max, int tmin, int tmax);
117 void WindowLevelEdited();
118 void SetWindowLevel(double w, double l);
119 void UpdateColorMap();
120 void UpdateWindowLevel();
121 void UpdateSlicingPreset();
122 void SwitchWindowLevel();
123 void ApplyWindowLevelToAllImages();
124 void UpdateLinkManager(std::string id, int slicer, double x, double y, double z, int temps);
125 void UpdateLinkedNavigation(std::string id, vvSlicerManager *sm, vvSlicer* refSlicer);
126 void AddLink(QString image1,QString image2);
127 void RemoveLink(QString image1,QString image2);
128 void ChangeImageWithIndexOffset(vvSlicerManager *sm, int slicer, int offset);
130 ///Generic method called when any one of the horizontal sliders is moved
131 void HorizontalSliderMoved(int value,int column, int slicer_index);
132 void NOHorizontalSliderMoved();
133 void NEHorizontalSliderMoved();
134 void SOHorizontalSliderMoved();
135 void SEHorizontalSliderMoved();
137 void NOVerticalSliderChanged();
138 void NEVerticalSliderChanged();
139 void SOVerticalSliderChanged();
140 void SEVerticalSliderChanged();
142 void SaveNEScreenshot();
143 void SaveNOScreenshot();
144 void SaveSEScreenshot();
145 void SaveSOScreenshot();
146 void SaveScreenshotAllSlices();
148 void ShowContextMenu(QPoint point);
152 void SelectOverlayImage();
153 void SelectFusionImage();
154 void ResetTransformationToIdentity();
156 void SetVFProperty(int subsampling,int scale,int lut, int width, double r, double g, double b);
157 void SetOverlayProperty(int color, int linked, double window, double level);
158 void SetFusionProperty(int opacity, int tresOpacity, int colormap,double window,double level, bool showLegend);
163 void ChangeFrameRate(int rate) {
166 void UpdateRenderWindows();
167 void UpdateMemoryUsage();
172 void createRecentlyOpenedFilesMenu();
173 void updateRecentlyOpenedFilesMenu(const std::list<std::string> &files);
178 // std::vector<vvSlicerManager*> mSlicerManagers;
179 vvHelpDialog *help_dialog;
180 vvDocumentation *documentation;
181 vvDicomSeriesSelector *dicomSeriesSelector;
188 ///Adds a vector field to slicer manager index
189 void WarpImage(vvSlicerManager* selected_slicer,int reference_phase);
190 void AddFieldEntry(QString filename,int index,bool from_disk);
191 void AddField(vvImage::Pointer vf,QString file,int index);
193 ///Sets the render window and LUT for the last SlicerManager
195 void DisplaySliders(int slicer, int window);
196 QString GetSizeInBytes(unsigned long size);
197 QString GetVectorDoubleAsString(std::vector<double> vectorDouble);
198 QString GetVectorIntAsString(std::vector<int> vectorInt);
199 int GetSlicerIndexFromItem(QTreeWidgetItem* item);
200 QTreeWidgetItem* GetItemFromSlicerManager(vvSlicerManager* sm);
201 void SaveScreenshot(QVTKWidget *widget);
202 int GetImageDuplicateFilenameNumber(std::string filename);
205 QMenu* recentlyOpenedFilesMenu;
206 //QMenu *AddSubImageMenu;
207 std::vector<QAction*> contextActions;
208 std::vector<QSlider*> horizontalSliders;
209 std::vector<QSlider*> verticalSliders;
212 std::string mCurrentSelectedImageId;
213 std::string mCurrentPickedImageId;
214 unsigned int mCurrentPickedImageIndex;
216 // vvMainWindowToolInfo * mCurrentToolInfo;
217 // std::vector<vvToolCreatorBase*> mListOfRunningTool;
219 static vvMainWindow * mSingleton;