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

index a51639c0a008c57a7ce30f2c28f2823dc614b393..93cb40773b571a91906d7dc242109b1939303cdf 100644 (file)
@@ -307,8 +307,10 @@ printf("EED WxFrame::~WxFrame\n");
     w->SetFocus();  // focus on my window
     w->Raise();  // bring window to front
       
-    printf("EED     ------  WxBlackBox::bbCreateFrameWindow-------------------- \n");
-//    w->Show(true);
+      printf("EED WxBlackBox::bbCreateFrameWindow --------------\n");
+      w->Enable(false);
+      
+    w->Show(true);
    }
 
   //==================================================================    
@@ -329,21 +331,19 @@ printf("EED WxFrame::~WxFrame\n");
   void WxBlackBox::bbShowWindow()
   {
     if ((bbmWindow) && (!bbIsShown()))
-      {
-       bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()"
-                        <<std::endl);
-       if (bbGetInputWinDialog()) 
-         {
+    {
+        bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()" <<std::endl);
+        if (bbGetInputWinDialog())
+        {
            ((WxDialog*)bbmWindow)->ShowModal();
-         }
-       else    
-         {
-           bbGetWindow()->Show();
-           bbSetShown(true);
-         } 
-      } // if
-
-
+        } else {
+            printf("//EED --------------   WxBlackBox::bbShowWindow  1 ------------------------ \n");
+            bbGetWindow()->Show();
+            bbSetShown(true);
+            bbmWindow->Enable(true);
+            printf("//EED --------------   WxBlackBox::bbShowWindow  2 ------------------------ \n");
+        } // if Dialog
+    } // if Window  shown
   }
   //==================================================================    
 
index d3a89dc247f433580cd7fa13a02071bc0f84bc2c..81b873c4147391495f10e23cbfe98c94cc7ce749 100644 (file)
@@ -157,7 +157,6 @@ void LayoutLine::Process()
     w -> SetSizer(sizer);
     w -> SetAutoLayout(true);
     w -> Layout();
-    w->Enable(false);
     bbSetOutputWidget( w );
   }
   
@@ -169,7 +168,6 @@ void LayoutLine::Process()
       if (bbGetOutputWidget()!=NULL)
       {
           bbGetOutputWidget()->Layout();
-          bbGetOutputWidget()->Enable(true);
       } // if bbGetOutputWidget
   }