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/chart-setdataform-cpp.html | 156 ++++++++++++++++++------------------ 1 file changed, 78 insertions(+), 78 deletions(-) (limited to 'doc/html/chart-setdataform-cpp.html') diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html index 9b400de6c..4cf004ee8 100644 --- a/doc/html/chart-setdataform-cpp.html +++ b/doc/html/chart-setdataform-cpp.html @@ -35,12 +35,12 @@ body { background: #ffffff; color: black; }
#include "setdataform.h"
 #include "chartform.h"
 
-#include <qcolordialog.h>
-#include <qcombobox.h>
-#include <qlayout.h>
-#include <qpixmap.h>
-#include <qpushbutton.h>
-#include <qtable.h>
+#include <ntqcolordialog.h>
+#include <ntqcombobox.h>
+#include <ntqlayout.h>
+#include <ntqpixmap.h>
+#include <ntqpushbutton.h>
+#include <ntqtable.h>
 
 #include "images/pattern01.xpm"
 #include "images/pattern02.xpm"
@@ -61,70 +61,70 @@ const int MAX_PATTERNS = 14;
 
 
 SetDataForm::SetDataForm( ElementVector *elements, int decimalPlaces,
-                          TQWidget* parent,  const char* name,
+                          TQWidget* parent,  const char* name,
                           bool modal, WFlags f )
-    : TQDialog( parent, name, modal, f )
+    : TQDialog( parent, name, modal, f )
 
 {
     m_elements = elements;
     m_decimalPlaces = decimalPlaces;
 
-    setCaption( "Chart -- Set Data" );
-    resize( 540, 440 );
+    setCaption( "Chart -- Set Data" );
+    resize( 540, 440 );
 
     tableButtonBox = new TQVBoxLayout( this, 11, 6, "table button box layout" );
 
-    table = new TQTable( this, "data table" );
-    table->setNumCols( 5 );
-    table->setNumRows( ChartForm::MAX_ELEMENTS );
-    table->setColumnReadOnly( 1, TRUE );
-    table->setColumnReadOnly( 2, TRUE );
-    table->setColumnReadOnly( 4, TRUE );
-    table->setColumnWidth( 0, 80 );
-    table->setColumnWidth( 1, 60 ); // Columns 1 and 4 must be equal
-    table->setColumnWidth( 2, 60 );
-    table->setColumnWidth( 3, 200 );
-    table->setColumnWidth( 4, 60 );
-    TQHeader *th = table->horizontalHeader();
-    th->setLabel( 0, "Value" );
-    th->setLabel( 1, "Color" );
-    th->setLabel( 2, "Pattern" );
-    th->setLabel( 3, "Label" );
-    th->setLabel( 4, "Color" );
+    table = new TQTable( this, "data table" );
+    table->setNumCols( 5 );
+    table->setNumRows( ChartForm::MAX_ELEMENTS );
+    table->setColumnReadOnly( 1, TRUE );
+    table->setColumnReadOnly( 2, TRUE );
+    table->setColumnReadOnly( 4, TRUE );
+    table->setColumnWidth( 0, 80 );
+    table->setColumnWidth( 1, 60 ); // Columns 1 and 4 must be equal
+    table->setColumnWidth( 2, 60 );
+    table->setColumnWidth( 3, 200 );
+    table->setColumnWidth( 4, 60 );
+    TQHeader *th = table->horizontalHeader();
+    th->setLabel( 0, "Value" );
+    th->setLabel( 1, "Color" );
+    th->setLabel( 2, "Pattern" );
+    th->setLabel( 3, "Label" );
+    th->setLabel( 4, "Color" );
     tableButtonBox->addWidget( table );
 
     buttonBox = new TQHBoxLayout( 0, 0, 6, "button box layout" );
 
-    colorPushButton = new TQPushButton( this, "color button" );
-    colorPushButton->setText( "&Color..." );
-    colorPushButton->setEnabled( FALSE );
+    colorPushButton = new TQPushButton( this, "color button" );
+    colorPushButton->setText( "&Color..." );
+    colorPushButton->setEnabled( FALSE );
     buttonBox->addWidget( colorPushButton );
 
     TQSpacerItem *spacer = new TQSpacerItem( 0, 0, TQSizePolicy::Expanding,
                                                  TQSizePolicy::Minimum );
     buttonBox->addItem( spacer );
 
-    okPushButton = new TQPushButton( this, "ok button" );
-    okPushButton->setText( "OK" );
-    okPushButton->setDefault( TRUE );
+    okPushButton = new TQPushButton( this, "ok button" );
+    okPushButton->setText( "OK" );
+    okPushButton->setDefault( TRUE );
     buttonBox->addWidget( okPushButton );
 
-    cancelPushButton = new TQPushButton( this, "cancel button" );
-    cancelPushButton->setText( "Cancel" );
-    cancelPushButton->setAccel( Key_Escape );
+    cancelPushButton = new TQPushButton( this, "cancel button" );
+    cancelPushButton->setText( "Cancel" );
+    cancelPushButton->setAccel( Key_Escape );
     buttonBox->addWidget( cancelPushButton );
 
     tableButtonBox->addLayout( buttonBox );
 
-    connect( table, SIGNAL( clicked(int,int,int,const TQPoint&) ),
+    connect( table, SIGNAL( clicked(int,int,int,const TQPoint&) ),
              this, SLOT( setColor(int,int) ) );
-    connect( table, SIGNAL( currentChanged(int,int) ),
+    connect( table, SIGNAL( currentChanged(int,int) ),
              this, SLOT( currentChanged(int,int) ) );
-    connect( table, SIGNAL( valueChanged(int,int) ),
+    connect( table, SIGNAL( valueChanged(int,int) ),
              this, SLOT( valueChanged(int,int) ) );
-    connect( colorPushButton, SIGNAL( clicked() ), this, SLOT( setColor() ) );
-    connect( okPushButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
-    connect( cancelPushButton, SIGNAL( clicked() ), this, SLOT( reject() ) );
+    connect( colorPushButton, SIGNAL( clicked() ), this, SLOT( setColor() ) );
+    connect( okPushButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
+    connect( cancelPushButton, SIGNAL( clicked() ), this, SLOT( reject() ) );
 
     TQPixmap patterns[MAX_PATTERNS];
     patterns[0]  = TQPixmap( pattern01 );
@@ -142,35 +142,35 @@ const int MAX_PATTERNS = 14;
     patterns[12] = TQPixmap( pattern13 );
     patterns[13] = TQPixmap( pattern14 );
 
-    TQRect rect = table->cellRect( 0, 1 );
-    TQPixmap pix( rect.width(), rect.height() );
+    TQRect rect = table->cellRect( 0, 1 );
+    TQPixmap pix( rect.width(), rect.height() );
 
     for ( int i = 0; i < ChartForm::MAX_ELEMENTS; ++i ) {
         Element element = (*m_elements)[i];
 
         if ( element.isValid() )
-            table->setText(
+            table->setText(
                 i, 0,
                 TQString( "%1" ).arg( element.value(), 0, 'f',
                                      m_decimalPlaces ) );
 
-        TQColor color = element.valueColor();
-        pix.fill( color );
-        table->setPixmap( i, 1, pix );
-        table->setText( i, 1, color.name() );
+        TQColor color = element.valueColor();
+        pix.fill( color );
+        table->setPixmap( i, 1, pix );
+        table->setText( i, 1, color.name() );
 
-        TQComboBox *combobox = new TQComboBox;
+        TQComboBox *combobox = new TQComboBox;
         for ( int j = 0; j < MAX_PATTERNS; ++j )
-            combobox->insertItem( patterns[j] );
-        combobox->setCurrentItem( element.valuePattern() - 1 );
-        table->setCellWidget( i, 2, combobox );
+            combobox->insertItem( patterns[j] );
+        combobox->setCurrentItem( element.valuePattern() - 1 );
+        table->setCellWidget( i, 2, combobox );
 
-        table->setText( i, 3, element.label() );
+        table->setText( i, 3, element.label() );
 
         color = element.labelColor();
-        pix.fill( color );
-        table->setPixmap( i, 4, pix );
-        table->setText( i, 4, color.name() );
+        pix.fill( color );
+        table->setPixmap( i, 4, pix );
+        table->setText( i, 4, color.name() );
     }
 
 }
@@ -178,7 +178,7 @@ const int MAX_PATTERNS = 14;
 
 void SetDataForm::currentChanged( int, int col )
 {
-    colorPushButton->setEnabled( col == 1 || col == 4 );
+    colorPushButton->setEnabled( col == 1 || col == 4 );
 }
 
 
@@ -186,21 +186,21 @@ void SetDataForm::valueChanged( int row, int col )
 {
     if ( col == 0 ) {
         bool ok;
-        double d = table->text( row, col ).toDouble( &ok );
+        double d = table->text( row, col ).toDouble( &ok );
         if ( ok && d > EPSILON )
-            table->setText(
+            table->setText(
                 row, col, TQString( "%1" ).arg(
                             d, 0, 'f', m_decimalPlaces ) );
-        else if ( !table->text( row, col ).isEmpty() )
-            table->setText( row, col, table->text( row, col ) + "?" );
+        else if ( !table->text( row, col ).isEmpty() )
+            table->setText( row, col, table->text( row, col ) + "?" );
     }
 }
 
 
 void SetDataForm::setColor()
 {
-    setColor( table->currentRow(), table->currentColumn() );
-    table->setFocus();
+    setColor( table->currentRow(), table->currentColumn() );
+    table->setFocus();
 }
 
 
@@ -209,36 +209,36 @@ void SetDataForm::setColor( int row, int col )
     if ( !( col == 1 || col == 4 ) )
         return;
 
-    TQColor color = TQColorDialog::getColor(
-                        TQColor( table->text( row, col ) ),
+    TQColor color = TQColorDialog::getColor(
+                        TQColor( table->text( row, col ) ),
                         this, "color dialog" );
-    if ( color.isValid() ) {
-        TQPixmap pix = table->pixmap( row, col );
-        pix.fill( color );
-        table->setPixmap( row, col, pix );
-        table->setText( row, col, color.name() );
+    if ( color.isValid() ) {
+        TQPixmap pix = table->pixmap( row, col );
+        pix.fill( color );
+        table->setPixmap( row, col, pix );
+        table->setText( row, col, color.name() );
     }
 }
 
 
-void SetDataForm::accept()
+void SetDataForm::accept()
 {
     bool ok;
     for ( int i = 0; i < ChartForm::MAX_ELEMENTS; ++i ) {
         Element &element = (*m_elements)[i];
-        double d = table->text( i, 0 ).toDouble( &ok );
+        double d = table->text( i, 0 ).toDouble( &ok );
         if ( ok )
             element.setValue( d );
         else
             element.setValue( Element::INVALID );
-        element.setValueColor( TQColor( table->text( i, 1 ) ) );
+        element.setValueColor( TQColor( table->text( i, 1 ) ) );
         element.setValuePattern(
-                ((TQComboBox*)table->cellWidget( i, 2 ))->currentItem() + 1 );
-        element.setLabel( table->text( i, 3 ) );
-        element.setLabelColor( TQColor( table->text( i, 4 ) ) );
+                ((TQComboBox*)table->cellWidget( i, 2 ))->currentItem() + 1 );
+        element.setLabel( table->text( i, 3 ) );
+        element.setLabelColor( TQColor( table->text( i, 4 ) ) );
     }
 
-    TQDialog::accept();
+    TQDialog::accept();
 }
 


-- cgit v1.2.1