1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef SOCC_VIEWMODEL_H
24 #define SOCC_VIEWMODEL_H
27 #pragma warning( disable:4251 )
31 #include "SALOME_Prs.h"
32 #include "OCCViewer_ViewModel.h"
35 class Handle(SALOME_InteractiveObject);
37 class SOCC_EXPORT SOCC_Viewer: public OCCViewer_Viewer, public SALOME_View
42 SOCC_Viewer( bool DisplayTrihedron = true );
43 virtual ~SOCC_Viewer();
45 /* Selection management */
46 bool highlight( const Handle(SALOME_InteractiveObject)&, bool, bool=true );
47 bool isInViewer( const Handle(SALOME_InteractiveObject)&, bool=false );
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 );
53 void rename( const Handle(SALOME_InteractiveObject)&, const QString& );
55 //virtual SUIT_ViewWindow* createView(SUIT_Desktop* theDesktop);
56 virtual OCCViewer_ViewWindow* createSubWindow();
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( const bool = false );
62 virtual SALOME_Prs* CreatePrs( const char* entry = 0 );
64 virtual void LocalSelection( const SALOME_OCCPrs*, const int );
65 virtual void GlobalSelection( const bool = false ) const;
66 virtual bool isVisible( const Handle(SALOME_InteractiveObject)& );
67 virtual void GetVisible( SALOME_ListIO& );
68 virtual void Repaint();
70 //a map to store AIS objects associated to a SALOME entry
71 std::map< std::string , std::vector<Handle(AIS_InteractiveObject)> > entry2aisobjects;
75 #pragma warning( default:4251 )