summaryrefslogtreecommitdiffstats
path: root/doc/html/qpainter-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qpainter-h.html')
-rw-r--r--doc/html/qpainter-h.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/qpainter-h.html b/doc/html/qpainter-h.html
index 58e4dfd0..b3ec7785 100644
--- a/doc/html/qpainter-h.html
+++ b/doc/html/qpainter-h.html
@@ -172,7 +172,7 @@ public:
bool hasViewXForm() const;
bool hasWorldXForm() const;
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
void setViewXForm( bool ); // set xform on/off
TQRect window() const; // get window
void setWindow( const TQRect & ); // set window
@@ -253,7 +253,7 @@ public:
int index=0, int npoints=-1 );
void drawConvexPolygon( const TQPointArray &,
int index=0, int npoints=-1 );
-#ifndef QT_NO_BEZIER
+#ifndef TQT_NO_BEZIER
void drawCubicBezier( const TQPointArray &, int index=0 );
#endif
void drawPixmap( int x, int y, const TQPixmap &,
@@ -275,7 +275,7 @@ public:
void drawTiledPixmap( const TQRect &, const TQPixmap &,
const TQPoint & );
void drawTiledPixmap( const TQRect &, const TQPixmap & );
-#ifndef QT_NO_PICTURE
+#ifndef TQT_NO_PICTURE
void drawPicture( const TQPicture & );
void drawPicture( int x, int y, const TQPicture & );
void drawPicture( const TQPoint &, const TQPicture & );
@@ -338,7 +338,7 @@ private:
void updateFont();
void updatePen();
void updateBrush();
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
void updateXForm();
void updateInvXForm();
#endif
@@ -380,7 +380,7 @@ private:
bool block_ext; // for temporary blocking of external devices
// Transformations
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
TQCOORD wx, wy, ww, wh;
TQCOORD vx, vy, vw, vh;
TQWMatrix wxmat;
@@ -535,7 +535,7 @@ inline const TQPoint &TQPainter::brushOrigin() const
inline bool TQPainter::hasViewXForm() const
{
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
return testf(VxF);
#else
return xlatex || xlatey;
@@ -544,7 +544,7 @@ inline bool TQPainter::hasViewXForm() const
inline bool TQPainter::hasWorldXForm() const
{
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
return testf(WxF);
#else
return xlatex || xlatey;
@@ -553,7 +553,7 @@ inline bool TQPainter::hasWorldXForm() const
inline double TQPainter::translationX() const
{
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
return worldMatrix().dx();
#else
return xlatex;
@@ -562,7 +562,7 @@ inline double TQPainter::translationX() const
inline double TQPainter::translationY() const
{
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
return worldMatrix().dy();
#else
return xlatey;
@@ -602,7 +602,7 @@ inline void TQPainter::setBrushOrigin( const TQPoint &p )
setBrushOrigin( p.x(), p.y() );
}
-#ifndef QT_NO_TRANSFORMATIONS
+#ifndef TQT_NO_TRANSFORMATIONS
inline void TQPainter::setWindow( const TQRect &r )
{
setWindow( r.x(), r.y(), r.width(), r.height() );