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 VVMAINWINDOW_H
20 #define VVMAINWINDOW_H
24 #include "ui_vvMainWindow.h"
25 #include "vvMainWindowBase.h"
26 #include "vvToolManager.h"
27 #include "vvConstants.h"
30 class vvSlicerManager;
32 class vvDocumentation;
33 class vtkRenderWindowInteractor;
36 class vvDicomSeriesSelector;
38 //------------------------------------------------------------------------------
39 class vvMainWindow: public vvMainWindowBase,
40 private Ui::vvMainWindow
47 void LoadImages(std::vector<std::string> filenames, LoadedImageType type);
48 vvSlicerManager * AddImage(vvImage::Pointer image,std::string filename);
49 void AddField(QString file,int index);
50 void AddOverlayImage(int index, QString filename);
51 void AddROI(int index, QString filename);
52 ///Adds a mesh to a SlicerManager, with optional warping by vector field
53 void AddContour(int image_index, vvMesh::Pointer contour, bool propagation);
54 ///This is used to show an image when opened or computed
57 virtual void UpdateCurrentSlicer();
58 virtual QTabWidget * GetTab();
59 //vvMainWindowToolInfo * GetInfoForTool();
60 // void AddRunningTool(vvToolCreatorBase * tool);
63 ///Allows the user to open and select various surfaces contained in a dicom-struct file
64 void OpenDCStructContour();
65 ///Computes the MIP of the currently selected image and displays it
67 ///Computes the midposition image of a 4D sequence with a VF and displays it
68 void ComputeMidPosition();
70 ///Slot triggered by the dynamically-generated recent file menu actions
71 void OpenRecentImage();
72 void OpenImageWithTime();
74 void MergeImagesWithTime();
76 ///Open a vtkPolyData surface mesh and display it over the current image
77 void OpenVTKContour();
79 void CurrentImageChanged(std::string id);
80 void ImageInfoChanged();
81 void ShowHelpDialog();
82 void ShowDocumentation();
83 void ComputeDeformableRegistration();
85 void ChangeViewMode();
86 void DisplayChanged(QTreeWidgetItem *item, int column);
87 void CloseImage(QTreeWidgetItem* item, int column);
88 void ReloadImage(QTreeWidgetItem* item, int column);
89 void MousePositionChanged(int visibility, double x, double y, double z, double X, double Y, double Z , double value);
90 void VectorChanged(int visibility, double x, double y, double z, double value);
91 void OverlayChanged(int visibility, double valueOver, double valueRef);
92 void FusionChanged(int visibility, double value);
93 void SegmentationOnCurrentImage();
94 void SurfaceViewerLaunch();
96 void WindowsChanged(int window, int view, int slice);
97 void WindowLevelChanged(double window, double level,int preset, int colormap);
98 void UpdateSlice(int slicer, int slice);
99 void UpdateTSlice(int slicer, int slice);
100 void UpdateSliceRange(int slicer, int min, int max, int tmin, int tmax);
101 void WindowLevelEdited();
102 void UpdateColorMap();
103 void UpdateWindowLevel();
104 void SwitchWindowLevel();
105 void UpdateLinkManager(std::string id, int slicer, double x, double y, double z, int temps);
106 void UpdateLinkedNavigation(std::string id, vvSlicerManager *sm);
107 void AddLink(QString image1,QString image2);
108 void RemoveLink(QString image1,QString image2);
109 void ChangeImageWithIndexOffset(vvSlicerManager *sm, int slicer, int offset);
111 ///Generic method called when any one of the horizontal sliders is moved
112 void HorizontalSliderMoved(int value,int column, int slicer_index);
113 void NOHorizontalSliderMoved();
114 void NEHorizontalSliderMoved();
115 void SOHorizontalSliderMoved();
116 void SEHorizontalSliderMoved();
118 void NOVerticalSliderChanged();
119 void NEVerticalSliderChanged();
120 void SOVerticalSliderChanged();
121 void SEVerticalSliderChanged();
123 void SaveNEScreenshot();
124 void SaveNOScreenshot();
125 void SaveSEScreenshot();
126 void SaveSOScreenshot();
128 void ShowContextMenu(QPoint point);
134 void SelectOverlayImage();
135 void AddFusionImage();
137 void SetVFProperty(int subsampling,int scale,int lut, int width);
138 void SetOverlayProperty(int color);
139 void SetFusionProperty(int opacity,int colormap,double window,double level);
144 void ChangeFrameRate(int rate) {
147 void UpdateRenderWindows();
152 // std::vector<vvSlicerManager*> mSlicerManagers;
153 vvHelpDialog *help_dialog;
154 vvDocumentation *documentation;
155 vvDicomSeriesSelector *dicomSeriesSelector;
162 ///Adds a vector field to slicer manager index
163 void WarpImage(vvSlicerManager* selected_slicer,int reference_phase);
164 void AddFieldEntry(QString filename,int index,bool from_disk);
165 void AddField(vvImage::Pointer vf,QString file,int index);
167 ///Sets the render window and LUT for the last SlicerManager
169 void DisplaySliders(int slicer, int window);
170 QString GetSizeInBytes(unsigned long size);
171 QString GetVectorDoubleAsString(std::vector<double> vectorDouble);
172 QString GetVectorIntAsString(std::vector<int> vectorInt);
173 int GetSlicerIndexFromItem(QTreeWidgetItem* item);
174 QTreeWidgetItem* GetItemFromSlicerManager(vvSlicerManager* sm);
175 void SaveScreenshot(vtkImageData* image);
178 //QMenu *AddSubImageMenu;
179 std::vector<QAction*> contextActions;
180 std::vector<QSlider*> horizontalSliders;
181 std::vector<QSlider*> verticalSliders;
184 std::string mCurrentSelectedImageId;
186 // vvMainWindowToolInfo * mCurrentToolInfo;
187 // std::vector<vvToolCreatorBase*> mListOfRunningTool;
189 static vvMainWindow * mSingleton;
195 #include "vvMainWindow.txx"