)
{
-//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();
//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
wxDefaultPosition,
size,
wxRESIZE_BORDER |
- wxSYSTEM_MENU |
+// wxSYSTEM_MENU |
wxCLOSE_BOX |
wxMAXIMIZE_BOX |
wxMINIMIZE_BOX | wxSTAY_ON_TOP |
std2wx( ConstructWinTitle() ),
wxSize( bbGetInputWinWidth() ,
bbGetInputWinHeight() ) );
- w->Show(false);
+ w->Show(false);
// w->ShowModal();
- }
+ }
//=========================================================================
//==================================================================
{
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);
//==================================================================
virtual void bbShowWindow();
//==================================================================
-
- //==================================================================
+
+ //==================================================================
virtual void bbDestroyWindow();
//==================================================================
//=====
#include "bbwxFreeMemoryAlert.h"
#include "bbwxPackage.h"
+
#include <wx/msgdlg.h>
+#include <wx/app.h>
namespace bbwx
{
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
{
}
+//-----------------------------------------------------------------
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
}
/*