Salome HOME
Join modifications from branch BR_3_1_0deb
[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   virtual void            setColumnWidth( int, int );
51   int                     columnMaxWidth( const int ) const;
52   void                    setColumnMaxWidth( const int, const int );
53   double                  columnMaxRatio( const int ) const;
54   void                    setColumnMaxRatio( const int, const double );
55
56 signals:
57   void                    dropped( QPtrList<QListViewItem>, QListViewItem*, int );
58
59 protected:
60   virtual QDragObject*    dragObject();
61   virtual void            dropEvent( QDropEvent* );
62   virtual void            dragMoveEvent( QDragMoveEvent* );
63   virtual void            dragEnterEvent( QDragEnterEvent* );
64
65   virtual void            keyPressEvent( QKeyEvent* );
66
67 private:
68   void                    updateHeader();
69   QListViewItem*          dropItem( QDropEvent* ) const;
70   SUIT_DataObject*        dataObject( QListViewItem* ) const;
71   bool                    isDropAccepted( QListViewItem* ) const;
72   bool                    isDropAccepted( QListViewItem*, QListViewItem* ) const;
73
74 protected:
75   QPtrList<QListViewItem> myItems;
76   OB_Filter*              myFilter;
77   QMap<int,int>           myMaxColWidth;
78   QMap<int,double>        myMaxColRatio;
79 };
80
81 #ifdef WIN32
82 #pragma warning( default:4251 )
83 #endif
84
85 #endif