Salome HOME
Copyrights update
[modules/gui.git] / src / SUIT / SUIT_Selector.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 SUIT_SELECTOR_H
20 #define SUIT_SELECTOR_H
21
22 #include "SUIT.h"
23
24 #include <qvaluelist.h>
25 #include <qobject.h>
26
27 class SUIT_SelectionMgr;
28 class SUIT_DataOwnerPtrList;
29
30 class SUIT_EXPORT SUIT_Selector : public QObject
31 {
32   Q_OBJECT
33 public:
34   SUIT_Selector( SUIT_SelectionMgr*, QObject* = 0 );
35   virtual ~SUIT_Selector();
36
37   virtual QString    type() const = 0;
38
39   SUIT_SelectionMgr* selectionMgr() const;
40
41   bool               isEnabled() const;
42   virtual void       setEnabled( const bool );
43
44   bool               autoBlock() const;
45   virtual void       setAutoBlock( const bool );
46
47   void               selected( SUIT_DataOwnerPtrList& ) const;
48   void               setSelected( const SUIT_DataOwnerPtrList& );
49
50   bool               hasSelectionMode( const int ) const;
51   void               selectionModes( QValueList<int>& ) const;
52
53 protected:
54   void               selectionChanged();
55   virtual void       getSelection( SUIT_DataOwnerPtrList& ) const = 0;
56   virtual void       setSelection( const SUIT_DataOwnerPtrList& ) = 0;
57
58 private:
59   bool               myBlock;
60   SUIT_SelectionMgr* mySelMgr;
61   bool               myEnabled;
62   bool               myAutoBlock;
63 };
64
65 #endif