Salome HOME
Updated copyright comment
[modules/gui.git] / src / SOCC / SOCC_ViewModel.h
1 // Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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 #ifndef SOCC_VIEWMODEL_H
24 #define SOCC_VIEWMODEL_H
25
26 #ifdef WIN32
27 #pragma warning( disable:4251 )
28 #endif
29
30 #include "SOCC.h"
31 #include "SALOME_Prs.h"
32 #include "OCCViewer_ViewModel.h"
33
34 class SALOME_ListIO;
35 class SALOME_InteractiveObject;
36
37 class SOCC_EXPORT SOCC_Viewer: public OCCViewer_Viewer, public SALOME_View
38 {
39   Q_OBJECT
40
41 public:
42   SOCC_Viewer( bool DisplayTrihedron = true );
43   virtual ~SOCC_Viewer();
44
45   /* Selection management */
46   bool      highlight( const Handle(SALOME_InteractiveObject)&, bool, bool=true );
47   bool      isInViewer( const Handle(SALOME_InteractiveObject)&, bool=false );
48
49   void      setColor( const Handle(SALOME_InteractiveObject)&, const QColor&, bool=true );
50   void      switchRepresentation( const Handle(SALOME_InteractiveObject)&, int, bool=true );
51   void      setTransparency( const Handle(SALOME_InteractiveObject)&, float, bool=true );
52
53   void      rename( const Handle(SALOME_InteractiveObject)&, const QString& );
54
55   //virtual   SUIT_ViewWindow* createView(SUIT_Desktop* theDesktop);
56   virtual OCCViewer_ViewWindow* createSubWindow();
57
58   /* Reimplemented from SALOME_View */
59   virtual void                Display( const SALOME_OCCPrs* );
60   virtual void                Erase( const SALOME_OCCPrs*, const bool = false );
61   virtual void                EraseAll( SALOME_Displayer*, const bool = false );
62   virtual SALOME_Prs*         CreatePrs( const char* entry = 0 );
63
64   virtual void                LocalSelection( const SALOME_OCCPrs*, const int );
65   virtual void                LocalSelection( const SALOME_OCCPrs*, const std::list<int> );
66   virtual void                GlobalSelection( const bool = false ) const;
67   virtual bool                isVisible( const Handle(SALOME_InteractiveObject)& );
68   virtual void                GetVisible( SALOME_ListIO& );
69   virtual void                Repaint();
70
71   //a map to store AIS objects associated to a SALOME entry
72   std::map< std::string , std::vector<Handle(AIS_InteractiveObject)> > entry2aisobjects;
73 };
74
75 #ifdef WIN32
76 #pragma warning( default:4251 )
77 #endif
78
79 #endif