Salome HOME
8a625784eb5441c40dfe004324f626a253f553f0
[modules/visu.git] / src / VISUGUI / VisuGUI_Displayer.h
1 //  Copyright (C) 2007-2008  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 //  VISU VISUGUI : Displayer for VISU module
23 //  File   : VisuGUI_Displayer.h
24 //  Author : Alexander SOLOVYOV
25 //  Module : VISU
26 //  $Header: /home/server/cvs/VISU/VISU_SRC/src/VISUGUI/VisuGUI_Displayer.h
27 //
28 #ifndef VISUGUI_DISPLAYER_HEADER
29 #define VISUGUI_DISPLAYER_HEADER
30
31 #include <LightApp_Displayer.h>
32 #include <VISU_Prs3d_i.hh>
33 #include <VISU_Table_i.hh>
34 #include <VISU_PointMap3d_i.hh>
35
36 class SalomeApp_Application;
37 class SVTK_ViewWindow;
38 class Plot2d_ViewWindow;
39 class SPlot2d_Prs;
40
41 class VisuGUI_Displayer : public LightApp_Displayer
42 {
43 public:
44   VisuGUI_Displayer( SalomeApp_Application* );
45   ~VisuGUI_Displayer();
46
47   virtual SALOME_Prs* buildPresentation( const QString&, SALOME_View* = 0 );
48   virtual bool        canBeDisplayed( const QString& /*entry*/, const QString& /*viewer_type*/ ) const;
49
50 protected:
51           bool         addCurve      ( SPlot2d_Prs*, Plot2d_ViewWindow*, VISU::Curve_i* ) const;
52   virtual void         buildPrs3d    ( SVTK_ViewWindow*,   VISU::Prs3d_i* ) const;
53   virtual SPlot2d_Prs* buildCurve    ( Plot2d_ViewWindow*, VISU::Curve_i* ) const;
54   virtual SPlot2d_Prs* buildContainer( Plot2d_ViewWindow*, VISU::Container_i* ) const;
55   virtual SPlot2d_Prs* buildTable    ( Plot2d_ViewWindow*, VISU::Table_i* ) const;
56
57 private:
58   SalomeApp_Application*   myApp;
59 };
60
61 #endif