Program: bbtk
Module: $RCSfile: bbtkWxGUIScriptingInterface.cxx,v $
Language: C++
- Date: $Date: 2008/10/21 08:37:04 $
- Version: $Revision: 1.30 $
+ Date: $Date: 2008/10/21 14:38:31 $
+ Version: $Revision: 1.31 $
=========================================================================*/
/* ---------------------------------------------------------------------
//================================================================
void WxGUIScriptingInterface::OnMenuCreatePackage(wxCommandEvent& WXUNUSED(event))
{
-
+/*
std::string command("toolsbbtk/appli/GUICreatePackage");
bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
-
- Interpreter::Pointer I = Interpreter::New();
+
+ Interpreter::Pointer I = Interpreter::New();
I->InterpretFile(command);
+*/
+ std::string command("reset");
+ mWxGUICommand->SendCommand(command);
+ command = "include toolsbbtk/appli/GUICreatePackage";
+ bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
+ mWxGUICommand->SendCommand(command);
}
//================================================================
//================================================================
void WxGUIScriptingInterface::OnMenuCreateBlackBox(wxCommandEvent& WXUNUSED(event))
{
+ /*
std::string command("toolsbbtk/appli/GUICreateBlackBox");
bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
Interpreter::Pointer I = Interpreter::New();
I->InterpretFile(command);
+*/
+ std::string command("reset");
+ mWxGUICommand->SendCommand(command);
+ command = "include toolsbbtk/appli/GUICreateBlackBox";
+ bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
+ mWxGUICommand->SendCommand(command);
}
//================================================================