]> Creatis software - creaContours.git/blob - lib/Interface_Icons_NDimensions/interfImageToolsMenu.cxx
Feature #1772 Add licence terms for all files.
[creaContours.git] / lib / Interface_Icons_NDimensions / interfImageToolsMenu.cxx
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 #include "interfImageToolsMenu.h"
27 #include "interfMainPanel.h"
28
29 interfImageToolsMenu::interfImageToolsMenu(wxWindow * parent, int sizex, int sizey,wxEvtHandler* evtHandler, std::string datdir)
30         : interfMenuBar(parent, sizex, sizey)
31 {
32         this->datadir   = datdir;
33         //contourevent  = (wxContourEventHandler*)evtHandler;
34
35 /*Borrame
36         infoWin                 = NULL;
37         configPanel             = NULL;
38         spreadPanel             = NULL;
39         segmentPanelITK = NULL;
40 */
41
42         //eventHandler = evtHandler;
43
44         initButtons(this);
45 }
46
47 void interfImageToolsMenu::initButtons(wxEvtHandler* evtHandler) {
48
49         std::vector<std::string> path, nom;
50         std::vector<wxObjectEventFunction> funct;
51
52 /*EED Borrame
53         path.push_back(datadir + "/Segmentation.png");
54         nom.push_back("Find shapes by automatic segmentation");
55         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSegmentationPressed);
56
57         path.push_back(datadir + "/ITK.png");
58         nom.push_back("Find shapes by automatic segmentation with ITK");
59         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSegmentationPressedITK);
60
61         path.push_back(datadir + "/snake.png");
62         nom.push_back("Find shapes using border snake interaction");
63         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSnakePressed);
64 */
65         path.push_back(datadir + "/pignon.png");
66         nom.push_back("Configuration of the window");
67         funct.push_back((wxObjectEventFunction) &interfImageToolsMenu:: onConfigurationPressed);
68
69         path.push_back(datadir + "/info.png");
70         nom.push_back("Information of the contours in the scene");
71         funct.push_back((wxObjectEventFunction) &interfImageToolsMenu:: onInformationPressed);
72         
73         path.push_back(datadir + "/Threshold.png");
74         nom.push_back("Superpose a 'Red Image' to the selected Image Threshold");
75         funct.push_back((wxObjectEventFunction)&interfImageToolsMenu::onThreshold);
76
77         path.push_back(datadir + "/Threshold.png");
78         nom.push_back("Superpose a Color Image");
79         funct.push_back((wxObjectEventFunction)&interfImageToolsMenu::onColorLayerImage);
80
81         path.push_back(datadir + "/Help.png");
82         nom.push_back("Show help page with information about the tools");
83         funct.push_back((wxObjectEventFunction) &interfImageToolsMenu:: onHelpPressed);
84
85
86         this->addButtons(path, nom);    
87         this->setVectorFunction(funct);
88
89         this->connectEvents(evtHandler);
90            
91
92 }
93
94 interfImageToolsMenu::~interfImageToolsMenu()
95 {
96 }
97
98 /**
99         **      Responds to the events of the buttons, when the same panel is responsible for it. It gets the name
100         **      of the button corresponding to the method that has to be executed,
101         **      it uses attribute eventHandler to call the methods define by the application.
102         **      see setEventHandler(wxEventHandler*)
103         **/
104
105 /*EED Borrame
106 void  interfSegmentationMenu::onSegmentationPressed(wxCommandEvent& event)
107 {
108         interfMainPanel::getInstance()->onSegmentationPressed();
109 }
110
111 void  interfSegmentationMenu::onSegmentationPressedITK(wxCommandEvent& event)
112 {
113         interfMainPanel::getInstance()->onSegmentationPressedITK();    
114 }
115
116 void  interfSegmentationMenu::onSnakePressed(wxCommandEvent& event)
117 {
118         interfMainPanel::getInstance()->onSnakePressed();
119 }
120 */
121
122 void  interfImageToolsMenu::onInformationPressed(wxCommandEvent& event)
123 {
124         interfMainPanel::getInstance()->onInformationPressed();
125 }
126
127 void  interfImageToolsMenu::onConfigurationPressed(wxCommandEvent& event)
128 {
129         interfMainPanel::getInstance()->onConfigurationPressed();
130 }
131
132 void interfImageToolsMenu::onThreshold(wxCommandEvent& event)
133 {
134         interfMainPanel::getInstance()->onThresholdPressed();
135 }
136
137 void interfImageToolsMenu::onColorLayerImage(wxCommandEvent& event)
138 {
139         interfMainPanel::getInstance()->onColorLayerImagePressed();
140 }
141
142 void interfImageToolsMenu::onHelpPressed(wxCommandEvent& event)
143 {
144   wxLaunchDefaultBrowser(_T("http://www.creatis.insa-lyon.fr/site/fr/EndUserGuide"), 0);
145 }
146
147 //------------------------------------------------------------------------------------------------------------
148