Salome HOME
Merge branch 'BR_LAND_COVER_MAP' of ssh://git.salome-platform.org/modules/hydro into...
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #pragma once
20
21 class OCCViewer_ViewManager;
22 class OCCViewer_Viewer;
23 class OCCViewer_ViewWindow;
24 class TopoDS_Shape;
25 class QString;
26 class QColor;
27 class Handle_AIS_InteractiveObject;
28 class Handle_Aspect_ColorScale;
29
30 class TestViewer
31 {
32 public:
33   static OCCViewer_ViewManager* viewManager();
34   static OCCViewer_Viewer* viewer();
35   static OCCViewer_ViewWindow* viewWindow();
36
37   static void show( const Handle_AIS_InteractiveObject& theObject,
38                     int theMode, int theSelectionMode, bool isFitAll, const char* theKey );
39   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor );
40   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey );
41   static bool AssertImages( QString& theMessage );
42   static QColor GetColor(int i);
43
44   static Handle_Aspect_ColorScale showColorScale( bool );
45
46   static void select( int theViewX, int theViewY );
47
48   static bool areScriptsEqual( const QString& theBaseName );
49
50 private:
51   static OCCViewer_ViewManager* myViewManager;
52   static OCCViewer_ViewWindow* myViewWindow;
53   static QString myKey;
54 };
55
56 #define CPPUNIT_ASSERT_IMAGES                              \
57   {                                                        \
58     QString aMessage;                                      \
59     if( !TestViewer::AssertImages( aMessage ) )            \
60     {                                                      \
61       std::string aMessageStl = aMessage.toStdString();    \
62       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
63     }                                                      \
64   }                                                        \
65
66 #define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName )        \
67   if( !TestViewer::areScriptsEqual( theBaseName ) )        \
68     CPPUNIT_FAIL( "Scripts are not equal" );               \
69
70