X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fappli%2Fbbc%2Fmain.cxx.in;h=307a90ed23513a261ce6dfd493a3be7128156a22;hb=501ddfbdce64c1cab01deeb4b7d0634ae2236c1d;hp=d1d8212b4326ff3d41c83773230e3d4e4a4faa70;hpb=26550d07aa8d312e33a18a19b8844ba249202336;p=bbtk.git diff --git a/kernel/appli/bbc/main.cxx.in b/kernel/appli/bbc/main.cxx.in index d1d8212..307a90e 100644 --- a/kernel/appli/bbc/main.cxx.in +++ b/kernel/appli/bbc/main.cxx.in @@ -1,3 +1,29 @@ +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ */ + #ifdef _USE_WXWIDGETS_ //========================================================================== @@ -46,7 +72,7 @@ public: bool text_dialog; std::map param_map; - + }; IMPLEMENT_APP(wxBBIApp); @@ -77,7 +103,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); } } @@ -138,15 +164,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 @@ -155,11 +181,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 @@ -183,7 +209,7 @@ int main(int argc, char* argv[]) { I.CommandLineInterpreter(); } - else + else { std::string f(argv[1]); I.InterpretFile(f);