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.3 1995/05/14 21:34:49 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 ); const char *title() const { return str; } void setTitle( const char * ); int alignment() const { return align; } void setAlignment( int ); protected: void paintEvent( QPaintEvent * ); private: QString str; int align; }; #endif // QGRPBOX_H