Salome HOME
8111373abb82a7b33137fbf4657da8f39e9964a9
[modules/visu.git] / src / VISUGUI / VisuGUI_Displayer.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  VISU VISUGUI : Displayer for VISU module
24 //  File   : VisuGUI_Displayer.h
25 //  Author : Alexander SOLOVYOV
26 //  Module : VISU
27 //  $Header: /home/server/cvs/VISU/VISU_SRC/src/VISUGUI/VisuGUI_Displayer.h
28 //
29 #ifndef VISUGUI_DISPLAYER_HEADER
30 #define VISUGUI_DISPLAYER_HEADER
31
32 #include <LightApp_Displayer.h>
33 #include <VISU_Prs3d_i.hh>
34 #include <VISU_Table_i.hh>
35 #include <VISU_PointMap3d_i.hh>
36
37 class SalomeApp_Application;
38 class SVTK_ViewWindow;
39 class Plot2d_ViewWindow;
40 class SPlot2d_Prs;
41
42 class VisuGUI_Displayer : public LightApp_Displayer
43 {
44 public:
45   VisuGUI_Displayer( SalomeApp_Application* );
46   ~VisuGUI_Displayer();
47
48   virtual SALOME_Prs* buildPresentation( const QString&, SALOME_View* = 0 );
49   virtual bool        canBeDisplayed( const QString& /*entry*/, const QString& /*viewer_type*/ ) const;
50
51 protected:
52           bool         addCurve      ( SPlot2d_Prs*, Plot2d_ViewWindow*, VISU::Curve_i* ) const;
53   virtual void         buildPrs3d    ( SVTK_ViewWindow*,   VISU::Prs3d_i* ) const;
54   virtual SPlot2d_Prs* buildCurve    ( Plot2d_ViewWindow*, VISU::Curve_i* ) const;
55   virtual SPlot2d_Prs* buildContainer( Plot2d_ViewWindow*, VISU::Container_i* ) const;
56   virtual SPlot2d_Prs* buildTable    ( Plot2d_ViewWindow*, VISU::Table_i* ) const;
57
58 private:
59   SalomeApp_Application*   myApp;
60 };
61
62 #endif