X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2Fvv.cxx;h=fe19cc381aa76733f03afbea25b951c61eff4b81;hb=942f4fcf5d6d3d813e9da546331f599f61dee0ac;hp=0896eae4aee395b89800bc2b1c44d2ddde702d39;hpb=931a42358442f4ee4f314613c991c838d4b4e3b7;p=clitk.git diff --git a/vv/vv.cxx b/vv/vv.cxx index 0896eae..fe19cc3 100644 --- a/vv/vv.cxx +++ b/vv/vv.cxx @@ -1,10 +1,7 @@ /*========================================================================= Program: vv - Module: $RCSfile: vv.cxx,v $ Language: C++ - Date: $Date: 2010/01/06 13:31:57 $ - Version: $Revision: 1.1 $ Author : Pierre Seroul (pierre.seroul@gmail.com) Copyright (C) 2008 @@ -24,6 +21,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . =========================================================================*/ + #include #include #include @@ -32,22 +30,26 @@ along with this program. If not, see . #include #include -#include "clitkCommon.h" +#include "clitkIO.h" #include "vvMainWindow.h" -#include "vvInit.h" - #include "vvConstants.h" +//------------------------------------------------------------------------------ int main( int argc, char** argv ) { - initialize_IO(); +#ifdef _WIN32 + HWND hWnd = GetConsoleWindow(); + ShowWindow( hWnd, SW_HIDE ); +#endif + + CLITK_INIT; QApplication app( argc, argv ); Q_INIT_RESOURCE(vvIcons); //QPixmap pixmap(":/splashscreen.PNG"); QSplashScreen *splash = new QSplashScreen(QPixmap(QString::fromUtf8(":/new/prefix1/splashscreen.PNG"))); /*splash->showMessage("VV 1.0 developped by Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr and CREATIS-LRMN http://www.creatis.insa-lyon.fr",(Qt::AlignRight | Qt::AlignBottom));*/ -// splash->show(); + // splash->show(); QTimer::singleShot(2000, splash, SLOT(close())); while (!splash->isHidden()) app.processEvents();