diff options
Diffstat (limited to 'karbon/shapes/vstar.h')
-rw-r--r-- | karbon/shapes/vstar.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/karbon/shapes/vstar.h b/karbon/shapes/vstar.h index 7b7ec098..9a4096ea 100644 --- a/karbon/shapes/vstar.h +++ b/karbon/shapes/vstar.h @@ -23,11 +23,11 @@ #include "vcomposite.h" #include <koffice_export.h> /** - * This shape offers star-like shapes with a lot of parameters : + * This tqshape offers star-like tqshapes with a lot of parameters : * * Types : * - * Star - fully connected star shape. + * Star - fully connected star tqshape. * Star outline - like star but without the cross connections. * Framed star - like star outline but with an enclosing path. * Spoke - basically a star outline with inner radius of zero. @@ -42,7 +42,7 @@ * Inner radius - inner radius where star has to connect to. This value * doesn't apply to polygon, spoke and wheel. * Inner angle - extra radius amount for inner radius. - * Roundness - uses curves instead of lines for the star shape. + * Roundness - uses curves instead of lines for the star tqshape. */ class KARBONBASE_EXPORT VStar : public VPath { @@ -57,19 +57,19 @@ public: star, gear }; - VStar( VObject* parent, VState state = edit ); - VStar( VObject* parent, + VStar( VObject* tqparent, VState state = edit ); + VStar( VObject* tqparent, const KoPoint& center, double outerRadius, double innerRadius, uint edges, double angle = 0.0, uint innerAngle = 0, double roundness = 0.0, VStarType type = star_outline ); static double getOptimalInnerRadius( uint edges, double outerRadius, uint innerAngle ); - virtual QString name() const; + virtual TQString name() const; - virtual void save( QDomElement& element ) const; - virtual void load( const QDomElement& element ); + virtual void save( TQDomElement& element ) const; + virtual void load( const TQDomElement& element ); virtual VPath* clone() const; |