Salome HOME
Copyrights update
[modules/gui.git] / src / ObjBrowser / OB_ListView.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 OB_LISTVIEW_H
20 #define OB_LISTVIEW_H
21
22 #include "OB.h"
23
24
25 #include <QtxListView.h>
26
27 #ifdef WIN32
28 #pragma warning( disable:4251 )
29 #endif
30
31 #include <qptrlist.h>
32
33 class OB_Filter;
34 class QListViewItem;
35 class SUIT_DataObject;
36
37 class OB_EXPORT OB_ListView : public QtxListView
38 {
39   Q_OBJECT
40
41 public:
42   OB_ListView( QWidget* = 0, const char* = 0, WFlags = 0 );
43   OB_ListView( const int, QWidget* = 0, const char* = 0, WFlags = 0 );
44   virtual ~OB_ListView();
45
46   OB_Filter*              filter() const;
47   void                    setFilter( OB_Filter* );
48
49   bool                    isOk( QListViewItem* ) const;
50
51 signals:
52   void                    dropped( QPtrList<QListViewItem>, QListViewItem*, int );
53
54 protected:
55   virtual QDragObject*    dragObject();
56   virtual void            dropEvent( QDropEvent* );
57   virtual void            dragMoveEvent( QDragMoveEvent* );
58   virtual void            dragEnterEvent( QDragEnterEvent* );
59
60   virtual void            keyPressEvent( QKeyEvent* );
61
62 private:
63   void                    updateHeader();
64   QListViewItem*          dropItem( QDropEvent* ) const;
65   SUIT_DataObject*        dataObject( QListViewItem* ) const;
66   bool                    isDropAccepted( QListViewItem* ) const;
67   bool                    isDropAccepted( QListViewItem*, QListViewItem* ) const;
68
69 protected:
70   QPtrList<QListViewItem> myItems;
71   OB_Filter*              myFilter;
72 };
73
74 #ifdef WIN32
75 #pragma warning( default:4251 )
76 #endif
77
78 #endif