Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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/ or email : webmaster.salome@opencascade.com
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 /*!
38   \class OB_ListView
39   Special list view for ObjectBrowser.
40   Allows drag-n-drop, filtering of selected objects, column management.
41 */
42 class OB_EXPORT OB_ListView : public QtxListView
43 {
44   Q_OBJECT
45
46 public:
47   OB_ListView( QWidget* = 0, const char* = 0, WFlags = 0 );
48   OB_ListView( const int, QWidget* = 0, const char* = 0, WFlags = 0 );
49   virtual ~OB_ListView();
50
51   OB_Filter*              filter() const;
52   void                    setFilter( OB_Filter* );
53
54   bool                    isOk( QListViewItem* ) const;
55   virtual void            setColumnWidth( int, int );
56   int                     columnMaxWidth( const int ) const;
57   void                    setColumnMaxWidth( const int, const int );
58   double                  columnMaxRatio( const int ) const;
59   void                    setColumnMaxRatio( const int, const double );
60
61 signals:
62   void                    dropped( QPtrList<QListViewItem>, QListViewItem*, int );
63
64 protected:
65   virtual QDragObject*    dragObject();
66   virtual void            dropEvent( QDropEvent* );
67   virtual void            dragMoveEvent( QDragMoveEvent* );
68   virtual void            dragEnterEvent( QDragEnterEvent* );
69
70   virtual void            keyPressEvent( QKeyEvent* );
71
72 private:
73   void                    updateHeader();
74   QListViewItem*          dropItem( QDropEvent* ) const;
75   SUIT_DataObject*        dataObject( QListViewItem* ) const;
76   bool                    isDropAccepted( QListViewItem* ) const;
77   bool                    isDropAccepted( QListViewItem*, QListViewItem* ) const;
78
79 protected:
80   QPtrList<QListViewItem> myItems;
81   OB_Filter*              myFilter;
82   QMap<int,int>           myMaxColWidth;
83   QMap<int,double>        myMaxColRatio;
84 };
85
86 #ifdef WIN32
87 #pragma warning( default:4251 )
88 #endif
89
90 #endif