]> Creatis software - bbtk.git/commitdiff
#3530 Bug Refresh wxWidgets: Layout
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Sun, 12 Jan 2025 20:03:45 +0000 (21:03 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Sun, 12 Jan 2025 20:03:45 +0000 (21:03 +0100)
packages/kw/src/bbkwLayoutSplit.h
packages/wx/src/bbwxLayoutLine.cxx
packages/wx/src/bbwxLayoutSplit.cxx
packages/wx/src/bbwxLayoutTab.cxx

index e1dc48ff7457b33e867ea2e84456122b990e9cb2..d45e7da0025382162453504b25f43ea5faed5f7f 100644 (file)
 
 namespace bbkw
 {
-  
-  
-  
-  
   class LayoutSplit : public bbtk::KWBlackBox
   {
-    
     BBTK_BLACK_BOX_INTERFACE(LayoutSplit,bbtk::KWBlackBox);
     BBTK_DECLARE_INPUT(Widget1,vtkKWWidget*);
     BBTK_DECLARE_INPUT(Widget2,vtkKWWidget*);
@@ -71,15 +66,12 @@ namespace bbkw
     BBTK_DECLARE_INPUT(Proportion,int);
     BBTK_PROCESS(Process);
     BBTK_CREATE_KWWIDGET(CreateWidget);
-   void CreateWidget(vtkKWFrame*);
-
-    void Process();
+      void CreateWidget(vtkKWFrame*);
+      void Process();
   protected:
-    virtual void bbUserConstructor();
-
+      virtual void bbUserConstructor();
   };
   
 //=================================================================
 // BlackBox description
   BBTK_BEGIN_DESCRIBE_BLACK_BOX(LayoutSplit,bbtk::KWBlackBox);
@@ -90,7 +82,7 @@ namespace bbkw
   BBTK_INPUT(LayoutSplit,Widget1,"Upper or left widget",vtkKWWidget*,"");
   BBTK_INPUT(LayoutSplit,Widget2,"Lower or right widget",vtkKWWidget*,"");
   BBTK_INPUT(LayoutSplit,Orientation,"Orientation (default H), 0=H=HORIZONTAL , 1=V=VERTICAL",std::string,"");
-   BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
+  BBTK_INPUT(LayoutSplit,Proportion,"Proportion (in percent) of the first children in the window",int,"");
   BBTK_END_DESCRIBE_BLACK_BOX(LayoutSplit);
   //=================================================================
 }
index cde7ad88fddb20714f6afd310876e437a97de586..af131a24c980f37b9313f167a18ecdd971257a68 100644 (file)
@@ -98,7 +98,7 @@ void LayoutLine::Process()
   void LayoutLine::CreateWidget(wxWindow* parent)
   {
     wxBoxSizer *sizer;
-    wxPanel *w=new wxPanel(parent, -1, wxDefaultPosition, wxSize(40,40) );
+    wxPanel *w = new wxPanel(parent, -1, wxDefaultPosition, wxSize(40,40) );
     w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
     
     int style=0;
@@ -110,9 +110,7 @@ void LayoutLine::Process()
     { 
                style=wxVERTICAL;   
        } // if
-    
     sizer      = new wxBoxSizer(style);
-
        wxWindow* cw;
       
 //
@@ -160,6 +158,10 @@ void LayoutLine::Process()
   // when window is shown
   void  LayoutLine::OnShowWidget()
   {
+      if (bbGetOutputWidget()!=NULL)
+      {
+          bbGetOutputWidget()->Layout();
+      } // if bbGetOutputWidget
   }
 
 }//namespace bbwx
index 6c107523f093c7a589bb8a910902cd9bb8620bce..f1a9c786ed8ee7fa943fef85618032d869a65b74 100644 (file)
@@ -106,11 +106,15 @@ namespace bbwx
          if (w1==NULL) { w1=new wxPanel(splitterWindowPanel); }
          if (w2==NULL) { w2=new wxPanel(splitterWindowPanel); }
          int orientation=0;
-    if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|h|horizontal|Horizontal|HORIZONTAL")==true)  { orientation=0; }
-    if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|v|vertical|Vertical|VERTICAL")==true)    { orientation=1; }
-    
-
-    if (orientation==1) 
+    if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|h|horizontal|Horizontal|HORIZONTAL")==true)  
+    {
+        orientation=0;
+    }
+    if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|v|vertical|Vertical|VERTICAL")==true)    
+    {
+        orientation=1;
+    } // ig
+    if (orientation==1)
     {
         w->SplitHorizontally( w1, w2, 100);
     } else {
@@ -160,6 +164,7 @@ namespace bbwx
     //RaC Nov2012 Correctly resize internal panels with the window resize event
     w->SetSashGravity(0.5);
   }
+
 }//namespace bbwx
 
 #endif // _USE_WXWIDGETS_
index e96c281dcf8307e19abe1fc508c07b39f2dc0a76..8b1e792554273c6e7e2e353e6d232addb6dd7486 100644 (file)
@@ -229,21 +229,22 @@ void LayoutTab::SetTitleTabs()
     TryInsertWindow(w,"Widget7");
     TryInsertWindow(w,"Widget8");
     TryInsertWindow(w,"Widget9");
+    w->SetAutoLayout(true);
     w->Layout();
+    tabwidget->Layout();
 //EED2020-04-06
 //    bbSetOutputWidget( w );
     bbSetOutputWidget( tabwidget );
-  }
-  
-  
- // This callback is necessary to get actual processing of the view 
+}
+    
+// This callback is necessary to get actual processing of the view
 // when window is shown
 void  LayoutTab::OnShowWidget()
 {
 //EED2020-04-06
 //     wxNotebook* w = (wxNotebook*)bbGetOutputWidget();
        wxNotebook* w = ((TabWidget*)bbGetOutputWidget())->GetmwxNotebook();
-       if (w
+       if (w!=NULL)
        {
                if (w->GetPageCount()>0)
                {
@@ -253,10 +254,13 @@ void  LayoutTab::OnShowWidget()
                                w->AdvanceSelection(); 
                        } // for
                } // if PageCount
-       } // if w    
+       } // if w
+    if (bbGetOutputWidget()!=NULL)
+    {
+        bbGetOutputWidget()->Layout();
+    } // if bbGetOutputWidget
 }
 
-
 }//namespace bbwx
 
 #endif