]> Creatis software - clitk.git/blob - vv/vvMainWindow.h
be50cb74dee6a2b61c897b28c71711befba74f42
[clitk.git] / vv / vvMainWindow.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
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
8
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.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
18
19 #ifndef VVMAINWINDOW_H
20 #define VVMAINWINDOW_H
21
22 #include <iostream>
23 #include <vector>
24 #include "ui_vvMainWindow.h"
25 #include "vvMainWindowBase.h"
26 #include "vvToolManager.h"
27 #include "vvConstants.h"
28 #include "vvMesh.h"
29
30 class vvSlicerManager;
31 class vvHelpDialog;
32 class vvDocumentation;
33 class vtkRenderWindowInteractor;
34 class vtkImageData;
35 class vtkRenderer;
36 class vvDicomSeriesSelector;
37
38 //------------------------------------------------------------------------------
39 class vvMainWindow: public vvMainWindowBase,
40                     private Ui::vvMainWindow
41 {
42   Q_OBJECT
43
44   public:
45   vvMainWindow();
46   ~vvMainWindow();
47   void LoadImages(std::vector<std::string> filenames, LoadedImageType type);
48   void AddImage(vvImage::Pointer image,std::string filename);
49   void AddField(QString file,int index);
50   void AddOverlayImage(int index, QString filename);
51   ///Adds a mesh to a SlicerManager, with optional warping by vector field
52   void AddContour(int image_index, vvMesh::Pointer contour, bool propagation);
53   ///This is used to show an image when opened or computed
54   void ShowLastImage();
55
56   virtual void UpdateCurrentSlicer();
57   virtual QTabWidget * GetTab();
58   //vvMainWindowToolInfo * GetInfoForTool();
59 //   void AddRunningTool(vvToolCreatorBase * tool);
60
61 public slots:
62   ///Allows the user to open and select various surfaces contained in a dicom-struct file
63   void OpenDCStructContour();
64   ///Computes the MIP of the currently selected image and displays it
65   void ComputeMIP();
66   ///Computes the midposition image of a 4D sequence with a VF and displays it
67   void ComputeMidPosition();
68   void OpenImages();
69   ///Slot triggered by the dynamically-generated recent file menu actions
70   void OpenRecentImage();
71   void OpenImageWithTime();
72   void MergeImages();
73   void MergeImagesWithTime();
74   void OpenDicom();
75   ///Open a vtkPolyData surface mesh and display it over the current image
76   void OpenVTKContour();
77   void SaveAs();
78   void CurrentImageChanged(std::string id);
79   void ImageInfoChanged();
80   void ShowHelpDialog();
81   void ShowDocumentation();
82   void ComputeDeformableRegistration();
83   void WarpImage();
84   void ChangeViewMode();
85   void DisplayChanged(QTreeWidgetItem *item, int column);
86   void CloseImage(QTreeWidgetItem* item, int column);
87   void ReloadImage(QTreeWidgetItem* item, int column);
88   void MousePositionChanged(int visibility, double x, double y, double z, double X, double Y, double Z , double value);
89   void VectorChanged(int visibility, double x, double y, double z, double value);
90   void OverlayChanged(int visibility, double valueOver, double valueRef);
91   void FusionChanged(int visibility, double value);
92   void SegmentationOnCurrentImage();
93   void SurfaceViewerLaunch();
94
95   void WindowsChanged(int window, int view, int slice);
96   void WindowLevelChanged(double window, double level,int preset, int colormap);
97   void UpdateSlice(int slicer, int slice);
98   void UpdateTSlice(int slicer, int slice);
99   void UpdateSliceRange(int slicer, int min, int max, int tmin, int tmax);
100   void WindowLevelEdited();
101   void UpdateColorMap();
102   void UpdateWindowLevel();
103   void SwitchWindowLevel();
104   void UpdateLinkManager(std::string id, int slicer, double x, double y, double z, int temps);
105   void AddLink(QString image1,QString image2);
106   void RemoveLink(QString image1,QString image2);
107   void ChangeImageWithIndexOffset(vvSlicerManager *sm, int slicer, int offset);
108
109   ///Generic method called when any one of the horizontal sliders is moved
110   void HorizontalSliderMoved(int value,int column, int slicer_index);
111   void NOHorizontalSliderMoved();
112   void NEHorizontalSliderMoved();
113   void SOHorizontalSliderMoved();
114   void SEHorizontalSliderMoved();
115
116   void NOVerticalSliderChanged();
117   void NEVerticalSliderChanged();
118   void SOVerticalSliderChanged();
119   void SEVerticalSliderChanged();
120
121   void SaveNEScreenshot();
122   void SaveNOScreenshot();
123   void SaveSEScreenshot();
124   void SaveSOScreenshot();
125
126   void ShowContextMenu(QPoint point);
127   //  void CropImage();
128   void SplitImage();
129   void CloseImage();
130   void ReloadImage();
131   void OpenField();
132   void SelectOverlayImage();
133   void AddFusionImage();
134
135   void SetVFProperty(int subsampling,int scale,int lut, int width);
136   void SetOverlayProperty(int color);
137   void SetFusionProperty(int opacity,int colormap,double window,double level);
138
139   void GoToCursor();
140   void PlayPause();
141   void PlayNext();
142   void ChangeFrameRate(int rate) {
143     mFrameRate = rate;
144   }
145   void UpdateRenderWindows();
146
147 private:
148
149   //variables
150   // std::vector<vvSlicerManager*> mSlicerManagers;
151   vvHelpDialog *help_dialog;
152   vvDocumentation *documentation;
153   vvDicomSeriesSelector *dicomSeriesSelector;
154
155   bool viewMode;
156   bool playMode;
157
158   //functions
159   void UpdateTree();
160   ///Adds a vector field to slicer manager index
161   void WarpImage(vvSlicerManager* selected_slicer,int reference_phase);
162   void AddFieldEntry(QString filename,int index,bool from_disk);
163   void AddField(vvImage::Pointer vf,QString file,int index);
164   void InitDisplay();
165   ///Sets the render window and LUT for the last SlicerManager
166   void InitSlicers();
167   void DisplaySliders(int slicer, int window);
168   QString GetSizeInBytes(unsigned long size);
169   QString GetVectorDoubleAsString(std::vector<double> vectorDouble);
170   QString GetVectorIntAsString(std::vector<int> vectorInt);
171   int GetSlicerIndexFromItem(QTreeWidgetItem* item);
172   QTreeWidgetItem* GetItemFromSlicerManager(vvSlicerManager* sm);
173   void SaveScreenshot(vtkImageData* image);
174
175   QMenu contextMenu;
176   //QMenu *AddSubImageMenu;
177   std::vector<QAction*> contextActions;
178   std::vector<QSlider*> horizontalSliders;
179   std::vector<QSlider*> verticalSliders;
180   int mFrameRate;
181
182   // vvMainWindowToolInfo * mCurrentToolInfo;
183   // std::vector<vvToolCreatorBase*> mListOfRunningTool;
184
185   static vvMainWindow * mSingleton;
186
187   int mCurrentTime;
188
189 };
190
191 #include "vvMainWindow.txx"
192
193 #endif