Salome HOME
89eff4d144c9f6a563d3dbeef2c4024bb6c4225f
[modules/gui.git] / src / LightApp / LightApp_VTKSelector.h
1 // Copyright (C) 2007-2023  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 LIGHTAPP_VTKSELECTOR_H
24 #define LIGHTAPP_VTKSELECTOR_H
25
26 #include "SUIT_Selector.h"
27 #include "LightApp.h"
28 #include "LightApp_DataOwner.h"
29
30 #include <QObject>
31
32 class SUIT_Desktop;
33
34 #ifndef DISABLE_VTKVIEWER
35   #include <TColStd_IndexedMapOfInteger.hxx>
36   #include "SVTK_Hash.h"
37   #include "SVTK_Selection.h"
38 #ifndef DISABLE_SALOMEOBJECT
39   #include "SALOME_InteractiveObject.hxx"
40 #endif
41   class SALOME_Actor;
42   class SVTK_ViewWindow;
43   class SVTK_ViewModelBase;
44 #endif
45
46 /*!
47   Provide salome vtk data owner list.
48 */
49 class LIGHTAPP_EXPORT LightApp_SVTKDataOwner : public LightApp_DataOwner
50 {
51  public:
52    virtual ~LightApp_SVTKDataOwner() {};
53 #ifndef DISABLE_VTKVIEWER
54    #ifndef DISABLE_SALOMEOBJECT
55     LightApp_SVTKDataOwner( const Handle(SALOME_InteractiveObject)&, SUIT_Desktop* );
56    #else
57     LightApp_SVTKDataOwner( const QString& );
58    #endif
59
60     /*!Gets dataowners ids list.*/
61     const SVTK_TIndexedMapOfVtkId& GetIds() const;
62
63     /*!Gets selection mode.*/
64     Selection_Mode GetMode() const;
65
66     /*!Finds corresponding actor in the active viewer.*/
67     SALOME_Actor* GetActor() const;
68
69  protected:
70     mutable SVTK_TIndexedMapOfVtkId myIds;
71
72     SVTK_ViewWindow* GetActiveViewWindow() const;
73     SUIT_Desktop* myDesktop;
74 #endif
75 };
76
77
78 /*!
79   \class LightApp_VTKSelector
80   Custom selector to get/set selection from object browser
81 */
82 class LIGHTAPP_EXPORT LightApp_VTKSelector : public QObject, public SUIT_Selector
83 {
84   Q_OBJECT
85
86 public:
87   virtual ~LightApp_VTKSelector() {};
88 #ifndef DISABLE_VTKVIEWER
89   LightApp_VTKSelector( SVTK_ViewModelBase*, SUIT_SelectionMgr* );
90
91   SVTK_ViewModelBase* viewer() const;
92
93   virtual QString type() const;
94 #else
95   LightApp_VTKSelector( SUIT_SelectionMgr* );
96 #endif
97
98 private slots:
99   void              onSelectionChanged();
100
101 #ifndef DISABLE_VTKVIEWER
102 protected:
103   virtual void      getSelection( SUIT_DataOwnerPtrList& ) const;
104   virtual void      setSelection( const SUIT_DataOwnerPtrList& );
105
106 private:
107   SVTK_ViewModelBase* myViewer;
108
109 #endif
110 };
111
112 #endif