From fef846914f8db6dc117e206ef913d519bf6bb33e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 29 Jul 2024 12:43:23 +0900 Subject: Rename basic widget nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/chart-optionsform-cpp.html | 44 ++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'doc/html/chart-optionsform-cpp.html') diff --git a/doc/html/chart-optionsform-cpp.html b/doc/html/chart-optionsform-cpp.html index a38061851..2cbe58572 100644 --- a/doc/html/chart-optionsform-cpp.html +++ b/doc/html/chart-optionsform-cpp.html @@ -35,15 +35,15 @@ body { background: #ffffff; color: black; }
#include "optionsform.h"
 
 #include <ntqbuttongroup.h>
-#include <ntqcombobox.h>
+#include <tqcombobox.h>
 #include <tqfontdialog.h>
 #include <ntqframe.h>
 #include <tqimage.h>
 #include <tqlabel.h>
 #include <ntqlayout.h>
-#include <ntqpushbutton.h>
-#include <ntqradiobutton.h>
-#include <ntqspinbox.h>
+#include <tqpushbutton.h>
+#include <tqradiobutton.h>
+#include <tqspinbox.h>
 
 #include "images/options_horizontalbarchart.xpm"
 #include "images/options_piechart.xpm"
@@ -52,7 +52,7 @@ body { background: #ffffff; color: black; }
 
 OptionsForm::OptionsForm( TQWidget* parent, const char* name,
                           bool modal, WFlags f )
-    : TQDialog( parent, name, modal, f )
+    : TQDialog( parent, name, modal, f )
 {
     setCaption( "Chart -- Options" );
     resize( 320, 290 );
@@ -64,18 +64,18 @@ body { background: #ffffff; color: black; }
     chartTypeTextLabel = new TQLabel( "&Chart Type", this );
     chartTypeLayout->addWidget( chartTypeTextLabel );
 
-    chartTypeComboBox = new TQComboBox( FALSE, this );
-    chartTypeComboBox->insertItem( TQPixmap( options_piechart ), "Pie Chart" );
-    chartTypeComboBox->insertItem( TQPixmap( options_verticalbarchart ),
+    chartTypeComboBox = new TQComboBox( FALSE, this );
+    chartTypeComboBox->insertItem( TQPixmap( options_piechart ), "Pie Chart" );
+    chartTypeComboBox->insertItem( TQPixmap( options_verticalbarchart ),
                                    "Vertical Bar Chart" );
-    chartTypeComboBox->insertItem( TQPixmap( options_horizontalbarchart ),
+    chartTypeComboBox->insertItem( TQPixmap( options_horizontalbarchart ),
                                    "Horizontal Bar Chart" );
     chartTypeLayout->addWidget( chartTypeComboBox );
     optionsFormLayout->addLayout( chartTypeLayout );
 
     fontLayout = new TQHBoxLayout( 0, 0, 6 );
 
-    fontPushButton = new TQPushButton( "&Font...", this );
+    fontPushButton = new TQPushButton( "&Font...", this );
     fontLayout->addWidget( fontPushButton );
     TQSpacerItem* spacer = new TQSpacerItem( 0, 0,
                                            TQSizePolicy::Expanding,
@@ -99,14 +99,14 @@ body { background: #ffffff; color: black; }
                                         addValuesButtonGroup->layout() );
     addValuesButtonGroupLayout->setAlignment( TQt::AlignTop );
 
-    noRadioButton = new TQRadioButton( "&No", addValuesButtonGroup );
-    noRadioButton->setChecked( TRUE );
+    noRadioButton = new TQRadioButton( "&No", addValuesButtonGroup );
+    noRadioButton->setChecked( TRUE );
     addValuesButtonGroupLayout->addWidget( noRadioButton );
 
-    yesRadioButton = new TQRadioButton( "&Yes", addValuesButtonGroup );
+    yesRadioButton = new TQRadioButton( "&Yes", addValuesButtonGroup );
     addValuesButtonGroupLayout->addWidget( yesRadioButton );
 
-    asPercentageRadioButton = new TQRadioButton( "As &Percentage",
+    asPercentageRadioButton = new TQRadioButton( "As &Percentage",
                                                 addValuesButtonGroup );
     addValuesButtonGroupLayout->addWidget( asPercentageRadioButton );
     addValuesFrameLayout->addWidget( addValuesButtonGroup );
@@ -116,9 +116,9 @@ body { background: #ffffff; color: black; }
     decimalPlacesTextLabel = new TQLabel( "&Decimal Places", addValuesFrame );
     decimalPlacesLayout->addWidget( decimalPlacesTextLabel );
 
-    decimalPlacesSpinBox = new TQSpinBox( addValuesFrame );
-    decimalPlacesSpinBox->setMinValue( 0 );
-    decimalPlacesSpinBox->setMaxValue( 9 );
+    decimalPlacesSpinBox = new TQSpinBox( addValuesFrame );
+    decimalPlacesSpinBox->setMinValue( 0 );
+    decimalPlacesSpinBox->setMaxValue( 9 );
     decimalPlacesLayout->addWidget( decimalPlacesSpinBox );
 
     addValuesFrameLayout->addLayout( decimalPlacesLayout );
@@ -130,17 +130,17 @@ body { background: #ffffff; color: black; }
                               TQSizePolicy::Expanding, TQSizePolicy::Minimum );
     buttonsLayout->addItem( spacer );
 
-    okPushButton = new TQPushButton( "OK", this );
-    okPushButton->setDefault( TRUE );
+    okPushButton = new TQPushButton( "OK", this );
+    okPushButton->setDefault( TRUE );
     buttonsLayout->addWidget( okPushButton );
 
-    cancelPushButton = new TQPushButton( "Cancel", this );
+    cancelPushButton = new TQPushButton( "Cancel", this );
     buttonsLayout->addWidget( cancelPushButton );
     optionsFormLayout->addLayout( buttonsLayout );
 
     connect( fontPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( chooseFont() ) );
-    connect( okPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) );
-    connect( cancelPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( reject() ) );
+    connect( okPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) );
+    connect( cancelPushButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( reject() ) );
 
     chartTypeTextLabel->setBuddy( chartTypeComboBox );
     decimalPlacesTextLabel->setBuddy( decimalPlacesSpinBox );
-- 
cgit v1.2.3