]> Creatis software - clitk.git/blob - vv/vvMainWindow.h
- correct "same image name" bug
[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 AddImage(vvSlicerManager * m);
50   void AddField(QString file,int index);
51   void AddOverlayImage(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
55   void ShowLastImage();
56
57   virtual void UpdateCurrentSlicer();
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 ResampleCurrentImage();
93   void SegmentationOnCurrentImage();
94   void SurfaceViewerLaunch();
95
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 AddLink(QString image1,QString image2);
107   void RemoveLink(QString image1,QString image2);
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);
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 // signals:
148 //   void SlicerManagersHasChanged();
149
150 private:
151
152   //variables
153   // std::vector<vvSlicerManager*> mSlicerManagers;
154   vvHelpDialog *help_dialog;
155   vvDocumentation *documentation;
156   vvDicomSeriesSelector *dicomSeriesSelector;
157
158   bool viewMode;
159   bool playMode;
160
161   //functions
162   void UpdateTree();
163   ///Adds a vector field to slicer manager index
164   void WarpImage(vvSlicerManager* selected_slicer,int reference_phase);
165   void AddFieldEntry(QString filename,int index,bool from_disk);
166   void AddField(vvImage::Pointer vf,QString file,int index);
167   void InitDisplay();
168   ///Sets the render window and LUT for the last SlicerManager
169   void InitSlicers();
170   void DisplaySliders(int slicer, int window);
171   QString GetSizeInBytes(unsigned long size);
172   QString GetVectorDoubleAsString(std::vector<double> vectorDouble);
173   QString GetVectorIntAsString(std::vector<int> vectorInt);
174   int GetSlicerIndexFromItem(QTreeWidgetItem* item);
175   void SaveScreenshot(vtkImageData* image);
176
177   QMenu contextMenu;
178   //QMenu *AddSubImageMenu;
179   std::vector<QAction*> contextActions;
180   std::vector<QSlider*> horizontalSliders;
181   std::vector<QSlider*> verticalSliders;
182   int mFrameRate;
183
184   // vvMainWindowToolInfo * mCurrentToolInfo;
185   // std::vector<vvToolCreatorBase*> mListOfRunningTool;
186
187   static vvMainWindow * mSingleton;
188 };
189
190 #include "vvMainWindow.txx"
191
192 #endif