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.5 1995/05/19 23:15:33 eiriken 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(); void insert( QButton *, int id=-1 ); void remove( QButton * ); signals: void clicked( int id ); protected slots: void buttonClicked(); private: QButtonList *buttons; }; #endif // QBTTNGRP_H