Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/gui.git] / src / LightApp / LightApp_SelectionMgr.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/
18 //
19 #ifndef LIGHTAPP_SELECTIONMGR_H
20 #define LIGHTAPP_SELECTIONMGR_H
21
22 #include "LightApp.h"
23
24 #include <SUIT_SelectionMgr.h>
25
26 #ifndef DISABLE_SALOMEOBJECT
27   #include <SALOME_InteractiveObject.hxx>
28   #include <qmap.h>
29
30   class SALOME_ListIO;
31   class TColStd_IndexedMapOfInteger;
32   class TColStd_MapOfInteger;
33 #else
34 #include <qstringlist.h>
35 #endif
36
37 class LightApp_Application;
38
39 /*!
40   Custom selection manager, allowing to work with object selection
41   (additionally to data owners) and to access to sub-selection of objects
42 */
43 class LIGHTAPP_EXPORT LightApp_SelectionMgr : public SUIT_SelectionMgr
44 {
45   Q_OBJECT
46
47 public:
48   LightApp_SelectionMgr( LightApp_Application*, const bool = true );
49   virtual ~LightApp_SelectionMgr();
50
51   LightApp_Application* application() const;
52
53 #ifndef DISABLE_SALOMEOBJECT
54   typedef QMap< Handle(SALOME_InteractiveObject), TColStd_IndexedMapOfInteger > MapIOOfMapOfInteger;
55   typedef QMap< QString, TColStd_IndexedMapOfInteger > MapEntryOfMapOfInteger;
56
57   void                   selectedObjects( SALOME_ListIO&, const QString& = QString::null, const bool = true ) const;
58   void                   setSelectedObjects( const SALOME_ListIO&, const bool = false );
59
60   void                   GetIndexes( const Handle(SALOME_InteractiveObject)& IObject, 
61                                      TColStd_IndexedMapOfInteger& theIndex );
62   void                   GetIndexes( const QString& theEntry, 
63                                      TColStd_IndexedMapOfInteger& theIndex );
64
65   bool                   AddOrRemoveIndex( const Handle(SALOME_InteractiveObject)& IObject, 
66                                            const TColStd_MapOfInteger& theIndices, 
67                                            bool modeShift );
68
69   void                   selectObjects( const Handle(SALOME_InteractiveObject)& IObject, 
70                                         TColStd_IndexedMapOfInteger theIndex, bool append );
71   void                   selectObjects( MapIOOfMapOfInteger theMapIO, bool append );
72
73   void                   selectedSubOwners( MapEntryOfMapOfInteger& theMap );
74 #else
75   void                   selectedObjects( QStringList&, const QString& = QString::null, const bool = true ) const;
76 #endif
77
78 signals:
79   void                   currentSelectionChanged();
80
81 private:
82   virtual void           selectionChanged( SUIT_Selector* );
83
84 private:
85   LightApp_Application* myApp;
86 };
87
88 #endif