This is the verbatim text of the qgrpbox.h include file. It is is provided only for illustration; the copyright remains with Troll Tech.
/********************************************************************** ** $Id: qgrpbox.h,v 1.4 1995/06/05 19:27:26 hanord Exp $ ** ** Definition of QGroupBox widget class ** ** Author : Haavard Nord ** Created : 950203 ** ** Copyright (C) 1995 by Troll Tech AS. All rights reserved. ** ***********************************************************************/ #ifndef QGRPBOX_H #define QGRPBOX_H #include "qframe.h" class QGroupBox : public QFrame { Q_OBJECT public: QGroupBox( QWidget *parent=0, const char *name=0 ); QGroupBox( const char *title, QWidget *parent=0, const char *name=0 ); const char *title() const { return str; } void setTitle( const char * ); int alignment() const { return align; } void setAlignment( int ); protected: void paintEvent( QPaintEvent * ); private: void init(); QString str; int align; }; #endif // QGRPBOX_H