Salome HOME
99404c6cb235171b16577a344f8161ed273937a7
[modules/gui.git] / src / Qtx / QtxGroupBox.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 // File:      QtxGroupBox.h
20 // Author:    Sergey TELKOV
21
22 #ifndef QTXGROUPBOX_H
23 #define QTXGROUPBOX_H
24
25 #include "Qtx.h"
26
27 #include <qgroupbox.h>
28 #include <qwidgetlist.h>
29
30 class QTX_EXPORT QtxGroupBox : public QGroupBox
31 {
32   Q_OBJECT
33
34 public:
35   QtxGroupBox( QWidget* = 0, const char* = 0 );
36   QtxGroupBox( const QString&, QWidget* = 0, const char* = 0 );
37   QtxGroupBox( int, Orientation, QWidget* = 0, const char* = 0 );
38   QtxGroupBox( int, Orientation, const QString&, QWidget* = 0, const char* = 0 );
39   virtual ~QtxGroupBox();
40
41 #if QT_VER < 3
42   int           insideMargin() const;
43   int           insideSpacing() const;
44   void          setInsideMargin( int );
45   void          setInsideSpacing( int );
46 #endif
47
48   virtual void  setAlignment( int );
49   virtual void  setTitle( const QString& );
50   virtual void  setColumnLayout( int, Orientation );
51
52   virtual void  insertTitleWidget( QWidget* );
53   virtual void  removeTitleWidget( QWidget* );
54
55   virtual void  show();
56   virtual void  update();
57
58   void          adjustInsideMargin();
59
60   virtual QSize sizeHint() const;
61   virtual QSize minimumSizeHint() const;
62
63   virtual bool  eventFilter( QObject*, QEvent* );
64
65 protected:
66   virtual void  frameChanged();
67   virtual void  childEvent( QChildEvent* );
68   virtual void  resizeEvent( QResizeEvent* );
69   virtual void  customEvent( QCustomEvent* );
70
71 private:
72   void          initialize();
73   void          updateTitle();
74   QSize         titleSize() const;
75
76 private:
77   QWidget*      myContainer;
78 };
79
80 #endif