From 82ecd83484c9fa1ede059986ab771e74e33e68ef Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 16 Aug 2024 19:11:00 +0900 Subject: Rename layout nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/wizard-example.html | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'doc/html/wizard-example.html') diff --git a/doc/html/wizard-example.html b/doc/html/wizard-example.html index 196c07b19..143b098a2 100644 --- a/doc/html/wizard-example.html +++ b/doc/html/wizard-example.html @@ -71,7 +71,7 @@ protected: void setupPage2(); void setupPage3(); - TQHBox *page1, *page2, *page3; + TQHBox *page1, *page2, *page3; TQLineEdit *key, *firstName, *lastName, *address, *phone, *email; TQLabel *lKey, *lFirstName, *lLastName, *lAddress, *lPhone, *lEmail; @@ -99,8 +99,8 @@ protected slots: #include "wizard.h" #include <tqwidget.h> -#include <ntqhbox.h> -#include <ntqvbox.h> +#include <tqhbox.h> +#include <tqvbox.h> #include <tqlabel.h> #include <tqlineedit.h> #include <tqpushbutton.h> @@ -119,8 +119,8 @@ protected slots: 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 ); @@ -131,9 +131,9 @@ void Wizard::setupPage1() "consists of 4 digits" ); 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 ); @@ -152,8 +152,8 @@ void Wizard::setupPage1() 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 ); @@ -166,13 +166,13 @@ void Wizard::setupPage2() "and E-Mail.\n" ); info->setMaximumWidth( info->sizeHint().width() ); - TQVBox *page = new TQVBox( page2 ); + 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 ); + 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 ); @@ -211,8 +211,8 @@ void Wizard::setupPage2() 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 ); @@ -227,14 +227,14 @@ void Wizard::setupPage3() info->setAlignment( AlignTop|AlignLeft ); info->setMaximumWidth( info->sizeHint().width() ); - TQVBox *page = new TQVBox( page3 ); + 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 ); + 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 ); -- cgit v1.2.1