Salome HOME
Porting to Qt 5
[modules/hydro.git] / src / HYDRO_tests / test_HYDROData_Main.cxx
index 2ad810e282c0930bfd94bb6eda0b30f4aabc3393..90a5559e02701917a02d36dee560a84d8a7e8562 100644 (file)
 #include <QApplication>
 #include <QColor>
 #include <QTest>
-#include <random.h>
 
 int main( int argc, char* argv[] )
 {
-  test_srand( 0 );
-
   QApplication anApp( argc, argv );
   SUIT_Session aSession;
 
   OCCViewer_ViewWindow* aWindow = TestViewer::viewWindow();
-  aWindow->setGeometry( 200, 200, 800, 600 );
+
+  int W = 800, H = 600;
+  aWindow->setGeometry( 200, 200, W, H );
   aWindow->show();
+#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
   QTest::qWaitForWindowShown( aWindow );
+#else
+  QTest::qWaitForWindowExposed( aWindow );
+#endif
+
+  int dy = 34;
+  //std::cout << dx << "," << dy << std::endl;
+  aWindow->resize( W, H+dy );
+  anApp.processEvents();
 
   std::string testPath = (argc > 1) ? std::string(argv[1]) : "";