]> Creatis software - creaContours.git/blob - lib/Interface_Icons_NDimensions/interfMainPanel.h
Feature #1772 Add licence terms for all files.
[creaContours.git] / lib / Interface_Icons_NDimensions / interfMainPanel.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifndef __interfMainPanel_h_INCLUDED_H__
27 #define __interfMainPanel_h_INCLUDED_H__
28
29 #pragma once
30
31 #include <wx/wx.h>
32 //#include "wxContourEventHandler.h"
33
34 #include "interfNewContourMenu.h"
35 #include "interfIOMenu.h"
36 #include "interfEditMenu.h"
37 #include "interfDeleteMenu.h"
38 #include "interfToolsMenu.h"
39 #include "interfToolsSpreadPanel.h"
40 #include "interfSegmentationMenu.h"
41 #include "interfMenuBar.h"
42 #include "interfToolsPanels.h"
43 #include "interfSegmentationPanels.h"
44 #include "interfImageToolsMenu.h"
45
46 #include <wx/treebook.h>
47 #include <wx/sizer.h>
48 #include <wx/button.h>
49 #include <wx/stattext.h>
50 #include <wx/splitter.h>
51 #include <wx/statline.h>
52
53 #include "vtkImageData.h"
54
55 class interfMainPanel : public wxPanel {
56
57 public:
58
59         interfMainPanel(wxWindow * parent, int sizex, int sizey, wxEvtHandler * evtHandler, std::string datadir = "data/Icons");
60         ~interfMainPanel(void);
61
62         /**     This method should be called the first time by the parent class
63         **      in creates all the panels the first time
64         **/
65         static interfMainPanel* getInstance(wxWindow* parent, std::string datadir, wxEvtHandler * evtHandler=NULL );
66         /**     This method should be called the first time by the parent class
67         **      in creates all the panels the first time
68         **/
69         static interfMainPanel* getInstance(wxWindow* parent, wxEvtHandler * evtHandler=NULL);
70         /**
71         **      Gets the instance of the class
72         **/
73         static interfMainPanel* getInstance();
74         /**
75         **      Ressts the instance of the class
76         **/
77         static void resetInstance();
78
79         /**
80         **      Adds a new checkbox to the scrolledwindow using the checkboxsizer
81         **      @Params id of contour
82         **
83         **/
84         void addContourCheckBox(std::string id);
85
86         /**
87         **      Removes a checkbox from the list of checkboxes in the flexsizer (checkboxsizer)
88         **      @Params id of contour
89         **
90         **/
91         void removeContourCheckBox(std::string id);
92
93
94         /**
95         **      Responds to the events of the buttons, when the same panel is responsible for it. It gets the name
96         **      of the button corresponding to the method that has to be executed,
97         **      it uses attribute eventHandler to call the methods define by the application.
98         **      see setEventHandler(wxEventHandler*)
99         **/
100         void onActionButtonPressed1( wxCommandEvent& event );
101
102         /**
103         **      Shows the panel in the
104         **/
105         void showPanel(wxWindow* panel);
106
107         /**
108         **      Hides the panel in the
109         **/
110         void hidePanel( );
111
112         /**
113         **      Gets the Information panel
114         **/
115         wxPanel* getInfoPanel();
116
117         /**
118         **      This methods connect the event in the class interfNewContourMenu with the world of the appli
119         **/
120         void onCreateContourSpline( );
121         void onCreateContourRectangle( );
122         void onCreateContourCircle( );
123         void onCreateContourLine( );
124         // RaC 09-09 ---------------------
125         void onCreateContourPoints( );
126         // RaC 09-09 ---------------------
127
128         // RaC 10-09 ---------------------
129         void onCreateContourPolygon( );
130         // RaC 10-09 ---------------------
131
132         void onCreateContoursBullEye(wxPanel* panBull);
133         /////////////////////////////////
134         void onDeleteContour();
135         void onDeleteContoursActSlice();
136         void onDeleteAllContours();
137         /////////////////////////
138         void onCopy();
139         void onPaste();
140         void onUndo();
141         void onRedo();
142
143         //////////////////////////
144         void onLoad();
145         void onSave();
146         void onImport();
147         void onTest();
148 /////////////////////////////7
149         void RefreshInterface();
150         vtkImageData* getImageData();
151         void getImageRange(double[2]);
152         void onSegmentationOneSlice(int isovalue,int sampling,int method);
153         void onSegmentationOneSliceITK(wxString distance, wxString sigma, wxString alfa, wxString beta, wxString propagation, wxString iterations, wxString inflation);
154         int GetImageDataSizeZ();
155         void onSegmentationAllSlice(int minZ,int maxZ,int isovalue,int sampling,int method);
156         void onMirrorPressed();
157         void onMirror();
158         void onMirrorAxisShow();
159         void onMirrorAxisHide();
160         void onMirrorChangeWidth(int width);
161         void onThresholdPressed();
162         void onColorLayerImagePressed();
163         void setLabelSegmentationPanelVTK(wxString tmpString);
164         void onSegmentationPressed();
165         void onSegmentationPressedITK();
166         void onRigidPressed();
167         void onWidthOfContour(double width);
168         int getColorWindow();
169         int getWindowLevel();
170         void onBrigthnessColorWindowLevel(int colorwindow,int windowlevel);
171         void onInterpolation(bool interpolate);
172         void onSpreadPressed();
173         void onConfigurationPressed();
174         void resetAppend();
175         void onSpreadAdd();
176         void onSpreadAddAll();
177         void appendStringSpread(std::string val);
178         void onSpreadGo(int type);
179         void setStringSpread(std::string stringtemp);
180         void onInformationPressed();
181         void getInstantVector(std::vector<int>& tempVector);
182         std::vector<std::string> getOutlinesName(int slide);
183         void onInformationContourLabels(int typeContourGroup,int selection,int minZ,int maxZ,int grayRangeMin,int grayRangeMax);
184         void setStringInfoPanel(wxString tmpString);
185         void setRowLabelInfoPanel(int z, wxString tempString);
186         int getNumberColsInformationPanel();
187         void appendColsInformationPanel(int _numberOfVariablesStatistics);
188         void setCellValueInfoPanel(int z,int tmpIntA,wxString tempString);
189         void setColLableInfoPanel(int tmpIntB ,wxString tmpTitleString);
190         void SetScalarRange(int grayRangeMin,int grayRangeMax);
191         void onSaveResults(std::string directory,std::string namefile, std::string filename,
192                 int typeContourGroup, int selection, int minZ, int maxZ, bool XYZValues, bool contourImage, bool statistics);
193         wxString getCellValue(int j,int i);
194         void onSnakePressed();
195         virtual bool Show(bool show);
196         void ShowResultImages(int typeContourGroup, int selection, int minZ, int maxZ);
197         void SetContourGroup(int contourGroup);
198
199 //CMRU 29-08-09-----------------------------------------------------------------------------------------------
200
201         /**
202         * Associates the current selected contour with a label
203         */
204         void onPrintLabel();
205
206
207         /**
208         * Calculates the pixel value in milimeters according to the current contour if the selected contour is a Line Contour
209         * @param size Size in milimeters of the selected contour
210         * @param unit Measurement unit
211         */
212         void onCalibration(wxString size, int unit);
213
214         /**
215         * Calculate the pixel value in milimeters
216         * @param realSize Size of the contour in milimeters
217         * @param sizePixel Size of the contour in pixels
218         */
219         double onePixelSize (double realSize,double sizePixel);
220
221         /**
222         * Returns the value of a pixel in milimeters
223         */
224         double GetPixelValue();
225 //------------------------------------------------------------------------------------------------------------
226
227 private:
228
229
230         static interfMainPanel* interfmainpanel;
231
232
233         static wxFrame* _newframe;
234         wxPanel* menubar;
235         wxPanel* menubar1;
236         wxPanel* menubar2;
237         wxPanel* menubar3;
238         wxPanel* menubar4;
239         wxPanel* menubar5;
240         wxPanel* menubar6;
241
242         wxWindow* currentWindow;
243         wxSplitterWindow* splitterwindow;
244
245         wxPanel* infoPanel;
246         wxPanel* infoPanelMask;
247
248 //CMRU 17-08-09 ------------------------------------------------------------------
249
250         /**
251         * Panel with the calibration options
252         */
253         wxPanel* infoPanelCalibration;
254
255         /**
256         * Panel who contains the calibration panel and the information panel mask
257         */
258         wxPanel* panelAux;
259
260         /**
261         * Value of a pixel in milimeters
262         */
263         double _pixelValue;
264 //--------------------------------------------------------------------------------
265
266         wxStaticText* statictext;
267         wxStaticText* statictext1;
268         wxStaticText* statictext2;
269         wxStaticText* statictext3;
270         wxStaticText* statictext4;
271         wxStaticText* statictext5;
272         wxStaticText* statictext6;
273
274         std::string PANEL;
275         std::string PANEL1;
276         std::string PANEL2;
277         std::string PANEL3;
278         std::string PANEL4;
279         std::string PANEL5;
280         std::string PANEL6;
281
282         wxPanel                         *segmentPanel;
283         wxPanel                         *segmentationPanel;
284         wxPanel                         *segmentPanelITK;
285         wxPanel                         *configPanel;
286         wxPanel                         *spreadPanel;
287         interfSpreadPanel       *panelSpread;
288         wxWindow                        *infoWin;
289         wxPanel                         *informationPanel;
290
291         wxPanel                         *testPanel;
292         interfTestPanel         *panelTest;
293
294         wxPanel                         *mirrorPanel;
295         interfMirrorPanel       *panelMirror;
296
297         wxPanel                         *thresholdPanel;
298         wxPanel                         *colorImageLayerPanel;
299
300         bool axisshown;
301         bool refLineShown;
302
303         //This attribute contains the panel in charge of adding and removing the corresponding checkboxes in
304         //list of contours
305         interfToolsSpreadPanel* toolspread;
306
307         /**
308         **      This method initializes the tools panel, with the bar and the panel where the contours can be added
309         **      and removed.
310         **      @params size of the buttons panel
311         **      @params sizey of the buttons panel
312         **      @params evtHandler this is the class in charge of responding to the events of the buttons
313         **/
314         wxPanel* initializeToolsPanel(wxWindow* parent, int sizex, int sizey, wxEvtHandler * evtHandler);
315
316         /**
317         **      initialize a statictext component of the interface
318         **/
319         wxStaticText* getText(wxWindow* parent, std::string nom);
320         /**
321         ** initializes a button with data
322         **/
323         wxButton* getButton(wxWindow* parent);
324         /**
325         ** Puts the panel button and the text int the sizer
326         **/
327         wxPanel* setMenuTextSizer(wxWindow* parent, wxPanel* panel, wxStaticText* text);
328
329
330 };
331
332 #endif
333