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