diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmsoredit.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmsoredit.cpp')
-rw-r--r-- | kpovmodeler/pmsoredit.cpp | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/kpovmodeler/pmsoredit.cpp b/kpovmodeler/pmsoredit.cpp index b56949e6..127015df 100644 --- a/kpovmodeler/pmsoredit.cpp +++ b/kpovmodeler/pmsoredit.cpp @@ -21,18 +21,18 @@ #include "pmvectorlistedit.h" #include "pmpart.h" -#include <qlayout.h> -#include <qlabel.h> -#include <qtooltip.h> -#include <qcombobox.h> -#include <qcheckbox.h> -#include <qpushbutton.h> +#include <tqlayout.h> +#include <tqlabel.h> +#include <tqtooltip.h> +#include <tqcombobox.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> #include <klocale.h> #include <kdialog.h> #include <kiconloader.h> #include <kmessagebox.h> -PMSurfaceOfRevolutionEdit::PMSurfaceOfRevolutionEdit( QWidget* parent, const char* name ) +PMSurfaceOfRevolutionEdit::PMSurfaceOfRevolutionEdit( TQWidget* parent, const char* name ) : Base( parent, name ) { m_pDisplayedObject = 0; @@ -40,37 +40,37 @@ PMSurfaceOfRevolutionEdit::PMSurfaceOfRevolutionEdit( QWidget* parent, const cha void PMSurfaceOfRevolutionEdit::createBottomWidgets( ) { - topLayout( )->addWidget( new QLabel( i18n( "Spline points:" ), this ) ); + topLayout( )->addWidget( new TQLabel( i18n( "Spline points:" ), this ) ); m_pPoints = new PMVectorListEdit( "u", "v", this ); - connect( m_pPoints, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); - connect( m_pPoints, SIGNAL( selectionChanged( ) ), - SLOT( slotSelectionChanged( ) ) ); - QHBoxLayout* hl = new QHBoxLayout( topLayout( ) ); + connect( m_pPoints, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); + connect( m_pPoints, TQT_SIGNAL( selectionChanged( ) ), + TQT_SLOT( slotSelectionChanged( ) ) ); + TQHBoxLayout* hl = new TQHBoxLayout( topLayout( ) ); hl->addWidget( m_pPoints, 2 ); - m_pAddAbove = new QPushButton( this ); + m_pAddAbove = new TQPushButton( this ); m_pAddAbove->setPixmap( SmallIcon( "pmaddpointabove" ) ); - m_pAddBelow = new QPushButton( this ); + m_pAddBelow = new TQPushButton( this ); m_pAddBelow->setPixmap( SmallIcon( "pmaddpoint" ) ); - m_pRemove = new QPushButton( this ); + m_pRemove = new TQPushButton( this ); m_pRemove->setPixmap( SmallIcon( "pmremovepoint" ) ); - connect( m_pAddAbove, SIGNAL( clicked( ) ), SLOT( slotAddPointAbove( ) ) ); - connect( m_pAddBelow, SIGNAL( clicked( ) ), SLOT( slotAddPointBelow( ) ) ); - connect( m_pRemove, SIGNAL( clicked( ) ), SLOT( slotRemovePoint( ) ) ); + connect( m_pAddAbove, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotAddPointAbove( ) ) ); + connect( m_pAddBelow, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotAddPointBelow( ) ) ); + connect( m_pRemove, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotRemovePoint( ) ) ); - QVBoxLayout* bl = new QVBoxLayout( hl ); + TQVBoxLayout* bl = new TQVBoxLayout( hl ); bl->addWidget( m_pAddAbove ); bl->addWidget( m_pAddBelow ); bl->addWidget( m_pRemove ); bl->addStretch( 1 ); - m_pOpen = new QCheckBox( i18n( "type of the object", "Open" ), this ); + m_pOpen = new TQCheckBox( i18n( "type of the object", "Open" ), this ); topLayout( )->addWidget( m_pOpen ); - connect( m_pOpen, SIGNAL( clicked( ) ), SIGNAL( dataChanged( ) ) ); - m_pSturm = new QCheckBox( i18n( "Sturm" ), this ); + connect( m_pOpen, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) ); + m_pSturm = new TQCheckBox( i18n( "Sturm" ), this ); topLayout( )->addWidget( m_pSturm ); - connect( m_pSturm, SIGNAL( clicked( ) ), SIGNAL( dataChanged( ) ) ); + connect( m_pSturm, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) ); Base::createBottomWidgets( ); } @@ -146,10 +146,10 @@ bool PMSurfaceOfRevolutionEdit::isDataValid( ) return false; } - QValueList<PMVector> points = m_pPoints->vectors( ); - QValueListIterator<PMVector> it1 = points.begin( ); - QValueListIterator<PMVector> it2 = it1; ++it2; - QValueListIterator<PMVector> it3 = it2; ++it3; + TQValueList<PMVector> points = m_pPoints->vectors( ); + TQValueListIterator<PMVector> it1 = points.begin( ); + TQValueListIterator<PMVector> it2 = it1; ++it2; + TQValueListIterator<PMVector> it3 = it2; ++it3; int pnr; for( pnr = 0; it3 != points.end( ); ++it1, ++it2, ++it3, pnr++ ) @@ -186,12 +186,12 @@ void PMSurfaceOfRevolutionEdit::slotAddPointAbove( ) int index = m_pPoints->currentRow( ); if( index >= 0 ) { - QValueList<PMVector> points = m_pPoints->vectors( ); - QValueListIterator<PMVector> it = points.at( index ); + TQValueList<PMVector> points = m_pPoints->vectors( ); + TQValueListIterator<PMVector> it = points.at( index ); if( it != points.end( ) ) { - QValueListIterator<PMVector> it2 = it; + TQValueListIterator<PMVector> it2 = it; it2--; PMVector v; if( it2 == points.end( ) ) @@ -212,12 +212,12 @@ void PMSurfaceOfRevolutionEdit::slotAddPointBelow( ) int index = m_pPoints->currentRow( ); if( index >= 0 ) { - QValueList<PMVector> points = m_pPoints->vectors( ); - QValueListIterator<PMVector> it = points.at( index ); + TQValueList<PMVector> points = m_pPoints->vectors( ); + TQValueListIterator<PMVector> it = points.at( index ); if( it != points.end( ) ) { - QValueListIterator<PMVector> it2 = it; + TQValueListIterator<PMVector> it2 = it; it2++; PMVector v; if( it2 == points.end( ) ) @@ -240,8 +240,8 @@ void PMSurfaceOfRevolutionEdit::slotRemovePoint( ) if( row >= 0 ) { - QValueList<PMVector> points = m_pPoints->vectors( ); - QValueListIterator<PMVector> it = points.at( row ); + TQValueList<PMVector> points = m_pPoints->vectors( ); + TQValueListIterator<PMVector> it = points.at( row ); if( it != points.end( ) && points.size( ) > 1 ) { |