From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/buttongroups-example.html | 122 ++++++++++++++++++------------------- 1 file changed, 61 insertions(+), 61 deletions(-) (limited to 'doc/html/buttongroups-example.html') diff --git a/doc/html/buttongroups-example.html b/doc/html/buttongroups-example.html index 71fc0fee9..a6937c542 100644 --- a/doc/html/buttongroups-example.html +++ b/doc/html/buttongroups-example.html @@ -50,21 +50,21 @@ different kinds of buttons (checkboxes, radiobuttons, pushbuttons, etc.). #ifndef BUTTONS_GROUPS_H #define BUTTONS_GROUPS_H -#include <qwidget.h> +#include <ntqwidget.h> class TQCheckBox; class TQRadioButton; -class ButtonsGroups : public TQWidget +class ButtonsGroups : public TQWidget { Q_OBJECT public: - ButtonsGroups( TQWidget *parent = 0, const char *name = 0 ); + ButtonsGroups( TQWidget *parent = 0, const char *name = 0 ); protected: - TQCheckBox *state; - TQRadioButton *rb21, *rb22, *rb23; + TQCheckBox *state; + TQRadioButton *rb21, *rb22, *rb23; protected slots: void slotChangeGrp3State(); @@ -88,13 +88,13 @@ protected slots: #include "buttongroups.h" -#include <qpopupmenu.h> -#include <qbuttongroup.h> -#include <qlayout.h> -#include <qradiobutton.h> -#include <qcheckbox.h> -#include <qgroupbox.h> -#include <qpushbutton.h> +#include <ntqpopupmenu.h> +#include <ntqbuttongroup.h> +#include <ntqlayout.h> +#include <ntqradiobutton.h> +#include <ntqcheckbox.h> +#include <ntqgroupbox.h> +#include <ntqpushbutton.h> /* * Constructor @@ -102,8 +102,8 @@ protected slots: * Creates all child widgets of the ButtonGroups window */ -ButtonsGroups::ButtonsGroups( TQWidget *parent, const char *name ) - : TQWidget( parent, name ) +ButtonsGroups::ButtonsGroups( TQWidget *parent, const char *name ) + : TQWidget( parent, name ) { // Create Widgets which allow easy layouting TQVBoxLayout *vbox = new TQVBoxLayout( this, 11, 6 ); @@ -113,76 +113,76 @@ protected slots: // ------- first group // Create an exclusive button group - TQButtonGroup *bgrp1 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 1 (exclusive)", this); + TQButtonGroup *bgrp1 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 1 (exclusive)", this); box1->addWidget( bgrp1 ); - bgrp1->setExclusive( TRUE ); + bgrp1->setExclusive( TRUE ); // insert 3 radiobuttons - TQRadioButton *rb11 = new TQRadioButton( "&Radiobutton 1", bgrp1 ); - rb11->setChecked( TRUE ); - (void)new TQRadioButton( "R&adiobutton 2", bgrp1 ); - (void)new TQRadioButton( "Ra&diobutton 3", bgrp1 ); + TQRadioButton *rb11 = new TQRadioButton( "&Radiobutton 1", bgrp1 ); + rb11->setChecked( TRUE ); + (void)new TQRadioButton( "R&adiobutton 2", bgrp1 ); + (void)new TQRadioButton( "Ra&diobutton 3", bgrp1 ); // ------- second group // Create a non-exclusive buttongroup - TQButtonGroup *bgrp2 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 2 (non-exclusive)", this ); + TQButtonGroup *bgrp2 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 2 (non-exclusive)", this ); box1->addWidget( bgrp2 ); - bgrp2->setExclusive( FALSE ); + bgrp2->setExclusive( FALSE ); // insert 3 checkboxes - (void)new TQCheckBox( "&Checkbox 1", bgrp2 ); - TQCheckBox *cb12 = new TQCheckBox( "C&heckbox 2", bgrp2 ); - cb12->setChecked( TRUE ); - TQCheckBox *cb13 = new TQCheckBox( "Triple &State Button", bgrp2 ); - cb13->setTristate( TRUE ); - cb13->setChecked( TRUE ); + (void)new TQCheckBox( "&Checkbox 1", bgrp2 ); + TQCheckBox *cb12 = new TQCheckBox( "C&heckbox 2", bgrp2 ); + cb12->setChecked( TRUE ); + TQCheckBox *cb13 = new TQCheckBox( "Triple &State Button", bgrp2 ); + cb13->setTristate( TRUE ); + cb13->setChecked( TRUE ); // ------------ third group // create a buttongroup which is exclusive for radiobuttons and non-exclusive for all other buttons - TQButtonGroup *bgrp3 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 3 (Radiobutton-exclusive)", this ); + TQButtonGroup *bgrp3 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Button Group 3 (Radiobutton-exclusive)", this ); box2->addWidget( bgrp3 ); - bgrp3->setRadioButtonExclusive( TRUE ); + bgrp3->setRadioButtonExclusive( TRUE ); // insert three radiobuttons - rb21 = new TQRadioButton( "Rad&iobutton 1", bgrp3 ); - rb22 = new TQRadioButton( "Radi&obutton 2", bgrp3 ); - rb23 = new TQRadioButton( "Radio&button 3", bgrp3 ); - rb23->setChecked( TRUE ); + rb21 = new TQRadioButton( "Rad&iobutton 1", bgrp3 ); + rb22 = new TQRadioButton( "Radi&obutton 2", bgrp3 ); + rb23 = new TQRadioButton( "Radio&button 3", bgrp3 ); + rb23->setChecked( TRUE ); // insert a checkbox... - state = new TQCheckBox( "E&nable Radiobuttons", bgrp3 ); - state->setChecked( TRUE ); + state = new TQCheckBox( "E&nable Radiobuttons", bgrp3 ); + state->setChecked( TRUE ); // ...and connect its SIGNAL clicked() with the SLOT slotChangeGrp3State() - connect( state, SIGNAL( clicked() ), this, SLOT( slotChangeGrp3State() ) ); + connect( state, SIGNAL( clicked() ), this, SLOT( slotChangeGrp3State() ) ); // ------------ fourth group // create a groupbox which layouts its childs in a columns - TQGroupBox *bgrp4 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Groupbox with normal buttons", this ); + TQGroupBox *bgrp4 = new TQButtonGroup( 1, TQGroupBox::Horizontal, "Groupbox with normal buttons", this ); box2->addWidget( bgrp4 ); // insert four pushbuttons... - (void)new TQPushButton( "&Push Button", bgrp4, "push" ); + (void)new TQPushButton( "&Push Button", bgrp4, "push" ); // now make the second one a toggle button - TQPushButton *tb2 = new TQPushButton( "&Toggle Button", bgrp4, "toggle" ); - tb2->setToggleButton( TRUE ); - tb2->setOn( TRUE ); + TQPushButton *tb2 = new TQPushButton( "&Toggle Button", bgrp4, "toggle" ); + tb2->setToggleButton( TRUE ); + tb2->setOn( TRUE ); // ... and make the third one a flat button - TQPushButton *tb3 = new TQPushButton( "&Flat Button", bgrp4, "flat" ); - tb3->setFlat(TRUE); + TQPushButton *tb3 = new TQPushButton( "&Flat Button", bgrp4, "flat" ); + tb3->setFlat(TRUE); // .. and the fourth a button with a menu - TQPushButton *tb4 = new TQPushButton( "Popup Button", bgrp4, "popup" ); - TQPopupMenu *menu = new TQPopupMenu(tb4); - menu->insertItem("Item1", 0); - menu->insertItem("Item2", 1); - menu->insertItem("Item3", 2); - menu->insertItem("Item4", 3); - tb4->setPopup(menu); + TQPushButton *tb4 = new TQPushButton( "Popup Button", bgrp4, "popup" ); + TQPopupMenu *menu = new TQPopupMenu(tb4); + menu->insertItem("Item1", 0); + menu->insertItem("Item2", 1); + menu->insertItem("Item3", 2); + menu->insertItem("Item4", 3); + tb4->setPopup(menu); } /* @@ -193,9 +193,9 @@ protected slots: void ButtonsGroups::slotChangeGrp3State() { - rb21->setEnabled( state->isChecked() ); - rb22->setEnabled( state->isChecked() ); - rb23->setEnabled( state->isChecked() ); + rb21->setEnabled( state->isChecked() ); + rb22->setEnabled( state->isChecked() ); + rb23->setEnabled( state->isChecked() ); } @@ -212,19 +212,19 @@ void ButtonsGroups::slotChangeGrp3State() *****************************************************************************/ #include "buttongroups.h" -#include <qapplication.h> +#include <ntqapplication.h> int main( int argc, char **argv ) { - TQApplication a( argc, argv ); + TQApplication a( argc, argv ); ButtonsGroups buttonsgroups; - buttonsgroups.resize( 500, 250 ); - buttonsgroups.setCaption( "TQt Example - Buttongroups" ); - a.setMainWidget( &buttonsgroups ); - buttonsgroups.show(); + buttonsgroups.resize( 500, 250 ); + buttonsgroups.setCaption( "TQt Example - Buttongroups" ); + a.setMainWidget( &buttonsgroups ); + buttonsgroups.show(); - return a.exec(); + return a.exec(); } -- cgit v1.2.3