X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fappli%2Fbbc%2Fmain.cxx.in;h=f3bd451a83ef561a30b9178ee144ce6612012394;hb=6182fd299a7c70520dd8af586e99797a34c441ef;hp=61ba8dafdb7e5837dde787730ff92157e843ab41;hpb=d7fb51b4b79c28f4c70137f12db8cfe9ea7f87b8;p=bbtk.git diff --git a/kernel/appli/bbc/main.cxx.in b/kernel/appli/bbc/main.cxx.in index 61ba8da..f3bd451 100644 --- a/kernel/appli/bbc/main.cxx.in +++ b/kernel/appli/bbc/main.cxx.in @@ -15,8 +15,8 @@ static const wxCmdLineEntryDesc cmdLineDesc[] = { - { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("Debug messages on (message All 9)") }, - { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet") }, + { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("debug messages on (message all 9)") }, + { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet (message mac 0)") }, { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("print help") }, { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"), _T("prompts the user for the parameters values using dialog boxes") }, { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"), _T("prompts the user for the parameters values in text mode") }, @@ -46,7 +46,7 @@ public: bool text_dialog; std::map param_map; - + }; IMPLEMENT_APP(wxBBIApp); @@ -77,7 +77,7 @@ bool wxBBIApp::OnCmdLineParsed(wxCmdLineParser& parser) std::string right = s.substr(pos+1,s.size()); param_map[left]=right; } - else + else { std::cout << "'" << s << "' option unrecognized : ignored"<SetDialogMode(bbtk::VirtualExec::TextDialog); EXEC_FUNCTION(mExecuter); - + mExecuter->SetNoExecMode(false); - if (help) + if (help) { - std::string package; + std::string package; mExecuter->GetFactory()->HelpBlackBox("workspace",package,false); } } @@ -137,15 +138,15 @@ bool wxBBIApp::OnInit( ) bbtk::Wx::GetTopWindow()->Close(); return false; } - if (help || !bbtk::Wx::IsSomeWindowAlive()) - { + if (help || !bbtk::Wx::IsSomeWindowAlive()) + { return false; } return true; } -#if defined(_WIN32) +#if defined(_WIN32) // How to have a Console and wxWidgets // http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide @@ -154,11 +155,11 @@ bool wxBBIApp::OnInit( ) // you need to use the linker option "/subsystem:console" and the following code: int main(int argc, char* argv[]) { - return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), + return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL); } -#endif // defined(_WIN32) +#endif // defined(_WIN32) #else @@ -182,7 +183,7 @@ int main(int argc, char* argv[]) { I.CommandLineInterpreter(); } - else + else { std::string f(argv[1]); I.InterpretFile(f);