26 #include "buttongroup.moc"
30 : TQButtonGroup(parent, name)
32 connect( this, TQT_SIGNAL(clicked( int)), TQT_SIGNAL( buttonSet( int)));
36 : TQButtonGroup(title, parent, name)
38 connect( this, TQT_SIGNAL(clicked( int)), TQT_SIGNAL( buttonSet( int)));
42 : TQButtonGroup(strips, orient, parent, name)
44 connect( this, TQT_SIGNAL(clicked( int)), TQT_SIGNAL( buttonSet( int)));
48 : TQButtonGroup(strips, orient, title, parent, name)
50 connect( this, TQT_SIGNAL(clicked( int)), TQT_SIGNAL( buttonSet( int)));
59 id = TQButtonGroup::insert(button, id);
60 connect(button, TQT_SIGNAL(toggled( bool)), TQT_SLOT(slotButtonToggled( bool)));
67 void ButtonGroup::slotButtonToggled( bool)
|