Source Code (Use browser search to find items of interest.)

Class Index

qt'QHGroupBox (./qt-2.1.0/src/widgets/qhgroupbox.h:33)

class Q_EXPORT QHGroupBox : public QGroupBox
{
    Q_OBJECT
public:
    QHGroupBox( QWidget *parent=0, const char *name=0 );
    QHGroupBox( const QString &title, QWidget *parent=0, const char* name=0 );
   ~QHGroupBox();

private:	// Disabled copy constructor and operator=
#if defined(Q_DISABLE_COPY)
    QHGroupBox( const QHGroupBox & );
    QHGroupBox &operator=( const QHGroupBox & );
#endif
};

qt'QHGroupBox::QHGroupBox() (./qt-2.1.0/src/widgets/qhgroupbox.cpp:46)

QHGroupBox::QHGroupBox( QWidget *parent, const char *name )
    : QGroupBox( 1, Vertical /* sic! */, parent, name )
{
}

/*!
  Constructs a horizontal group box with a title.

  The \e parent and \e name arguments are passed to the QWidget constructor.
*/


qt'QHGroupBox::QHGroupBox() (./qt-2.1.0/src/widgets/qhgroupbox.cpp:57)

QHGroupBox::QHGroupBox( const QString &title, QWidget *parent,
			    const char *name )
    : QGroupBox( 1, Vertical /* sic! */, title, parent, name )
{
}

/*!
  Destructs the horizontal group box, deleting its child widgets.
*/

qt'QHGroupBox::~QHGroupBox() (./qt-2.1.0/src/widgets/qhgroupbox.cpp:66)

QHGroupBox::~QHGroupBox()
{
}