diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-15 19:08:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-18 09:31:41 +0900 |
commit | a30f5359f03c3017fa19a6770fab32d25d22cb87 (patch) | |
tree | cb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/customstyles.html | |
parent | 25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff) | |
download | tqt-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.html | 18 |
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> & r, - const <a href="qcolorgroup.html">TQColorGroup</a> & cg, + const <a href="tqcolorgroup.html">TQColorGroup</a> & cg, SFlags flags = Style_Default, const <a href="tqstyleoption.html">TQStyleOption</a> & = 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> & r, - const <a href="qcolorgroup.html">TQColorGroup</a> & cg, + const <a href="tqcolorgroup.html">TQColorGroup</a> & cg, SFlags flags, const <a href="tqstyleoption.html">TQStyleOption</a> & opt ) const { @@ -155,13 +155,13 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe, // use different colors to indicate that the arrow is // enabled/disabled if ( flags & Style_Enabled ) { - p-><a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#mid">mid</a>() ); - p-><a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) ); + p-><a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#mid">mid</a>() ); + p-><a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) ); } else { - p-><a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#buttonText">buttonText</a>() ); - p-><a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) ); + p-><a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#buttonText">buttonText</a>() ); + p-><a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) ); } - p-><a href="ntqpainter.html#drawPolygon">drawPolygon</a>( pa ); + p-><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 ); |