Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Qtx / QtxTable.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:      QtxTable.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef QTXTABLE_H
26 #define QTXTABLE_H
27
28 #include "Qtx.h"
29
30 #include <qtable.h>
31
32 #ifndef QT_NO_TABLE
33
34 class QHeader;
35
36 class QTX_EXPORT QtxTable : public QTable
37 {
38   Q_OBJECT
39
40   class HeaderEditor;
41
42 public:
43   QtxTable( QWidget* = 0, const char* = 0 );
44   QtxTable( int, int, QWidget* = 0, const char* = 0 );
45   virtual ~QtxTable();
46
47   bool             headerEditable( Orientation ) const;
48
49   bool             editHeader( Orientation, const int );
50   void             endEditHeader( const bool = true );
51
52   virtual bool     eventFilter( QObject*, QEvent* );
53
54 signals:
55   void             headerEdited( QHeader*, int );
56   void             headerEdited( Orientation, int );
57
58 public slots:
59   virtual void     hide();
60   virtual void     setHeaderEditable( Orientation, bool );
61
62 private slots:
63   void             onScrollBarMoved( int );
64   void             onHeaderSizeChange( int, int, int );
65
66 protected:
67   virtual void     resizeEvent( QResizeEvent* );
68
69   virtual bool     beginHeaderEdit( Orientation, const int );
70   virtual void     endHeaderEdit( const bool = true );
71   bool             isHeaderEditing() const;
72   virtual QWidget* createHeaderEditor( QHeader*, const int, const bool = true );
73   virtual void     setHeaderContentFromEditor( QHeader*, const int, QWidget* );
74
75   QHeader*         header( Orientation o ) const;
76
77 private:
78   void             updateHeaderEditor();
79   void             beginHeaderEdit( Orientation, const QPoint& );
80   QRect            headerSectionRect( QHeader*, const int ) const;
81
82 private:
83   QWidget*         myHeaderEditor;
84   QHeader*         myEditedHeader;
85   int              myEditedSection;
86   QMap<int, bool>  myHeaderEditable;
87 };
88
89 #endif
90
91 #endif // QTXTABLE_H