]> Creatis software - creaContours.git/blob - lib/Interface_Icons_NDimensions/interfSegmentationMenu.cxx
Feature #1772 Add licence terms for all files.
[creaContours.git] / lib / Interface_Icons_NDimensions / interfSegmentationMenu.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 "interfSegmentationMenu.h"
27 #include "interfMainPanel.h"
28
29 interfSegmentationMenu::interfSegmentationMenu(wxWindow * parent, int sizex, int sizey,wxEvtHandler* evtHandler, std::string datdir)
30         : interfMenuBar(parent, sizex, sizey)
31 {
32         this->datadir   = datdir;
33
34 /*EED Borrame
35         //contourevent  = (wxContourEventHandler*)evtHandler;
36         infoWin                 = NULL;
37         configPanel             = NULL;
38         spreadPanel             = NULL;
39         segmentPanelITK = NULL;
40         
41         //eventHandler  = evtHandler;
42 */
43
44         initButtons(this);
45 }
46
47 void interfSegmentationMenu::initButtons(wxEvtHandler* evtHandler) {
48
49         std::vector<std::string> path, nom;
50         std::vector<wxObjectEventFunction> funct;
51
52         path.push_back(datadir + "/Segmentation.png");
53         nom.push_back("Find shapes by automatic segmentation");
54         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSegmentationPressed);
55
56         path.push_back(datadir + "/ITK.png");
57         nom.push_back("Find shapes by automatic segmentation with ITK");
58         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSegmentationPressedITK);
59
60         path.push_back(datadir + "/snake.png");
61         nom.push_back("Find shapes using border snake interaction");
62         funct.push_back((wxObjectEventFunction) &interfSegmentationMenu:: onSnakePressed);
63
64 /*EED Borrame
65         path.push_back(datadir + "/Threshold.png");
66         nom.push_back("Superpose a 'Red Image' to the selected Image Threshold");
67         funct.push_back((wxObjectEventFunction)&interfSegmentationMenu::onThreshold);
68 */
69         this->addButtons(path, nom);    
70         this->setVectorFunction(funct);
71
72         this->connectEvents(evtHandler);
73            
74
75 }
76
77 interfSegmentationMenu::~interfSegmentationMenu()
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
89 void  interfSegmentationMenu::onSegmentationPressed(wxCommandEvent& event)
90 {
91         interfMainPanel::getInstance()->onSegmentationPressed();
92 }
93
94
95
96 void  interfSegmentationMenu::onSegmentationPressedITK(wxCommandEvent& event)
97 {
98         interfMainPanel::getInstance()->onSegmentationPressedITK();    
99 }
100
101 void  interfSegmentationMenu::onSnakePressed(wxCommandEvent& event)
102 {
103         interfMainPanel::getInstance()->onSnakePressed();
104 }
105
106 /*EED Borrame
107 void interfSegmentationMenu::onThreshold(wxCommandEvent& event)
108 {
109         interfMainPanel::getInstance()->onThresholdPressed();
110 }
111 */
112 //------------------------------------------------------------------------------------------------------------
113