Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / SUIT / SUIT_DataOwner.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/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef SUIT_DATAOWNER_H
20 #define SUIT_DATAOWNER_H
21
22 #include "SUIT_SmartPtr.h"
23
24 #include <qvaluelist.h>
25 #include <qmap.h>
26
27 #ifdef WIN32
28 #pragma warning( disable:4251 )
29 #pragma warning( disable:4275 )
30 #endif
31
32 /*!
33   \class SUIT_DataOwner
34   Represents abstract selected objects.
35   Used for selection synchronizing between windows(e.g. ObjectBrowser) and viewers
36 */
37
38 class SUIT_EXPORT SUIT_DataOwner : public RefCount 
39 {
40 public:
41   SUIT_DataOwner();//!< constructor
42   virtual ~SUIT_DataOwner();//!< destructor
43   //! compare function
44   virtual bool isEqual( const SUIT_DataOwner& ) const = 0;
45 };
46
47 /*! \typedef SUIT_DataOwnerPtr
48  * Define smart pointer for SUIT_DataOwner object
49  */
50 typedef SMART(SUIT_DataOwner) SUIT_DataOwnerPtr;
51
52 /*! Comparing two SUIT_DataOwnerPtr objects.*/
53 bool operator==( const SUIT_DataOwnerPtr&, const SUIT_DataOwnerPtr& );
54
55 /*! \class QValueList
56  *  \brief For more documentation see <a href="http://doc.trolltech.com">QT documentation</a>.
57  * QT class
58  */
59 /*! \class SUIT_DataOwnerPtrList
60  * \brief Manage list of SUIT_DataOwnerPtr.
61  */
62 class SUIT_EXPORT SUIT_DataOwnerPtrList : public QValueList<SUIT_DataOwnerPtr> 
63 {
64 public:
65   SUIT_DataOwnerPtrList();                         //!< constructor
66   SUIT_DataOwnerPtrList( const bool skipAllEqual );//!< constructor
67   SUIT_DataOwnerPtrList( const SUIT_DataOwnerPtrList& l );                         //!< copy constructor
68   SUIT_DataOwnerPtrList( const SUIT_DataOwnerPtrList& l, const bool skipAllEqual );//!< copy constructor
69 #ifndef QT_NO_STL
70   SUIT_DataOwnerPtrList( const std::list<SUIT_DataOwnerPtr>& l );                         //!< copy constructor for STL list
71   SUIT_DataOwnerPtrList( const std::list<SUIT_DataOwnerPtr>& l, const bool skipAllEqual );//!< copy constructor for STL list
72 #endif
73
74   iterator append      ( const SUIT_DataOwnerPtr& x );//!< append function
75   void     clear       ();
76   uint     remove      (const SUIT_DataOwnerPtr& x );
77
78 private:
79   // hide this methods: only append() should be used to add items to the list
80   iterator prepend( const SUIT_DataOwnerPtr& x );//!< hide method
81   iterator insert ( iterator it, const SUIT_DataOwnerPtr& x );//!< hide method
82   void push_front ( const SUIT_DataOwnerPtr& x );//!< hide method
83   void push_back  ( const SUIT_DataOwnerPtr& x );//!< hide method
84
85 private:
86   bool                              mySkipEqual;
87   QMap<SUIT_DataOwnerPtr, iterator> myMap;
88 };
89
90 #ifdef WIN32
91 #pragma warning( default:4251 )
92 #pragma warning( default:4275 )
93 #endif
94
95 #endif