//See http://www.wxwindows.org/faqgtk.htm#locale
setlocale(LC_NUMERIC, "C");
#endif
-
if (cmd.quiet) bbtk::MessageManager::SetMessageLevel("max",0);
if (cmd.debug) bbtk::MessageManager::SetMessageLevel("all",9);
-
-
//Borrame
//printf ("EED bbi wxBBIApp::OnInit .....................\n");
//cmd.input_file.push_back("/home/davila/Borrame/testwt.bbs");
-
bbtk::WxGUIConsole *I = new bbtk::WxGUIConsole(0,_T("bbi"),wxSize(800,600));
SetTopWindow(I);
if (cmd.console) I->Show(true);
-
-
I->SetInputs(cmd.param_map);
-
bool help_on_script = cmd.help && (cmd.input_file.size() > 0);
if (help_on_script) I->SetNoExecMode(true);
if (cmd.graphical_dialog) I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog);
if (cmd.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog);
-
std::vector<std::string>::const_iterator i;
bool error = false;
-
-
- for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i)
- {
+ printf("EED wxApp::OnInit --start\n");
+ 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");
+ bbtk::BlackBox::bbGlobalSetInConstruction(false);
bool show_on_error = error && ! cmd.no_console;
if (show_on_error) I->Show();
-
I->SetNoExecMode(false);
-
if (help_on_script)
- {
- std::string package;
+ {
+ std::string package;
I->GetInterpreter()->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",package,false);
- }
+ }
/*
{
I->Close();
// std::cout << "I->Close"<<std::endl;
- }
- else
+ } else
{
// std::cout << "!I->Close"<<std::endl;
}
-
// std::cout << "EO OnInit"<<std::endl;
-
return true;
-
}
//==========================================================================
"=> BlackBox::bbExecute("<<(int)force<<")"
<<std::endl);
- printf("-- EED BlackBox::bbExecute Start \n");
- bbGlobalSetInConstruction(true);
-
// If already executing : return
/*
if (bbGetExecuting())
bbLetRecursiveExecuteManualMode = false;
}
- printf("-- EED BlackBox::bbExecute End \n");
- bbGlobalSetInConstruction(false);
-
bbtkBlackBoxDebugMessage("process",2,
"<= BlackBox::bbExecute()"
<<std::endl);
{
bbtkDebugMessage("interpreter",4,"==> InterpreterVirtual::InterpretFile(\""<<filename<<"\")"<<std::endl);
- bool exm = mCommandLine;
- mCommandLine = false;
+ bool exm = mCommandLine;
+ mCommandLine = false;
try
{
bbtkDebugMessage("interpreter",4,
"==> InterpreterVirtual::InterpretCurrentStreams()"<<std::endl);
- while (mFile.size()>0)
+ while (mFile.size()>0)
{
while (!mFile.back()->eof()) {
mLine.back()++;
{
commandMessage();
//EED Borrame mVirtualExecuter->HelpMessages();
- }
- else
- {
+ } else {
commandMessage(words[1],words[2]);
//EED Borrame sscanf(words[2].c_str(),"%d",&level);
//EED Borrame mVirtualExecuter->SetMessageLevel(words[1],level);
}
return;
- }
- else
- {
+ } else {
bbtkMessage("echo",2,line<<std::endl);
}
oter=ter;
ter.c_lflag &= ~ECHO;
ter.c_lflag &= ~ICANON;
- ter.c_cc[VMIN]=1;
- ter.c_cc[VTIME]=0;
+ ter.c_cc[VMIN] = 1;
+ ter.c_cc[VTIME] = 0;
tcsetattr(0,TCSANOW,&ter);
#endif
- mCommandLine = true;
- bool again = true;
- // bool insideComment = false; // for multiline comment
- mInsideComment = false;
- do
+ mCommandLine = true;
+ bool again = true;
+ // bool insideComment = false; // for multiline comment
+ mInsideComment = false;
+ do
{
try
{
void LayoutLine::Process()
{
- printf("EED LayoutLine::Process start\n");
PutWinTitle();
- printf("EED LayoutLine::Process end\n");
-
}
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() ) );
// when window is shown
void LayoutLine::OnShowWidget()
{
- printf("EED LayoutLine::OnShowWidget\n");
if (bbGetOutputWidget()!=NULL)
{
bbGetOutputWidget()->Layout();