]> Creatis software - bbtk.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Tue, 14 Jan 2025 15:14:17 +0000 (16:14 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Tue, 14 Jan 2025 15:14:17 +0000 (16:14 +0100)
packages/qt/src/bbqtLayoutSplit.cxx
packages/wx/src/bbwxLayoutLine.cxx
packages/wx/src/bbwxLayoutTab.cxx

index a8117edaad5d5dc588f3f1132edb4554ee6772c2..6ec29bea4a834122b11de6f961688f9afcd94406 100644 (file)
@@ -94,10 +94,13 @@ namespace bbqt
        
   void LayoutSplit::Process()
   {
+      printf("EED LayoutSplit::Process start\n");
+      printf("EED LayoutSplit::Process end\n");
   }
 
   void LayoutSplit::CreateWidget(QWidget* parent)
   {
+      printf("EED LayoutSplit::CreateWidget\n");
     Qt::Orientation ori;
     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),
                                    "0|H|HORIZONTAL")==true)  
@@ -172,6 +175,7 @@ namespace bbqt
   // when window is shown
   void  LayoutSplit::OnShowWidget()
   {
+      printf("EED LayoutSplit::OnShowWidget\n");
     /*
     bbUserOnShowWidget("Widget1");
     bbUserOnShowWidget("Widget2");
index af131a24c980f37b9313f167a18ecdd971257a68..d3a89dc247f433580cd7fa13a02071bc0f84bc2c 100644 (file)
@@ -80,7 +80,10 @@ namespace bbwx
        
 void LayoutLine::Process()
 {
+    printf("EED  LayoutLine::Process start\n");
        PutWinTitle();
+    printf("EED  LayoutLine::Process end\n");
+
 }
   
        
@@ -97,6 +100,9 @@ void LayoutLine::Process()
        
   void LayoutLine::CreateWidget(wxWindow* parent)
   {
+      printf("EED   LayoutLine::CreateWidget\n");
+
+
     wxBoxSizer *sizer;
     wxPanel *w = new wxPanel(parent, -1, wxDefaultPosition, wxSize(40,40) );
     w->SetName( bbtk::std2wx( bbGetInputWinTitle() ) );
@@ -151,6 +157,7 @@ void LayoutLine::Process()
     w -> SetSizer(sizer);
     w -> SetAutoLayout(true);
     w -> Layout();
+    w->Enable(false);
     bbSetOutputWidget( w );
   }
   
@@ -158,9 +165,11 @@ void LayoutLine::Process()
   // when window is shown
   void  LayoutLine::OnShowWidget()
   {
+      printf("EED   LayoutLine::OnShowWidget\n");
       if (bbGetOutputWidget()!=NULL)
       {
           bbGetOutputWidget()->Layout();
+          bbGetOutputWidget()->Enable(true);
       } // if bbGetOutputWidget
   }
 
index 6b529d4a6872a6f84600391c4947644a967345df..ab0860982c08f530385543583519f9abf697ca23 100644 (file)
@@ -191,12 +191,16 @@ void LayoutTab::SetTitleTabs()
 
   void LayoutTab::Process() 
   { 
+      printf("EED LayoutTab::Process  Start\n");
       PutWinTitle();
       SetTitleTabs();
+      printf("EED LayoutTab::Process  End\n");
   }
     
   void LayoutTab::CreateWidget(wxWindow* parent) 
   { 
+      printf("EED LayoutTab::CreateWidget \n");
+
     long style = wxNB_TOP;
     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|T|TOP")==true) 
       { style=wxNB_TOP; }
@@ -241,6 +245,8 @@ void LayoutTab::SetTitleTabs()
 // when window is shown
 void  LayoutTab::OnShowWidget()
 {
+    printf("EED LayoutTab::OnShowWidget \n");
+
 //EED2020-04-06
 //     wxNotebook* w = (wxNotebook*)bbGetOutputWidget();
        wxNotebook* w = ((TabWidget*)bbGetOutputWidget())->GetmwxNotebook();