]> Creatis software - creaContours.git/blob - lib/Interface_Icons_NDimensions/interfNewContourMenu.cxx
*** empty log message ***
[creaContours.git] / lib / Interface_Icons_NDimensions / interfNewContourMenu.cxx
1 #include "interfNewContourMenu.h"
2
3
4 interfNewContourMenu::interfNewContourMenu(wxWindow * parent, int sizex, int sizey, wxEvtHandler* evtHandler, std::string datdir)
5         : interfMenuBar(parent, sizex, sizey)
6 {
7         this->datadir = datdir;
8         //eventHandler = (wxContourEventHandler*)evtHandler;
9
10         panBull = NULL;
11         created = false;
12
13         initButtons(this);      
14 }
15
16 void interfNewContourMenu::initButtons(wxEvtHandler* evtHandler) {
17
18         std::vector<std::string> path, nom;
19         std::vector<wxObjectEventFunction> funct;
20         std::vector<wxEvtHandler*> hand;
21         
22         path.push_back(datadir + "/Spline.png");
23         nom.push_back("Create a contour using splines");        
24         funct.push_back((wxObjectEventFunction)&interfNewContourMenu::onCreateContourSpline);
25         hand.push_back(evtHandler);
26
27         path.push_back(datadir+"/Rectangle.png");
28         nom.push_back("Create a contour using the basic shape of a rectangle");
29         funct.push_back((wxObjectEventFunction)&interfNewContourMenu::onCreateContourRectangle);
30         hand.push_back(evtHandler);
31
32         path.push_back(datadir + "/Circle.png");
33         nom.push_back("Create a contour using the basic shape of a Circle");
34         funct.push_back((wxObjectEventFunction)&interfNewContourMenu::onCreateContourCircle);
35         hand.push_back(evtHandler);
36
37         path.push_back(datadir + "/bullseye.png");
38         nom.push_back("Create a contour using the bulls eye");
39         funct.push_back((wxObjectEventFunction) &interfNewContourMenu::onCreateContourBullseye);
40         hand.push_back(this);
41
42         path.push_back(datadir + "/Line.png");
43         nom.push_back("Create a Line");
44         funct.push_back((wxObjectEventFunction) &interfNewContourMenu::onCreateContourLine);
45         hand.push_back(this);
46
47     this->addButtons(path, nom);
48
49         this->setVectorFunction(funct); 
50         this->setEventHandlers(hand);   
51         this->connectEvents();
52
53 }
54
55
56
57 interfNewContourMenu::~interfNewContourMenu()
58 {
59 }
60
61 void interfNewContourMenu::onCreateContourBullseye(wxCommandEvent& event){
62
63
64         if(!created){
65
66                 panBull = new PanelBullEyeOptions(interfMainPanel::getInstance()->getInfoPanel(), 
67                                                                 wxSize(100,200));
68                 created = true;
69         }
70         interfMainPanel::getInstance()->onCreateContoursBullEye(panBull);
71         //eventHandler->createContourBullsEye(panBull);
72         interfMainPanel::getInstance()->showPanel(panBull);
73
74 }
75
76 void interfNewContourMenu::onCreateContourSpline( wxCommandEvent& event ){
77         interfMainPanel::getInstance()->onCreateContourSpline();
78 }
79 void interfNewContourMenu::onCreateContourRectangle( wxCommandEvent& event ){
80         interfMainPanel::getInstance()->onCreateContourRectangle();
81 }
82 void interfNewContourMenu::onCreateContourCircle( wxCommandEvent& event ){
83         interfMainPanel::getInstance()->onCreateContourCircle();
84 }
85 void interfNewContourMenu::onCreateContourLine( wxCommandEvent& event ){
86         interfMainPanel::getInstance()->onCreateContourLine();
87 }
88