summaryrefslogtreecommitdiffstats
path: root/doc/html/customstyles.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-15 19:08:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/customstyles.html
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt-a30f5359.tar.gz
tqt-a30f5359.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/customstyles.html')
-rw-r--r--doc/html/customstyles.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/customstyles.html b/doc/html/customstyles.html
index 6ff40962f..cf5827fb0 100644
--- a/doc/html/customstyles.html
+++ b/doc/html/customstyles.html
@@ -80,9 +80,9 @@ public:
~CustomStyle();
void drawPrimitive( PrimitiveElement pe,
- <a href="ntqpainter.html">TQPainter</a> *p,
+ <a href="tqpainter.html">TQPainter</a> *p,
const <a href="ntqrect.html">TQRect</a> &amp; r,
- const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
+ const <a href="tqcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags = Style_Default,
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; = TQStyleOption::Default ) const;
@@ -109,9 +109,9 @@ CustomStyle::~CustomStyle()
}
void CustomStyle::drawPrimitive( PrimitiveElement pe,
- <a href="ntqpainter.html">TQPainter</a> * p,
+ <a href="tqpainter.html">TQPainter</a> * p,
const <a href="ntqrect.html">TQRect</a> &amp; r,
- const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
+ const <a href="tqcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags,
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; opt ) const
{
@@ -155,13 +155,13 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
// use different colors to indicate that the arrow is
// enabled/disabled
if ( flags &amp; Style_Enabled ) {
- p-&gt;<a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#mid">mid</a>() );
- p-&gt;<a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) );
+ p-&gt;<a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#mid">mid</a>() );
+ p-&gt;<a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) );
} else {
- p-&gt;<a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#buttonText">buttonText</a>() );
- p-&gt;<a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) );
+ p-&gt;<a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#buttonText">buttonText</a>() );
+ p-&gt;<a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) );
}
- p-&gt;<a href="ntqpainter.html#drawPolygon">drawPolygon</a>( pa );
+ p-&gt;<a href="tqpainter.html#drawPolygon">drawPolygon</a>( pa );
} else {
// let the base style handle the other primitives
TQWindowsStyle::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, data );