if (cmd.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog);
std::vector<std::string>::const_iterator i;
bool error = false;
- printf("EED wxApp::OnInit --start\n");
+ //EED 2025-01-20 Create sync mechanism windows
bbtk::BlackBox::bbGlobalSetInConstruction(true);
for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i)
{
error = ! I->InterpretFile(*i);
if (error) break;
}
- printf("EED wxApp::OnInit --end\n");
+ //EED 2025-01-20 Create sync mechanism windows
bbtk::BlackBox::bbGlobalSetInConstruction(false);
bool show_on_error = error && ! cmd.no_console;
if (show_on_error) I->Show();
std::string package;
I->GetInterpreter()->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",package,false);
}
-
-
/*
std::cout << "soe="<<show_on_error <<std::endl;
std::cout << "con="<<console<<std::endl;
namespace bbtk
{
-// static bool bbmgInConstruction = false;
- static int bbmgInConstruction = 0;
+ static int bbmgInConstruction = 0;
static bool bbmgSomeBoxExecuting = false;
static bool bbmgFreezeExecution = false;
static std::set<BlackBox::WeakPointer> bbmgExecutionList;
{
bbGlobalProcessExecutionList();
} // if reaction
- } // if inCosntruction
+ } // if bbGlobalGetInConstruction()
bbtkBlackBoxDebugMessage("change",5,
"<= BlackBox::bbSignalOutputModification()"
<<std::endl);
<<std::endl);
if (bbGlobalGetInConstruction()==false)
{
-
OutputConnectorMapType::iterator i =
bbGetOutputConnectorMap().find(output);
-
-
if ( i == bbGetOutputConnectorMap().end() )
{
bbtkError("BlackBox["<<bbGetFullName()<<"]::bbSignalOutputModification("<<output<<") : unknown output");
}
-
// if (i->second->GetStatus()==UPTODATE)
// {
i->second->SignalChange(GetThisPointer<BlackBox>(),i->first);
bbGlobalProcessExecutionList();
} // if reaction
// }
-
- } // if inConstruction
-
+ } // if bbGlobalGetInConstruction()
bbtkBlackBoxDebugMessage("change",5,
"<= BlackBox::bbSignalOutputModification("
<<output<<")"
}
//=========================================================================
-//EED2025-01-15
+//EED 2025-01-20 Create sync mechanism windows
bool BlackBox::bbGlobalGetInConstruction()
{
- // return bbmgInConstruction;
- printf("BlackBox::bbGlobalGetInConstruction bbmgInConstruction=%d \n", bbmgInConstruction );
if (bbmgInConstruction>0) return true;
return false;
}
} else {
bbmgInConstruction--;
}
- printf("BlackBox::bbGlobalSetInConstruction ----- bbmgInConstruction=%d\n", bbmgInConstruction );
-// bbmgInConstruction = b;
}
-
} // EO namespace bbtk
// EOF
wxSize( bbGetInputWinWidth() ,
bbGetInputWinHeight() ) );
w->SetFocus(); // focus on my window
- w->Raise(); // bring window to front
-
- printf("EED WxBlackBox::bbCreateFrameWindow --------------\n");
-// w->Enable(false);
-
+ w->Raise(); // bring window to front
w->Show(true);
}
{
((WxDialog*)bbmWindow)->ShowModal();
} else {
- printf("//EED -------------- WxBlackBox::bbShowWindow 1 ------------------------ \n");
bbGetWindow()->Show();
bbSetShown(true);
-
- printf("//EED -------------- WxBlackBox::bbShowWindow 2 ------------------------ \n");
-// bbmWindow->Enable(true);
-
} // if Dialog
} // if Window shown
}