summaryrefslogtreecommitdiffstats
path: root/src/kernel/ntqdrawutil.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-13 13:18:58 +0900
committerMichele Calgaro <[email protected]>2023-09-14 10:35:25 +0900
commiteb42871e999672a8fad5793733c58be05928c8ea (patch)
tree57323eeb0fc8e0f0c30389b23d1aac0870ff3953 /src/kernel/ntqdrawutil.h
parent440483234fd5d8f29517d9c84b4227db80a90361 (diff)
downloadtqt3-eb42871e999672a8fad5793733c58be05928c8ea.tar.gz
tqt3-eb42871e999672a8fad5793733c58be05928c8ea.zip
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 1ba13366a7a377d50b9e8df9044ce11d8209f98c)
Diffstat (limited to 'src/kernel/ntqdrawutil.h')
-rw-r--r--src/kernel/ntqdrawutil.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/kernel/ntqdrawutil.h b/src/kernel/ntqdrawutil.h
index c315cb5b2..fb6f70257 100644
--- a/src/kernel/ntqdrawutil.h
+++ b/src/kernel/ntqdrawutil.h
@@ -58,52 +58,52 @@ class TQPixmap;
// Standard shade drawing
//
-Q_EXPORT void qDrawShadeLine( TQPainter *p, int x1, int y1, int x2, int y2,
+TQ_EXPORT void qDrawShadeLine( TQPainter *p, int x1, int y1, int x2, int y2,
const TQColorGroup &g, bool sunken = TRUE,
int lineWidth = 1, int midLineWidth = 0 );
-Q_EXPORT void qDrawShadeLine( TQPainter *p, const TQPoint &p1, const TQPoint &p2,
+TQ_EXPORT void qDrawShadeLine( TQPainter *p, const TQPoint &p1, const TQPoint &p2,
const TQColorGroup &g, bool sunken = TRUE,
int lineWidth = 1, int midLineWidth = 0 );
-Q_EXPORT void qDrawShadeRect( TQPainter *p, int x, int y, int w, int h,
+TQ_EXPORT void qDrawShadeRect( TQPainter *p, int x, int y, int w, int h,
const TQColorGroup &, bool sunken=FALSE,
int lineWidth = 1, int midLineWidth = 0,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawShadeRect( TQPainter *p, const TQRect &r,
+TQ_EXPORT void qDrawShadeRect( TQPainter *p, const TQRect &r,
const TQColorGroup &, bool sunken=FALSE,
int lineWidth = 1, int midLineWidth = 0,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawShadePanel( TQPainter *p, int x, int y, int w, int h,
+TQ_EXPORT void qDrawShadePanel( TQPainter *p, int x, int y, int w, int h,
const TQColorGroup &, bool sunken=FALSE,
int lineWidth = 1, const TQBrush *fill = 0 );
-Q_EXPORT void qDrawShadePanel( TQPainter *p, const TQRect &r,
+TQ_EXPORT void qDrawShadePanel( TQPainter *p, const TQRect &r,
const TQColorGroup &, bool sunken=FALSE,
int lineWidth = 1, const TQBrush *fill = 0 );
-Q_EXPORT void qDrawWinButton( TQPainter *p, int x, int y, int w, int h,
+TQ_EXPORT void qDrawWinButton( TQPainter *p, int x, int y, int w, int h,
const TQColorGroup &g, bool sunken = FALSE,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawWinButton( TQPainter *p, const TQRect &r,
+TQ_EXPORT void qDrawWinButton( TQPainter *p, const TQRect &r,
const TQColorGroup &g, bool sunken = FALSE,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawWinPanel( TQPainter *p, int x, int y, int w, int h,
+TQ_EXPORT void qDrawWinPanel( TQPainter *p, int x, int y, int w, int h,
const TQColorGroup &, bool sunken=FALSE,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawWinPanel( TQPainter *p, const TQRect &r,
+TQ_EXPORT void qDrawWinPanel( TQPainter *p, const TQRect &r,
const TQColorGroup &, bool sunken=FALSE,
const TQBrush *fill = 0 );
-Q_EXPORT void qDrawPlainRect( TQPainter *p, int x, int y, int w, int h, const TQColor &,
+TQ_EXPORT void qDrawPlainRect( TQPainter *p, int x, int y, int w, int h, const TQColor &,
int lineWidth = 1, const TQBrush *fill = 0 );
-Q_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor &,
+TQ_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor &,
int lineWidth = 1, const TQBrush *fill = 0 );
@@ -111,16 +111,16 @@ Q_EXPORT void qDrawPlainRect( TQPainter *p, const TQRect &r, const TQColor &,
// Other obsolete drawing functions.
// Use TQStyle::itemRect(), TQStyle::drawItem() and TQStyle::drawArrow() instead.
//
-Q_EXPORT TQRect qItemRect( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h,
+TQ_EXPORT TQRect qItemRect( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h,
int flags, bool enabled,
const TQPixmap *pixmap, const TQString& text, int len=-1 );
-Q_EXPORT void qDrawItem( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h,
+TQ_EXPORT void qDrawItem( TQPainter *p, TQt::GUIStyle gs, int x, int y, int w, int h,
int flags, const TQColorGroup &g, bool enabled,
const TQPixmap *pixmap, const TQString& text,
int len=-1, const TQColor* penColor = 0 );
-Q_EXPORT void qDrawArrow( TQPainter *p, TQt::ArrowType type, TQt::GUIStyle style, bool down,
+TQ_EXPORT void qDrawArrow( TQPainter *p, TQt::ArrowType type, TQt::GUIStyle style, bool down,
int x, int y, int w, int h,
const TQColorGroup &g, bool enabled );