]> Creatis software - bbtk.git/commitdiff
#3533 Maximized Option
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 3 Feb 2025 14:44:28 +0000 (15:44 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Mon, 3 Feb 2025 14:44:28 +0000 (15:44 +0100)
kernel/src/bbtkBlackBox.cxx
kernel/src/bbtkWxBlackBox.cxx
kernel/src/bbtkWxBlackBox.h
packages/wx/src/bbwxFreeMemoryAlert.cxx
packages/wx/src/bbwxLayoutLine.cxx

index c6cd7cfd1d87e089c2598c2e14b358cae8b04de1..6d0afbb20befe58cfa4b2333da35751b44da4442 100644 (file)
@@ -775,7 +775,7 @@ namespace bbtk
                         )
                        {
 
-//printf("EED BlackBox::bbRecursiveExecute bbProcess start %s \n", bbGetFullName().c_str() );
+// printf("EED BlackBox::bbRecursiveExecute bbProcess start %s \n", bbGetFullName().c_str() );
                 
 //auto start = std::chrono::high_resolution_clock::now();
                 this->bbProcess();
@@ -783,7 +783,7 @@ namespace bbtk
 //auto duration   = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
 //printf("EED BlackBox::bbRecursiveExecute bbProcess time= %ld  %s \n", duration.count() , bbGetFullName().c_str() );
 
-//printf("EED BlackBox::bbRecursiveExecute bbProcess end %s \n", bbGetFullName().c_str() );
+// printf("EED BlackBox::bbRecursiveExecute bbProcess end %s \n", bbGetFullName().c_str() );
 
                    } // Manual analysis
                  
index f1b9544a6ff22f3609eeaaae8fab05f30b0444f3..5cff05027b52e328af6b4ef7a5f8ad9e16c447ca 100644 (file)
@@ -185,7 +185,7 @@ printf("EED WxFrame::~WxFrame\n");
                wxDefaultPosition,
                size,
                wxRESIZE_BORDER | 
-               wxSYSTEM_MENU  |
+//             wxSYSTEM_MENU  |
                wxCLOSE_BOX |
                wxMAXIMIZE_BOX | 
                wxMINIMIZE_BOX | wxSTAY_ON_TOP |
@@ -276,9 +276,9 @@ printf("EED WxFrame::~WxFrame\n");
                      std2wx( ConstructWinTitle() ),
                      wxSize( bbGetInputWinWidth() , 
                              bbGetInputWinHeight() ) );
-    w->Show(false);
+     w->Show(false);
     //    w->ShowModal();
-  } 
+  }
   //=========================================================================
 
   //==================================================================    
@@ -322,19 +322,40 @@ printf("EED WxFrame::~WxFrame\n");
   {
     if ((bbmWindow) && (!bbIsShown()))
     {
+        
+        //Try Maximized Window
+        if (bbGetInputWinMaximized()==true)
+        {
+            wxWindow *ww = bbGetOutputWidget();
+            while (ww->GetParent()!=NULL)
+            {
+                ww = ww->GetParent();
+            } // while
+            wxFrame *f = (wxFrame*)ww;
+    //        f->Iconize(false);
+            f->Maximize(true);
+    //        f->Raise();
+    //        f->Show(true);
+    //        f->SetFocus();
+        }// if WinMaximized
+
+        
+        
         bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()" <<std::endl);
         if (bbGetInputWinDialog())
         {
-           ((WxDialog*)bbmWindow)->ShowModal();
+               ((WxDialog*)bbmWindow)->ShowModal();
         } else {
             bbGetWindow()->Show();
             bbSetShown(true);
         } // if Dialog
+        
     } // if Window  shown
   }
   //==================================================================    
 
-  //==================================================================    
+
+  //==================================================================
   void WxBlackBox::bbDestroyWindow()
   {
     bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
index cb160fc646da314de6df780ba4a222dd8c7a3e45..a3c12876f765f40176a2230a660d4004ecc8cbbd 100644 (file)
@@ -91,8 +91,8 @@ namespace bbtk
     //==================================================================    
     virtual void bbShowWindow();
     //==================================================================   
-    //==================================================================    
+
+    //==================================================================
     virtual void bbDestroyWindow();
     //==================================================================    
 
index ab4116b407a95cba523061f961d1e31a8ab88675..bef390eeadb845b6fb06a617c9cbce9d9889bfa8 100644 (file)
@@ -3,7 +3,9 @@
 //===== 
 #include "bbwxFreeMemoryAlert.h"
 #include "bbwxPackage.h"
+
 #include <wx/msgdlg.h>
+#include <wx/app.h>
 
 namespace bbwx
 {
@@ -31,53 +33,52 @@ void FreeMemoryAlert::Process()
        double memfreeGB = (double) (wxGetFreeMemory().ToLong()/1000000000.0);
        if ( memfreeGB < bbGetInputFreeMemoryLimit() ) 
        {
-               wxMessageBox(wxString::Format(  "This application needs minimum %4.1f Gb to be executed correctly. \nTry to close somes applications you don't need. \n\n Actual free memory = %4.1f Gb\n",bbGetInputFreeMemoryLimit(),
+        /*
+        wxMessageBox( wxString::Format(        "This application needs minimum %4.1f Gb to be executed correctly. \nTry to close somes applications you don't need. \n\n Actual free memory = %4.1f Gb\n" ,bbGetInputFreeMemoryLimit(),
                                                                memfreeGB ),
                                                                _T("Warning!"), 
-                                                               wxOK | wxICON_INFORMATION, 
-                                                               NULL);          
-       } // if memfree
-
+                                                               wxOK | wxICON_INFORMATION | wxSTAY_ON_TOP | wxCENTRE ,
+                                                               NULL);
+        */
 
-  
+        
+        wxMessageDialog *dial = new wxMessageDialog( wxApp::GetMainTopWindow() , wxT("Please select a Contour"), wxT("Warning"), wxOK | wxSTAY_ON_TOP| wxICON_EXCLAMATION  ) ;
+        dial->ShowModal();
+       } // if memfree
 }
-//===== 
+
+//=====
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void FreeMemoryAlert::bbUserSetDefaultValues()
 {
-
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
    bbSetInputFreeMemoryLimit(1);
-  
 }
-//===== 
+
+//=====
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void FreeMemoryAlert::bbUserInitializeProcessing()
 {
-
 //  THE INITIALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should allocate the internal/output pointers 
-//    if any 
-
-  
+//    if any
 }
-//===== 
+
+//=====
 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
 //===== 
 void FreeMemoryAlert::bbUserFinalizeProcessing()
 {
-
 //  THE FINALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should desallocate the internal/output pointers 
 //    if any
-  
 }
-}
-// EO namespace bbwx
+
+}// EO namespace bbwx
 
 
index 3b254390d91c637aefd33914ae98fe07d11134ec..face2183304d08c047bfc3a9a34376da6ad53db0 100644 (file)
@@ -74,24 +74,10 @@ void LayoutLine::bbUserFinalizeProcessing()
 {
 }
        
+//-----------------------------------------------------------------
 void LayoutLine::Process()
 {
     PutWinTitle();
-    
-    if (bbGetInputWinMaximized()==true)
-    {
-        wxWindow *ww = bbGetOutputWidget();
-        while (ww->GetParent()!=NULL)
-        {
-            ww = ww->GetParent();
-        } // while
-        wxFrame *f = (wxFrame*)ww;
-        f->Iconize(false);
-        f->Maximize(true);
-        f->Raise();
-        f->Show(true);
-        f->SetFocus();
-    }// if
 }
        
 /*