]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/include/wxMaracasFrame.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / include / wxMaracasFrame.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 /*=========================================================================
27
28   Program:   wxMaracas
29   Module:    $RCSfile: wxMaracasFrame.h,v $
30   Language:  C++
31   Date:      $Date: 2012/11/15 14:14:56 $
32   Version:   $Revision: 1.2 $
33
34   Copyright: (c) 2002, 2003
35   License:
36   
37      This software is distributed WITHOUT ANY WARRANTY; without even 
38      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
39      PURPOSE.  See the above copyright notice for more information.
40
41 =========================================================================*/
42
43 #ifndef __WX__MARACAS__FRAME__HXX__
44 #define __WX__MARACAS__FRAME__HXX__
45
46 #include <wx/wx.h>
47 #include <wx/frame.h>
48 #include "marTypes.h"
49 #include "wxMaracas3DBrowser.h"
50 #include "wxMaracasQuantification.h"
51 #include <kernel/marSimpleDicom.h>
52
53 class marInterface;
54
55 /**
56  * \brief Principal Frame of the application 
57  * MARACAS: MAgnetic Resonance Angiography Computer ASsisted analysis
58  *
59  */
60
61 class MAR_INTERFACEWX_EXPORT wxMaracasFrame: public wxFrame
62 {
63 public:
64
65     wxMaracasFrame( wxFrame *parent, wxWindowID id = -1,
66             marInterface* mar = NULL, marSimpleDicom *simpleDicom=NULL, char *dictionaryFileName=NULL,
67             const wxString& title = wxT("MARACAS: MAgnetic Resonance Angiography Computer ASsisted analysis"),
68             const wxPoint& pos = wxDefaultPosition,
69             const wxSize& size = wxDefaultSize,
70             long style = wxDEFAULT_FRAME_STYLE);
71         
72         void OnDeleteAxis(wxCommandEvent &event);
73         void OnNewAxis(wxCommandEvent &event);
74         
75     void RecreateToolbar( );
76
77         void OnAboutCreatis( wxCommandEvent& event );
78     void OnQuit( wxCloseEvent& event );
79 // PS ->     void OnLoadPatientData( wxCommandEvent& event );
80     void OnParameters( wxCommandEvent& event );
81 // PS ->     void OnLoadImageData( wxCommandEvent& event );
82     void OnStartExperiment( wxCommandEvent& event );
83 // PS ->     void OnHelp (wxCommandEvent& event );
84     void OnQuant (wxCommandEvent& event );
85
86         void OnRegenerateAll( wxCommandEvent& event );
87         void OnRegenerateSplineAxe(     wxCommandEvent& event );
88         void OnCleanContours( wxCommandEvent& event );
89         void OnRegenerateSignal( wxCommandEvent& event );
90
91
92
93         wxMaracas3DBrowser*                     Getwxmaracas3dbrowser()                 { return _wxmaracas3dbrowser;           }
94         wxMaracasQuantification*        Getwxmaracasquantification()    { return _wxmaracasquantification;      }
95
96 private:
97     wxPanel                                     *_actual_panel;
98     wxGauge                                     *_progressGauge;
99     marInterface                        *_mar;
100         marSimpleDicom                  *_marSimpleDicom;
101
102         wxMaracas3DBrowser              *_wxmaracas3dbrowser;
103         wxMaracasQuantification *_wxmaracasquantification;
104
105     DECLARE_EVENT_TABLE( );
106
107         void DeletePanels();
108 };
109
110 static const long TOOLBAR_STYLE = wxNO_BORDER | wxTB_FLAT | wxTB_DOCKABLE | wxTB_HORIZONTAL;
111
112 enum
113 {
114     //! Toolbar & menu buttons
115     ID_TOOLBAR = 200,
116     ID_TOOLBAR_DATA_BROWSER,
117     ID_TOOLBAR_PARAMETERS,
118     ID_TOOLBAR_IMAGE_BROWSER,
119     ID_TOOLBAR_3D_BROWSER,
120     ID_TOOLBAR_PLANS,
121     ID_TOOLBAR_QUANT,
122     ID_TOOLBAR_ROTATE,
123     ID_TOOLBAR_BRIGHT,
124     ID_TOOLBAR_PAN,
125     ID_TOOLBAR_ZOOM,
126     ID_TOOLBAR_CLEAR,
127     ID_TOOLBAR_INTENSITY,
128     ID_TOOLBAR_HELP,
129 };
130
131 #endif // __WX__MARACAS__FRAME__HXX__