This is the verbatim text of the qbttngrp.h include file. It is is provided only for illustration; the copyright remains with Troll Tech.
/**************************************************************************** ** $Id: qbttngrp.h,v 1.7 1995/06/06 02:17:05 hanord Exp $ ** ** Definition of QButtonGroup class ** ** Author : Eirik Eng ** Created : 950130 ** ** Copyright (C) 1995 by Troll Tech AS. All rights reserved. ** *****************************************************************************/ #ifndef QBTTNGRP_H #define QBTTNGRP_H #include "qgrpbox.h" class QButton; class QButtonList; class QButtonGroup : public QGroupBox { Q_OBJECT public: QButtonGroup( QWidget *parent=0, const char *name=0 ); QButtonGroup( const char *title, QWidget *parent=0, const char *name=0 ); ~QButtonGroup(); int insert( QButton *, int id=-1 ); void remove( QButton * ); signals: void clicked( int id ); protected slots: void buttonClicked(); private: void init(); QButtonList *buttons; }; #endif // QBTTNGRP_H