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/wizard-wizard-cpp.html | 304 ++++++++++++++++++++-------------------- 1 file changed, 152 insertions(+), 152 deletions(-) (limited to 'doc/html/wizard-wizard-cpp.html') diff --git a/doc/html/wizard-wizard-cpp.html b/doc/html/wizard-wizard-cpp.html index 621858f39..a18e35217 100644 --- a/doc/html/wizard-wizard-cpp.html +++ b/doc/html/wizard-wizard-cpp.html @@ -44,220 +44,220 @@ body { background: #ffffff; color: black; } #include "wizard.h" -#include <qwidget.h> -#include <qhbox.h> -#include <qvbox.h> -#include <qlabel.h> -#include <qlineedit.h> -#include <qpushbutton.h> -#include <qvalidator.h> -#include <qapplication.h> - -Wizard::Wizard( TQWidget *parent, const char *name ) - : TQWizard( parent, name, TRUE ) +#include <ntqwidget.h> +#include <ntqhbox.h> +#include <ntqvbox.h> +#include <ntqlabel.h> +#include <ntqlineedit.h> +#include <ntqpushbutton.h> +#include <ntqvalidator.h> +#include <ntqapplication.h> + +Wizard::Wizard( TQWidget *parent, const char *name ) + : TQWizard( parent, name, TRUE ) { setupPage1(); setupPage2(); setupPage3(); - key->setFocus(); + key->setFocus(); } void Wizard::setupPage1() { - page1 = new TQHBox( this ); - page1->setSpacing(8); + page1 = new TQHBox( this ); + page1->setSpacing(8); - TQLabel *info = new TQLabel( page1 ); - info->setMargin( 11 ); - info->setPalette( yellow ); - info->setText( "Enter your personal\n" + TQLabel *info = new TQLabel( page1 ); + info->setMargin( 11 ); + info->setPalette( yellow ); + info->setText( "Enter your personal\n" "key here.\n\n" "Your personal key\n" "consists of 4 digits" ); - info->setMaximumWidth( info->sizeHint().width() ); + info->setMaximumWidth( info->sizeHint().width() ); - TQVBox *page = new TQVBox( page1 ); + TQVBox *page = new TQVBox( page1 ); - TQHBox *row1 = new TQHBox( page ); + TQHBox *row1 = new TQHBox( page ); - (void)new TQLabel( "Key:", row1 ); + (void)new TQLabel( "Key:", row1 ); - key = new TQLineEdit( row1 ); - key->setMaxLength( 4 ); - key->setValidator( new TQIntValidator( 1000, 9999, key ) ); + key = new TQLineEdit( row1 ); + key->setMaxLength( 4 ); + key->setValidator( new TQIntValidator( 1000, 9999, key ) ); - connect( key, SIGNAL( textChanged( const TQString & ) ), - this, SLOT( keyChanged( const TQString & ) ) ); + connect( key, SIGNAL( textChanged( const TQString & ) ), + this, SLOT( keyChanged( const TQString & ) ) ); - addPage( page1, "Personal Key" ); + addPage( page1, "Personal Key" ); - setNextEnabled( page1, FALSE ); - setHelpEnabled( page1, FALSE ); + setNextEnabled( page1, FALSE ); + setHelpEnabled( page1, FALSE ); } void Wizard::setupPage2() { - page2 = new TQHBox( this ); - page2->setSpacing(8); + page2 = new TQHBox( this ); + page2->setSpacing(8); - TQLabel *info = new TQLabel( page2 ); - info->setMargin( 11 ); - info->setPalette( yellow ); - info->setText( "\n" + TQLabel *info = new TQLabel( page2 ); + info->setMargin( 11 ); + info->setPalette( yellow ); + info->setText( "\n" "Enter your personal\n" "data here.\n\n" "The required fields are\n" "First Name, Last Name \n" "and E-Mail.\n" ); - info->setMaximumWidth( info->sizeHint().width() ); - - TQVBox *page = new TQVBox( page2 ); - - TQHBox *row1 = new TQHBox( page ); - TQHBox *row2 = new TQHBox( page ); - TQHBox *row3 = new TQHBox( page ); - TQHBox *row4 = new TQHBox( page ); - TQHBox *row5 = new TQHBox( page ); - - TQLabel *label1 = new TQLabel( " First Name: ", row1 ); - label1->setAlignment( TQt::AlignVCenter ); - TQLabel *label2 = new TQLabel( " Last Name: ", row2 ); - label2->setAlignment( TQt::AlignVCenter ); - TQLabel *label3 = new TQLabel( " Address: ", row3 ); - label3->setAlignment( TQt::AlignVCenter ); - TQLabel *label4 = new TQLabel( " Phone Number: ", row4 ); - label4->setAlignment( TQt::AlignVCenter ); - TQLabel *label5 = new TQLabel( " E-Mail: ", row5 ); - label5->setAlignment( TQt::AlignVCenter ); - - label1->setMinimumWidth( label4->sizeHint().width() ); - label2->setMinimumWidth( label4->sizeHint().width() ); - label3->setMinimumWidth( label4->sizeHint().width() ); - label4->setMinimumWidth( label4->sizeHint().width() ); - label5->setMinimumWidth( label4->sizeHint().width() ); - - firstName = new TQLineEdit( row1 ); - lastName = new TQLineEdit( row2 ); - address = new TQLineEdit( row3 ); - phone = new TQLineEdit( row4 ); - email = new TQLineEdit( row5 ); - - connect( firstName, SIGNAL( textChanged( const TQString & ) ), - this, SLOT( dataChanged( const TQString & ) ) ); - connect( lastName, SIGNAL( textChanged( const TQString & ) ), - this, SLOT( dataChanged( const TQString & ) ) ); - connect( email, SIGNAL( textChanged( const TQString & ) ), - this, SLOT( dataChanged( const TQString & ) ) ); - - addPage( page2, "Personal Data" ); - - setHelpEnabled( page2, FALSE ); + info->setMaximumWidth( info->sizeHint().width() ); + + TQVBox *page = new TQVBox( page2 ); + + TQHBox *row1 = new TQHBox( page ); + TQHBox *row2 = new TQHBox( page ); + TQHBox *row3 = new TQHBox( page ); + TQHBox *row4 = new TQHBox( page ); + TQHBox *row5 = new TQHBox( page ); + + TQLabel *label1 = new TQLabel( " First Name: ", row1 ); + label1->setAlignment( TQt::AlignVCenter ); + TQLabel *label2 = new TQLabel( " Last Name: ", row2 ); + label2->setAlignment( TQt::AlignVCenter ); + TQLabel *label3 = new TQLabel( " Address: ", row3 ); + label3->setAlignment( TQt::AlignVCenter ); + TQLabel *label4 = new TQLabel( " Phone Number: ", row4 ); + label4->setAlignment( TQt::AlignVCenter ); + TQLabel *label5 = new TQLabel( " E-Mail: ", row5 ); + label5->setAlignment( TQt::AlignVCenter ); + + label1->setMinimumWidth( label4->sizeHint().width() ); + label2->setMinimumWidth( label4->sizeHint().width() ); + label3->setMinimumWidth( label4->sizeHint().width() ); + label4->setMinimumWidth( label4->sizeHint().width() ); + label5->setMinimumWidth( label4->sizeHint().width() ); + + firstName = new TQLineEdit( row1 ); + lastName = new TQLineEdit( row2 ); + address = new TQLineEdit( row3 ); + phone = new TQLineEdit( row4 ); + email = new TQLineEdit( row5 ); + + connect( firstName, SIGNAL( textChanged( const TQString & ) ), + this, SLOT( dataChanged( const TQString & ) ) ); + connect( lastName, SIGNAL( textChanged( const TQString & ) ), + this, SLOT( dataChanged( const TQString & ) ) ); + connect( email, SIGNAL( textChanged( const TQString & ) ), + this, SLOT( dataChanged( const TQString & ) ) ); + + addPage( page2, "Personal Data" ); + + setHelpEnabled( page2, FALSE ); } void Wizard::setupPage3() { - page3 = new TQHBox( this ); - page3->setSpacing(8); + page3 = new TQHBox( this ); + page3->setSpacing(8); - TQLabel *info = new TQLabel( page3 ); - info->setPalette( yellow ); - info->setText( "\n" + TQLabel *info = new TQLabel( page3 ); + info->setPalette( yellow ); + info->setText( "\n" "Look here to see of\n" "the data you entered\n" "is correct. To confirm,\n" "press the [Finish] button\n" "else go back to correct\n" "mistakes." ); - info->setMargin( 11 ); - info->setAlignment( AlignTop|AlignLeft ); - info->setMaximumWidth( info->sizeHint().width() ); - - TQVBox *page = new TQVBox( page3 ); - - TQHBox *row1 = new TQHBox( page ); - TQHBox *row2 = new TQHBox( page ); - TQHBox *row3 = new TQHBox( page ); - TQHBox *row4 = new TQHBox( page ); - TQHBox *row5 = new TQHBox( page ); - TQHBox *row6 = new TQHBox( page ); - - TQLabel *label1 = new TQLabel( " Personal Key: ", row1 ); - label1->setAlignment( TQt::AlignVCenter ); - TQLabel *label2 = new TQLabel( " First Name: ", row2 ); - label2->setAlignment( TQt::AlignVCenter ); - TQLabel *label3 = new TQLabel( " Last Name: ", row3 ); - label3->setAlignment( TQt::AlignVCenter ); - TQLabel *label4 = new TQLabel( " Address: ", row4 ); - label4->setAlignment( TQt::AlignVCenter ); - TQLabel *label5 = new TQLabel( " Phone Number: ", row5 ); - label5->setAlignment( TQt::AlignVCenter ); - TQLabel *label6 = new TQLabel( " E-Mail: ", row6 ); - label6->setAlignment( TQt::AlignVCenter ); - - label1->setMinimumWidth( label1->sizeHint().width() ); - label2->setMinimumWidth( label1->sizeHint().width() ); - label3->setMinimumWidth( label1->sizeHint().width() ); - label4->setMinimumWidth( label1->sizeHint().width() ); - label5->setMinimumWidth( label1->sizeHint().width() ); - label6->setMinimumWidth( label1->sizeHint().width() ); - - lKey = new TQLabel( row1 ); - lFirstName = new TQLabel( row2 ); - lLastName = new TQLabel( row3 ); - lAddress = new TQLabel( row4 ); - lPhone = new TQLabel( row5 ); - lEmail = new TQLabel( row6 ); - - addPage( page3, "Finish" ); - - setFinishEnabled( page3, TRUE ); - setHelpEnabled( page3, FALSE ); + info->setMargin( 11 ); + info->setAlignment( AlignTop|AlignLeft ); + info->setMaximumWidth( info->sizeHint().width() ); + + TQVBox *page = new TQVBox( page3 ); + + TQHBox *row1 = new TQHBox( page ); + TQHBox *row2 = new TQHBox( page ); + TQHBox *row3 = new TQHBox( page ); + TQHBox *row4 = new TQHBox( page ); + TQHBox *row5 = new TQHBox( page ); + TQHBox *row6 = new TQHBox( page ); + + TQLabel *label1 = new TQLabel( " Personal Key: ", row1 ); + label1->setAlignment( TQt::AlignVCenter ); + TQLabel *label2 = new TQLabel( " First Name: ", row2 ); + label2->setAlignment( TQt::AlignVCenter ); + TQLabel *label3 = new TQLabel( " Last Name: ", row3 ); + label3->setAlignment( TQt::AlignVCenter ); + TQLabel *label4 = new TQLabel( " Address: ", row4 ); + label4->setAlignment( TQt::AlignVCenter ); + TQLabel *label5 = new TQLabel( " Phone Number: ", row5 ); + label5->setAlignment( TQt::AlignVCenter ); + TQLabel *label6 = new TQLabel( " E-Mail: ", row6 ); + label6->setAlignment( TQt::AlignVCenter ); + + label1->setMinimumWidth( label1->sizeHint().width() ); + label2->setMinimumWidth( label1->sizeHint().width() ); + label3->setMinimumWidth( label1->sizeHint().width() ); + label4->setMinimumWidth( label1->sizeHint().width() ); + label5->setMinimumWidth( label1->sizeHint().width() ); + label6->setMinimumWidth( label1->sizeHint().width() ); + + lKey = new TQLabel( row1 ); + lFirstName = new TQLabel( row2 ); + lLastName = new TQLabel( row3 ); + lAddress = new TQLabel( row4 ); + lPhone = new TQLabel( row5 ); + lEmail = new TQLabel( row6 ); + + addPage( page3, "Finish" ); + + setFinishEnabled( page3, TRUE ); + setHelpEnabled( page3, FALSE ); } -void Wizard::showPage( TQWidget* page ) +void Wizard::showPage( TQWidget* page ) { if ( page == page1 ) { } else if ( page == page2 ) { } else if ( page == page3 ) { - lKey->setText( key->text() ); - lFirstName->setText( firstName->text() ); - lLastName->setText( lastName->text() ); - lAddress->setText( address->text() ); - lPhone->setText( phone->text() ); - lEmail->setText( email->text() ); + lKey->setText( key->text() ); + lFirstName->setText( firstName->text() ); + lLastName->setText( lastName->text() ); + lAddress->setText( address->text() ); + lPhone->setText( phone->text() ); + lEmail->setText( email->text() ); } - TQWizard::showPage(page); + TQWizard::showPage(page); if ( page == page1 ) { - keyChanged( key->text() ); - key->setFocus(); + keyChanged( key->text() ); + key->setFocus(); } else if ( page == page2 ) { - dataChanged( firstName->text() ); - firstName->setFocus(); + dataChanged( firstName->text() ); + firstName->setFocus(); } else if ( page == page3 ) { - finishButton()->setEnabled( TRUE ); - finishButton()->setFocus(); + finishButton()->setEnabled( TRUE ); + finishButton()->setFocus(); } } -void Wizard::keyChanged( const TQString &text ) +void Wizard::keyChanged( const TQString &text ) { - TQString t = text; + TQString t = text; int p = 0; - bool on = ( key->validator()->validate(t, p) == TQValidator::Acceptable ); - nextButton()->setEnabled( on ); + bool on = ( key->validator()->validate(t, p) == TQValidator::Acceptable ); + nextButton()->setEnabled( on ); } -void Wizard::dataChanged( const TQString & ) +void Wizard::dataChanged( const TQString & ) { - if ( !firstName->text().isEmpty() && - !lastName->text().isEmpty() && - !email->text().isEmpty() ) - nextButton()->setEnabled( TRUE ); + if ( !firstName->text().isEmpty() && + !lastName->text().isEmpty() && + !email->text().isEmpty() ) + nextButton()->setEnabled( TRUE ); else - nextButton()->setEnabled( FALSE ); + nextButton()->setEnabled( FALSE ); }


-- cgit v1.2.1