]> Creatis software - clitk.git/blobdiff - vv/vv.cxx
no more useful
[clitk.git] / vv / vv.cxx
index 0896eae4aee395b89800bc2b1c44d2ddde702d39..fe19cc381aa76733f03afbea25b951c61eff4b81 100644 (file)
--- 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 <http://www.gnu.org/licenses/>.
 
 =========================================================================*/
+
 #include <utility>
 #include <cassert>
 #include <QApplication>
@@ -32,22 +30,26 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #include <QTimer>
 #include <QDesktopWidget>
 
-#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();