]> Creatis software - creaContours.git/blobdiff - lib/Interface_Icons_NDimensions/interfMenuBar.h
RaC Changes that includes a Polygon contour in creaMaracasVisu and creaContours
[creaContours.git] / lib / Interface_Icons_NDimensions / interfMenuBar.h
index 86a011a92e5b8068bea0de562d458b54b6c08ac2..00cff41d34b816d1981e52339d64a1ee6f8f0849 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __interfMENUBARH__
 #define __interfMENUBARH__
 
+#include <string>
 #include <wx/wx.h>
 #include <vector>
 #include <wx/image.h>
@@ -10,7 +11,7 @@
 #include <wx/sizer.h>
 
 //#include "interfMainPanel.h"
-#include "wxContourEventHandler.h"
+//#include "wxContourEventHandler.h"
 
 
 class interfMenuBar :
@@ -40,12 +41,15 @@ public:
                int sizex = 80;
                int sizey = 80;
        
-               flexsizer = new wxFlexGridSizer(2,vpath.size(),2,2);    
+               //RaC 11-09
+               //This constructor function as well but it is neccessary to change vpath.size() by 6
+               //flexsizer = new wxFlexGridSizer(2,vpath.size(),2,2);
+               flexsizer = new wxFlexGridSizer(6);
                this->SetSizer(flexsizer, true);
                this->SetAutoLayout( true );
                
                //first row of the sizer, the buttons are being added
-               for(int i = 0; i < vpath.size();i++){
+               for(int i = 0; i < (int)(vpath.size());i++){
                        std::string p = vpath[i];
                        wxBitmapButton* bitmapbutton = this->getButton(p, sizex, sizey);
                        flexsizer->Add(bitmapbutton,wxFIXED_MINSIZE);
@@ -53,10 +57,10 @@ public:
                }
                //second row of the sizer, the names are being added
                
-               for(int i = 0; i < vnom.size(); i++){
+               for(int i = 0; i < (int)(vnom.size()); i++){
                        //sizex = vectbutton[i]->GetSize().GetWidth();
                        std::string n = vnom[i];
-                       vectbutton[i]->SetToolTip(wxString(n));
+                       vectbutton[i]->SetToolTip(wxString(n.c_str(),wxConvUTF8));
                        //wxStaticText* statictext = getText(n, sizex, 15);
                        //flexsizer->Add(statictext, wxEXPAND |wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTRE_HORIZONTAL|wxSHAPED);
                }
@@ -74,11 +78,11 @@ public:
                vectimgpath.push_back(imgpath);
                                
                
-               wxBitmap* bitmap = new wxBitmap(imgpath, wxBITMAP_TYPE_PNG);
+               wxBitmap* bitmap = new wxBitmap(wxString(imgpath.c_str(),wxConvUTF8), wxBITMAP_TYPE_PNG);
 
                //wxSize(sizex,sizey)
                wxBitmapButton* bitmapbutton = new wxBitmapButton(this, -1, *bitmap, wxDefaultPosition, wxDefaultSize,
-                                                                                       wxBU_AUTODRAW, wxDefaultValidator, wxString(""));
+                                                                                       wxBU_AUTODRAW, wxDefaultValidator, wxString(_T("")));
 
                vectbutton.push_back(bitmapbutton);
                return bitmapbutton;
@@ -93,8 +97,8 @@ public:
        **/
        virtual wxStaticText* getText(std::string nom, int sizex, int sizey){
                vectnom.push_back(nom);
-               return new wxStaticText(this, -1, wxString(nom), wxDefaultPosition, 
-                                                               wxSize(sizex,sizey), wxALIGN_CENTRE, wxString(nom));
+               return new wxStaticText(this, -1, wxString(nom.c_str(),wxConvUTF8), wxDefaultPosition, 
+                                                               wxSize(sizex,sizey), wxALIGN_CENTRE, wxString(nom.c_str(),wxConvUTF8));
        }
     /**
        **      Sets the vector funcion, this vector must contain a function for each button created
@@ -102,7 +106,7 @@ public:
        **      and name of the button. See addButton(<vect>, <vect>)
        **/
        virtual void setVectorFunction(std::vector<wxObjectEventFunction> vectf){
-               for(int i = 0; i < vectf.size();i++){
+               for(int i = 0; i < (int)(vectf.size());i++){
                        vectfunct.push_back(vectf[i]);
                }               
        }
@@ -113,7 +117,7 @@ public:
        **/
        virtual void connectEvents(wxEvtHandler* evtHandler){   
 
-               for(int i = 0; i < vectbutton.size();i++){
+               for(int i = 0; i < (int)(vectbutton.size());i++){
                        Connect(vectbutton[i]->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, vectfunct[i],NULL,evtHandler);
                }
        }
@@ -124,7 +128,7 @@ public:
        **/
        virtual void connectEvents(){   
 
-               for(int i = 0; i < vectbutton.size();i++){
+               for(int i = 0; i < (int)(vectbutton.size());i++){
                        Connect(vectbutton[i]->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, vectfunct[i],NULL,vecthand[i]);
                }
        }
@@ -136,8 +140,9 @@ public:
        **      @params const char      name of the button see wxContour_ActionCommandsID.h to view the commands
        **/
        virtual void setButtonName(int i, const char c){
-               if(i < vectbutton.size()){
-                       vectbutton[i]->SetName(c);
+               if(i < (int)(vectbutton.size())){
+                       std::string ac = c+"";
+                       vectbutton[i]->SetName(wxString(ac.c_str(),wxConvUTF8));
                }
        }
 
@@ -149,20 +154,20 @@ public:
        **/
        void onActionButtonPressed( wxCommandEvent& event )
        {
-               if(eventHandler!=NULL)
+               if(true)//if(eventHandler!=NULL)
                {
                        std::string theStr = std::string( ((wxButton *)event.GetEventObject())->GetName().ToAscii());
                        const char * toolCommand = theStr.c_str();
                        event.SetId( GetId() );
                        event.SetEventObject( this );
                        event.SetClientData( (void *) toolCommand);
-                       eventHandler->ProcessEvent( event );
+                       //eventHandler->ProcessEvent( event );
                }
        }
 
        virtual void setEventHandlers(std::vector<wxEvtHandler*> hand){
 
-               for(int i = 0; i < hand.size();i++){
+               for(int i = 0; i < (int)(hand.size());i++){
                        vecthand.push_back(hand[i]);
                }
        }
@@ -178,7 +183,7 @@ private:
        wxFlexGridSizer* flexsizer;
 
 protected:
-       wxEvtHandler* eventHandler;
+       //wxEvtHandler* eventHandler;
        std::string datadir;