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