summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmisosurfaceedit.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmisosurfaceedit.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-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/pmisosurfaceedit.h')
-rw-r--r--kpovmodeler/pmisosurfaceedit.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/kpovmodeler/pmisosurfaceedit.h b/kpovmodeler/pmisosurfaceedit.h
index 9ee6e872..09798c0d 100644
--- a/kpovmodeler/pmisosurfaceedit.h
+++ b/kpovmodeler/pmisosurfaceedit.h
@@ -30,10 +30,10 @@ class PMIsoSurface;
class PMVectorEdit;
class PMFloatEdit;
class PMIntEdit;
-class QCheckBox;
-class QComboBox;
-class QLabel;
-class QLineEdit;
+class TQCheckBox;
+class TQComboBox;
+class TQLabel;
+class TQLineEdit;
/**
* Dialog edit class for @ref PMIsoSurface
@@ -46,7 +46,7 @@ public:
/**
* Creates a PMIsoSurfaceEdit with parent and name
*/
- PMIsoSurfaceEdit( QWidget* parent, const char* name = 0 );
+ PMIsoSurfaceEdit( TQWidget* parent, const char* name = 0 );
/** */
virtual void displayObject( PMObject* o );
@@ -60,7 +60,7 @@ protected:
virtual void saveContents( );
private slots:
- void textChanged( const QString& );
+ void textChanged( const TQString& );
void currentChanged( int i );
void evaluateToggled( bool );
void allToggled( bool );
@@ -68,24 +68,24 @@ private slots:
private:
PMIsoSurface* m_pDisplayedObject;
- QLineEdit* m_pFunction;
- QComboBox* m_pContainedBy;
+ TQLineEdit* m_pFunction;
+ TQComboBox* m_pContainedBy;
PMVectorEdit* m_pCorner1;
PMVectorEdit* m_pCorner2;
PMVectorEdit* m_pCenter;
PMFloatEdit* m_pRadius;
- QLabel* m_pCorner1Label;
- QLabel* m_pCorner2Label;
- QLabel* m_pCenterLabel;
- QLabel* m_pRadiusLabel;
+ TQLabel* m_pCorner1Label;
+ TQLabel* m_pCorner2Label;
+ TQLabel* m_pCenterLabel;
+ TQLabel* m_pRadiusLabel;
PMFloatEdit* m_pThreshold;
PMFloatEdit* m_pAccuracy;
PMFloatEdit* m_pMaxGradient;
- QCheckBox* m_pEvaluate;
+ TQCheckBox* m_pEvaluate;
PMFloatEdit* m_pEvaluateValue[3];
- QCheckBox* m_pOpen;
+ TQCheckBox* m_pOpen;
PMIntEdit* m_pMaxTrace;
- QCheckBox* m_pAllIntersections;
+ TQCheckBox* m_pAllIntersections;
};