]> Creatis software - creaContours.git/blob - lib/Interface_Icons_NDimensions/interfMenuBar.h
85%
[creaContours.git] / lib / Interface_Icons_NDimensions / interfMenuBar.h
1 #ifndef __interfMENUBARH__
2 #define __interfMENUBARH__
3
4 #include <wx/wx.h>
5 #include <vector>
6 #include <wx/image.h>
7 #include <wx/bitmap.h>
8 #include <wx/bmpbuttn.h>
9 #include <wx/stattext.h>
10 #include <wx/sizer.h>
11
12 //#include "interfMainPanel.h"
13 #include "wxContourEventHandler.h"
14
15
16 class interfMenuBar :
17         public wxPanel
18 {
19 public:
20         interfMenuBar(wxWindow * parent, int sizex, int sizey)
21                 : wxPanel(parent, -1, wxDefaultPosition, wxDefaultSize, wxBORDER_SUNKEN){
22                 //this initialice all the handlers to load any type of image, in this case the png handler is needed
23                 wxInitAllImageHandlers();
24                 
25                                 
26         }
27         //~interfMenuBar();
28
29         virtual void initButtons(wxEvtHandler* evtHandler) = 0;
30
31         /**
32         ** This method add a series of button in a line, it uses the method getbutton to create the button
33         ** and static text to create the text, it also initialice the flexgridsizer to add the buttons and
34         ** the text into the panel
35         ** @param vector path, this parameter contains the path of the images to include in the path
36         ** @param vector nom, this parameter contains the names corresponding to each path of image given
37         **/
38     virtual void addButtons(std::vector<std::string> vpath, std::vector<std::string> vnom){
39                 
40                 int sizex = 80;
41                 int sizey = 80;
42         
43                 flexsizer = new wxFlexGridSizer(2,vpath.size(),2,2);    
44                 this->SetSizer(flexsizer, true);
45                 this->SetAutoLayout( true );
46                 
47                 //first row of the sizer, the buttons are being added
48                 for(int i = 0; i < vpath.size();i++){
49                         std::string p = vpath[i];
50                         wxBitmapButton* bitmapbutton = this->getButton(p, sizex, sizey);
51                         flexsizer->Add(bitmapbutton,wxFIXED_MINSIZE);
52                         
53                 }
54                 //second row of the sizer, the names are being added
55                 
56                 for(int i = 0; i < vnom.size(); i++){
57                         //sizex = vectbutton[i]->GetSize().GetWidth();
58                         std::string n = vnom[i];
59                         vectbutton[i]->SetToolTip(wxString(n.c_str(),wxConvUTF8));
60                         //wxStaticText* statictext = getText(n, sizex, 15);
61                         //flexsizer->Add(statictext, wxEXPAND |wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTRE_HORIZONTAL|wxSHAPED);
62                 }
63                 this->Layout();
64         }
65
66         /**
67         **  This method creates the button with the given image and returns it
68         ** @param string imgpath is the string containing the path to the image of the button being created
69         ** @param int x indicates the x coordinate where the button should be located
70         ** @param int y indicates the y coordinate where the button should be located
71         **/
72
73         virtual wxBitmapButton* getButton(std::string imgpath, int sizex, int sizey){
74                 vectimgpath.push_back(imgpath);
75                                 
76                 
77                 wxBitmap* bitmap = new wxBitmap(wxString(imgpath.c_str(),wxConvUTF8), wxBITMAP_TYPE_PNG);
78
79                 //wxSize(sizex,sizey)
80                 wxBitmapButton* bitmapbutton = new wxBitmapButton(this, -1, *bitmap, wxDefaultPosition, wxDefaultSize,
81                                                                                         wxBU_AUTODRAW, wxDefaultValidator, wxString(_T("")));
82
83                 vectbutton.push_back(bitmapbutton);
84                 return bitmapbutton;
85         }
86
87         /**
88         **      This method create the static text with the given string and returns it, it also push it back into 
89         **      the vector nom
90         **      @param string nom  text wich will be added to the statictext
91         **      @param int sizex   size of the text
92         **      @param int sizey   size of the text
93         **/
94         virtual wxStaticText* getText(std::string nom, int sizex, int sizey){
95                 vectnom.push_back(nom);
96                 return new wxStaticText(this, -1, wxString(nom.c_str(),wxConvUTF8), wxDefaultPosition, 
97                                                                 wxSize(sizex,sizey), wxALIGN_CENTRE, wxString(nom.c_str(),wxConvUTF8));
98         }
99     /**
100         **      Sets the vector funcion, this vector must contain a function for each button created
101         **      they must be ordered in the same way as the vector that contains the image path
102         **      and name of the button. See addButton(<vect>, <vect>)
103         **/
104         virtual void setVectorFunction(std::vector<wxObjectEventFunction> vectf){
105                 for(int i = 0; i < vectf.size();i++){
106                         vectfunct.push_back(vectf[i]);
107                 }               
108         }
109
110         /**
111         **      This method connect the events seted in the vector vectfunct
112         **      each function must have a button to relate with, see function setVectorFunction()
113         **/
114         virtual void connectEvents(wxEvtHandler* evtHandler){   
115
116                 for(int i = 0; i < vectbutton.size();i++){
117                         Connect(vectbutton[i]->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, vectfunct[i],NULL,evtHandler);
118                 }
119         }
120
121         /**
122         **      This method connect the events seted in the vector vectfunct
123         **      each function must have a button to relate with, see function setVectorFunction()
124         **/
125         virtual void connectEvents(){   
126
127                 for(int i = 0; i < vectbutton.size();i++){
128                         Connect(vectbutton[i]->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, vectfunct[i],NULL,vecthand[i]);
129                 }
130         }
131
132         /**
133         **      Sets the name of the button, this is used to relate the name of the button to a specific command
134         **      @params int i   index in the array of buttons use fuction setVectorFuncion(<vect>) to set the vector
135         **                      first
136         **      @params const char      name of the button see wxContour_ActionCommandsID.h to view the commands
137         **/
138         virtual void setButtonName(int i, const char c){
139                 if(i < vectbutton.size()){
140                         std::string ac = c+"";
141                         vectbutton[i]->SetName(wxString(ac.c_str(),wxConvUTF8));
142                 }
143         }
144
145         /**
146         **      Responds to the events of the buttons, when the same panel is responsible for it. It gets the name
147         **      of the button corresponding to the method that has to be executed,
148         **      it uses attribute eventHandler to call the methods define by the application.
149         **      see setEventHandler(wxEventHandler*)
150         **/
151         void onActionButtonPressed( wxCommandEvent& event )
152         {
153                 if(eventHandler!=NULL)
154                 {
155                         std::string theStr = std::string( ((wxButton *)event.GetEventObject())->GetName().ToAscii());
156                         const char * toolCommand = theStr.c_str();
157                         event.SetId( GetId() );
158                         event.SetEventObject( this );
159                         event.SetClientData( (void *) toolCommand);
160                         eventHandler->ProcessEvent( event );
161                 }
162         }
163
164         virtual void setEventHandlers(std::vector<wxEvtHandler*> hand){
165
166                 for(int i = 0; i < hand.size();i++){
167                         vecthand.push_back(hand[i]);
168                 }
169         }
170         
171 private:
172         std::vector<std::string> vectimgpath;
173         std::vector<std::string> vectnom;
174         
175         std::vector<wxButton*> vectbutton;
176         std::vector<wxObjectEventFunction> vectfunct;
177         std::vector<wxEvtHandler*> vecthand;
178
179         wxFlexGridSizer* flexsizer;
180
181 protected:
182         wxEvtHandler* eventHandler;
183         std::string datadir;
184
185         
186
187 };
188
189 #endif