]> Creatis software - bbtk.git/blobdiff - packages/wx/src/bbwxRadioButton.cxx
Clean code
[bbtk.git] / packages / wx / src / bbwxRadioButton.cxx
index 779a2817c7cc56560c3fd26ceadf31a75c15df8e..375092be431d940e54e2b1ca3ff70daca73d049c 100644 (file)
@@ -90,64 +90,6 @@ namespace bbwx
     mBox(box)
   {
 
-/*
-    MAX_RADIOBUTTON = lstIn.size();
-    wxPanel *panel     = this;
-    int i;
-    long style=wxRB_GROUP;
-    for (i=0;i<MAX_RADIOBUTTON; i++)
-    {
-          if ( lstIn[i]!=_T(""))
-          {
-    //---------------------------------------------------------------------
-    // 1) Creation of the components of the widget
-    // Any top level sub-widget must have the panel returned by panel
-    // for parent
-             mwxRadioButton[i] = new wxRadioButton( panel, -1, lstIn[i],wxDefaultPosition, wxDefaultSize, style);
-             style=0;
-             if (In==i)
-             {
-                     mwxRadioButton[i]->SetValue(true);
-             } else {
-                     mwxRadioButton[i]->SetValue(false);
-             }
-              Connect( mwxRadioButton[i]->GetId(),  
-                   wxEVT_COMMAND_RADIOBUTTON_SELECTED, 
-                  (wxObjectEventFunction) 
-                  (void (wxPanel::*)(wxEvent&))
-                  &RadioButtonWidget::OnRadioButton ); 
-          } else {
-              mwxRadioButton[i]=NULL;
-          } // if
-    } // for 
-    
-    //---------------------------------------------------------------------
-    // 2) Insertion of the components in the window
-    
-    // We use a FlexGridSizer
-
-//EED 2018-04-18
-//    wxFlexGridSizer *sizer   = new wxFlexGridSizer(1);
-    sizer      = new wxFlexGridSizer(1);
-
-    if (title!=_T(""))
-    {
-          sizer->Add( new wxStaticText(panel,-1, title ) ); 
-    }
-    for (i=0;i<MAX_RADIOBUTTON; i++)
-    {
-       if (mwxRadioButton[i]!=NULL)
-       {
-          sizer->Add( mwxRadioButton[i],1,wxGROW ); 
-       }
-    }
-    sizer->AddGrowableCol(0);
-    panel->SetSizer(sizer);
-
-//    panel->SetAutoLayout(true);
-//    panel->Layout();
-*/
-
   }
   //-------------------------------------------------------------------------
   
@@ -329,7 +271,6 @@ namespace bbwx
 
     RadioButtonWidget *w = new RadioButtonWidget(
                          this,
-//                         bbGetWxParent(),
                                                 parent,        
                          bbGetInputIn() ,
                          bbtk::std2wx(bbGetInputTitle()),