Salome HOME
updated copyright message
[modules/gui.git] / src / LightApp / LightApp_SelectionMgr.h
1 // Copyright (C) 2007-2023  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, 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_SELECTIONMGR_H
24 #define LIGHTAPP_SELECTIONMGR_H
25
26 #include "LightApp.h"
27
28 #include <SUIT_SelectionMgr.h>
29
30 #include <QtCore/QTime>
31
32 #ifndef DISABLE_SALOMEOBJECT
33   #include <SALOME_InteractiveObject.hxx>
34   #include <QMap>
35   #include <NCollection_DataMap.hxx>
36
37   #include <TColStd_IndexedMapOfInteger.hxx>
38   #include <TColStd_MapOfInteger.hxx>
39
40   class SALOME_ListIO;
41   class TCollection_AsciiString;
42 #else
43 #include <QStringList>
44 #endif
45
46 class LightApp_Application;
47
48 /*!
49   Custom selection manager, allowing to work with object selection
50   (additionally to data owners) and to access to sub-selection of objects
51 */
52 class LIGHTAPP_EXPORT LightApp_SelectionMgr : public SUIT_SelectionMgr
53 {
54   Q_OBJECT
55
56 public:
57   LightApp_SelectionMgr( LightApp_Application*, const bool = true );
58   virtual ~LightApp_SelectionMgr();
59
60   LightApp_Application* application() const;
61
62   virtual void           setSelected( const SUIT_DataOwnerPtrList&, const bool = false );
63
64 #ifndef DISABLE_SALOMEOBJECT
65   typedef NCollection_DataMap< Handle(SALOME_InteractiveObject), TColStd_IndexedMapOfInteger > MapIOOfMapOfInteger;
66   typedef NCollection_DataMap< TCollection_AsciiString, TColStd_IndexedMapOfInteger > MapEntryOfMapOfInteger;
67
68   void                   selectedObjects( SALOME_ListIO&, const QString& = QString(), const bool = true, const bool sole=false ) const;
69   Handle(SALOME_InteractiveObject) soleSelectedObject( const QString& = QString(), const bool = true ) const;
70   void                   setSelectedObjects( const SALOME_ListIO&, const bool = false );
71
72   void                   GetIndexes( const Handle(SALOME_InteractiveObject)& IObject, 
73                                      TColStd_IndexedMapOfInteger& theIndex );
74   void                   GetIndexes( const QString& theEntry, 
75                                      TColStd_IndexedMapOfInteger& theIndex );
76
77   //bool                   AddOrRemoveIndex( const Handle(SALOME_InteractiveObject)& IObject, 
78   void                   AddOrRemoveIndex( const Handle(SALOME_InteractiveObject)& IObject, 
79                                            const TColStd_MapOfInteger& theIndices, 
80                                            bool modeShift );
81
82   void                   selectObjects( const Handle(SALOME_InteractiveObject)& IObject, 
83                                         TColStd_IndexedMapOfInteger theIndex, bool append );
84   void                   selectObjects( MapIOOfMapOfInteger theMapIO, bool append );
85
86   void                   selectedSubOwners( MapEntryOfMapOfInteger& theMap );
87 #else
88   void                   selectedObjects( QStringList&, const QString& = QString(), const bool = true ) const;
89   void                   setSelectedObjects( const QStringList&, const bool = false );
90 #endif
91
92   void                   clearSelectionCache();
93   bool                   isSelectionCacheEnabled() const;
94   void                   setSelectionCacheEnabled( bool );
95
96 signals:
97   void                   currentSelectionChanged();
98
99 private:
100   virtual void           selectionChanged( SUIT_Selector* );
101
102 #ifndef DISABLE_SALOMEOBJECT
103   QList<Handle(SALOME_InteractiveObject)> selectionCache( const QString& = QString() ) const;
104 #else
105   QStringList                            selectionCache( const QString& = QString() ) const;
106 #endif
107   bool                   isActualSelectionCache( const QString& = QString() ) const;
108
109   QStringList            selectorTypes() const;
110
111 private:
112 #ifndef DISABLE_SALOMEOBJECT
113   typedef Handle(SALOME_InteractiveObject) SelObject;
114 #else
115   typedef QString                         SelObject;
116 #endif
117   typedef QList<SelObject>             SelList;
118   typedef QMap<QString, QTime>         TimeMap;
119   typedef QMap<QString, SelList>       CacheMap;
120
121 private:
122   LightApp_Application* myApp;
123
124   QTime                 myTimeStamp;
125
126   bool                  myCacheState;
127   TimeMap               myCacheTimes;
128   CacheMap              myCacheSelection;
129 };
130
131 #endif