summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmspheresweep.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/pmspheresweep.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/pmspheresweep.h')
-rw-r--r--kpovmodeler/pmspheresweep.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/kpovmodeler/pmspheresweep.h b/kpovmodeler/pmspheresweep.h
index 281db0c3..b28d69a5 100644
--- a/kpovmodeler/pmspheresweep.h
+++ b/kpovmodeler/pmspheresweep.h
@@ -26,8 +26,8 @@
#include "pmsolidobject.h"
#include "pmvector.h"
-#include <qptrlist.h>
-#include <qvaluelist.h>
+#include <tqptrlist.h>
+#include <tqvaluelist.h>
#include <math.h>
class PMViewStructure;
@@ -60,7 +60,7 @@ public:
/** */
virtual PMObject* copy( ) const { return new PMSphereSweep( *this ); }
/** */
- virtual QString description( ) const;
+ virtual TQString description( ) const;
/** */
virtual PMMetaObject* metaObject( ) const;
@@ -68,18 +68,18 @@ public:
virtual void cleanUp( ) const;
/** */
- virtual void serialize( QDomElement& e, QDomDocument& doc ) const;
+ virtual void serialize( TQDomElement& e, TQDomDocument& doc ) const;
/** */
virtual void readAttributes( const PMXMLHelper& h );
/**
* Returns a new @ref PMSphereSweepEdit
*/
- virtual PMDialogEditBase* editWidget( QWidget* parent ) const;
+ virtual PMDialogEditBase* editWidget( TQWidget* parent ) const;
/**
* Returns the name of the pixmap that is displayed in the tree view
* and dialog view
*/
- virtual QString pixmap( ) const { return QString( "pmspheresweep" ); }
+ virtual TQString pixmap( ) const { return TQString( "pmspheresweep" ); }
/** */
virtual void createMemento( );
@@ -93,29 +93,29 @@ public:
virtual bool hasDisplayDetail( ) const { return true; }
/** */
virtual void addObjectActions( const PMControlPointList&,
- QPtrList<PMObjectAction>& );
+ TQPtrList<PMObjectAction>& );
/** */
virtual void objectActionCalled( const PMObjectAction*,
const PMControlPointList&,
- const QPtrList<PMVector>&,
+ const TQPtrList<PMVector>&,
const PMVector& );
/**
* Returns the spline points
*/
- QValueList<PMVector> points( ) const { return m_points; }
+ TQValueList<PMVector> points( ) const { return m_points; }
/**
* Sets the spline points
*/
- void setPoints( const QValueList<PMVector>& points );
+ void setPoints( const TQValueList<PMVector>& points );
/**
* Returns the radii
*/
- QValueList<double> radii( ) const { return m_radii; }
+ TQValueList<double> radii( ) const { return m_radii; }
/**
* Sets the radii
*/
- void setRadii( const QValueList<double>& radii );
+ void setRadii( const TQValueList<double>& radii );
/**
* Returns the number of spline points
*/
@@ -165,17 +165,17 @@ private:
* Object action. Adds a spline point
*/
void splitSegment( const PMControlPointList& cp,
- const QPtrList<PMVector>& cpViewPosition,
+ const TQPtrList<PMVector>& cpViewPosition,
const PMVector& clickPosition );
/**
* Object action. Removes a spline point
*/
void joinSegments( const PMControlPointList& cp,
- const QPtrList<PMVector>& cpViewPosition,
+ const TQPtrList<PMVector>& cpViewPosition,
const PMVector& clickPosition );
- void stringToValues( const QString& str );
- QString valuesToString( ) const;
+ void stringToValues( const TQString& str );
+ TQString valuesToString( ) const;
/**
* IDs for @ref PMMementoData
@@ -186,8 +186,8 @@ private:
*/
enum PMSphereSweepActionID { PMSplitSegmentID, PMJoinSegmentsID };
SplineType m_splineType;
- QValueList<PMVector> m_points;
- QValueList<double> m_radii;
+ TQValueList<PMVector> m_points;
+ TQValueList<double> m_radii;
double m_tolerance;
static int s_rSteps;
@@ -201,12 +201,12 @@ private:
* creating view structure
*/
struct Segment{
- QValueList<PMVector> points;
- QValueList<double> radii;
- QValueList<PMVector> direction;
+ TQValueList<PMVector> points;
+ TQValueList<double> radii;
+ TQValueList<PMVector> direction;
};
- QValueList<Segment> m_segments;
+ TQValueList<Segment> m_segments;
int m_nextPoint;
int m_nextLine;
/**