Salome HOME
f81750fb1cbcac83e33a06438f56b9bb2b5cb157
[modules/visu.git] / src / VISUGUI / VisuGUI_Displayer.h
1 // Copyright (C) 2007-2011  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   virtual bool        IsDisplayed( const QString&, SALOME_View* = 0 ) const;
51   
52   virtual void        AfterDisplay ( SALOME_View*, const SALOME_Prs2d* );
53   virtual void        AfterErase( SALOME_View*, const SALOME_Prs2d* );
54
55 protected:
56           bool         addCurve      ( SPlot2d_Prs*, Plot2d_ViewWindow*, VISU::Curve_i* ) const;
57   virtual void         buildPrs3d    ( SVTK_ViewWindow*,   VISU::Prs3d_i* ) const;
58   virtual SPlot2d_Prs* buildCurve    ( Plot2d_ViewWindow*, VISU::Curve_i* ) const;
59   virtual SPlot2d_Prs* buildContainer( Plot2d_ViewWindow*, VISU::Container_i* ) const;
60   virtual SPlot2d_Prs* buildTable    ( Plot2d_ViewWindow*, VISU::Table_i* ) const;
61
62 private:
63   SalomeApp_Application*   myApp;
64 };
65
66 #endif