summaryrefslogtreecommitdiffstats
path: root/doc/html/tooltip-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tooltip-example.html')
-rw-r--r--doc/html/tooltip-example.html84
1 files changed, 42 insertions, 42 deletions
diff --git a/doc/html/tooltip-example.html b/doc/html/tooltip-example.html
index e6980886..6c85ce2e 100644
--- a/doc/html/tooltip-example.html
+++ b/doc/html/tooltip-example.html
@@ -50,28 +50,28 @@ tool tips on the blue rectangles and a static tool tip on the red one.
**
*****************************************************************************/
-#include &lt;<a href="qwidget-h.html">qwidget.h</a>&gt;
-#include &lt;<a href="qtooltip-h.html">qtooltip.h</a>&gt;
+#include &lt;<a href="qwidget-h.html">ntqwidget.h</a>&gt;
+#include &lt;<a href="qtooltip-h.html">ntqtooltip.h</a>&gt;
-class DynamicTip : public <a href="qtooltip.html">TQToolTip</a>
+class DynamicTip : public <a href="ntqtooltip.html">TQToolTip</a>
{
public:
- DynamicTip( <a href="qwidget.html">TQWidget</a> * parent );
+ DynamicTip( <a href="ntqwidget.html">TQWidget</a> * parent );
protected:
- void maybeTip( const <a href="qpoint.html">TQPoint</a> &amp; );
+ void maybeTip( const <a href="ntqpoint.html">TQPoint</a> &amp; );
};
-class TellMe : public <a href="qwidget.html">TQWidget</a>
+class TellMe : public <a href="ntqwidget.html">TQWidget</a>
{
<a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a>
public:
- TellMe( <a href="qwidget.html">TQWidget</a> * parent = 0, const char * name = 0 );
+ TellMe( <a href="ntqwidget.html">TQWidget</a> * parent = 0, const char * name = 0 );
~TellMe();
- <a href="qrect.html">TQRect</a> tip( const <a href="qpoint.html">TQPoint</a> &amp; );
+ <a href="ntqrect.html">TQRect</a> tip( const <a href="ntqpoint.html">TQPoint</a> &amp; );
protected:
void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * );
@@ -79,9 +79,9 @@ protected:
void resizeEvent( <a href="qresizeevent.html">TQResizeEvent</a> * );
private:
- <a href="qrect.html">TQRect</a> randomRect();
+ <a href="ntqrect.html">TQRect</a> randomRect();
- <a href="qrect.html">TQRect</a> r1, r2, r3;
+ <a href="ntqrect.html">TQRect</a> r1, r2, r3;
DynamicTip * t;
};
</pre>
@@ -99,44 +99,44 @@ private:
*****************************************************************************/
#include "tooltip.h"
-#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
-#include &lt;<a href="qpainter-h.html">qpainter.h</a>&gt;
+#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;stdlib.h&gt;
-<a name="f251"></a>DynamicTip::DynamicTip( <a href="qwidget.html">TQWidget</a> * parent )
- : <a href="qtooltip.html">TQToolTip</a>( parent )
+<a name="f251"></a>DynamicTip::DynamicTip( <a href="ntqwidget.html">TQWidget</a> * parent )
+ : <a href="ntqtooltip.html">TQToolTip</a>( parent )
{
// no explicit initialization needed
}
-<a name="x451"></a>void DynamicTip::<a href="qtooltip.html#maybeTip">maybeTip</a>( const <a href="qpoint.html">TQPoint</a> &amp;pos )
+<a name="x451"></a>void DynamicTip::<a href="ntqtooltip.html#maybeTip">maybeTip</a>( const <a href="ntqpoint.html">TQPoint</a> &amp;pos )
{
if ( !parentWidget()-&gt;inherits( "TellMe" ) )
return;
- <a href="qrect.html">TQRect</a> r( ((TellMe*)<a href="qtooltip.html#parentWidget">parentWidget</a>())-&gt;tip(pos) );
-<a name="x448"></a> if ( !r.<a href="qrect.html#isValid">isValid</a>() )
+ <a href="ntqrect.html">TQRect</a> r( ((TellMe*)<a href="ntqtooltip.html#parentWidget">parentWidget</a>())-&gt;tip(pos) );
+<a name="x448"></a> if ( !r.<a href="ntqrect.html#isValid">isValid</a>() )
return;
- <a href="qstring.html">TQString</a> s;
-<a name="x449"></a><a name="x447"></a> s.<a href="qstring.html#sprintf">sprintf</a>( "position: %d,%d", r.<a href="qrect.html#center">center</a>().x(), r.<a href="qrect.html#center">center</a>().y() );
+ <a href="ntqstring.html">TQString</a> s;
+<a name="x449"></a><a name="x447"></a> s.<a href="ntqstring.html#sprintf">sprintf</a>( "position: %d,%d", r.<a href="ntqrect.html#center">center</a>().x(), r.<a href="ntqrect.html#center">center</a>().y() );
tip( r, s );
}
-<a name="f252"></a>TellMe::TellMe( <a href="qwidget.html">TQWidget</a> * parent , const char * name )
- : <a href="qwidget.html">TQWidget</a>( parent, name )
+<a name="f252"></a>TellMe::TellMe( <a href="ntqwidget.html">TQWidget</a> * parent , const char * name )
+ : <a href="ntqwidget.html">TQWidget</a>( parent, name )
{
- <a href="qwidget.html#setMinimumSize">setMinimumSize</a>( 30, 30 );
+ <a href="ntqwidget.html#setMinimumSize">setMinimumSize</a>( 30, 30 );
r1 = randomRect();
r2 = randomRect();
r3 = randomRect();
t = new DynamicTip( this );
-<a name="x450"></a> TQToolTip::<a href="qtooltip.html#add">add</a>( this, r3, "this color is called red" ); // &lt;- helpful
+<a name="x450"></a> TQToolTip::<a href="ntqtooltip.html#add">add</a>( this, r3, "this color is called red" ); // &lt;- helpful
}
@@ -147,40 +147,40 @@ TellMe::~TellMe()
}
-void TellMe::<a href="qwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * e )
+void TellMe::<a href="ntqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * e )
{
- <a href="qpainter.html">TQPainter</a> p( this );
+ <a href="ntqpainter.html">TQPainter</a> p( this );
// I try to be efficient here, and repaint only what's needed
<a name="x446"></a> if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r1 ) ) {
-<a name="x445"></a> p.<a href="qpainter.html#setBrush">setBrush</a>( blue );
-<a name="x444"></a> p.<a href="qpainter.html#drawRect">drawRect</a>( r1 );
+<a name="x445"></a> p.<a href="ntqpainter.html#setBrush">setBrush</a>( blue );
+<a name="x444"></a> p.<a href="ntqpainter.html#drawRect">drawRect</a>( r1 );
}
if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r2 ) ) {
- p.<a href="qpainter.html#setBrush">setBrush</a>( blue );
- p.<a href="qpainter.html#drawRect">drawRect</a>( r2 );
+ p.<a href="ntqpainter.html#setBrush">setBrush</a>( blue );
+ p.<a href="ntqpainter.html#drawRect">drawRect</a>( r2 );
}
if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r3 ) ) {
- p.<a href="qpainter.html#setBrush">setBrush</a>( red );
- p.<a href="qpainter.html#drawRect">drawRect</a>( r3 );
+ p.<a href="ntqpainter.html#setBrush">setBrush</a>( red );
+ p.<a href="ntqpainter.html#drawRect">drawRect</a>( r3 );
}
}
-<a name="x452"></a>void TellMe::<a href="qwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * e )
+<a name="x452"></a>void TellMe::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * e )
{
<a name="x443"></a> if ( r1.contains( e-&gt;<a href="qmouseevent.html#pos">pos</a>() ) )
r1 = randomRect();
if ( r2.contains( e-&gt;<a href="qmouseevent.html#pos">pos</a>() ) )
r2 = randomRect();
- <a href="qwidget.html#repaint">repaint</a>();
+ <a href="ntqwidget.html#repaint">repaint</a>();
}
-<a name="x454"></a>void TellMe::<a href="qwidget.html#resizeEvent">resizeEvent</a>( <a href="qresizeevent.html">TQResizeEvent</a> * )
+<a name="x454"></a>void TellMe::<a href="ntqwidget.html#resizeEvent">resizeEvent</a>( <a href="qresizeevent.html">TQResizeEvent</a> * )
{
if ( !rect().contains( r1 ) )
r1 = randomRect();
@@ -191,12 +191,12 @@ void TellMe::<a href="qwidget.html#paintEvent">paintEvent</a>( <a href="qpaintev
TQRect <a name="f253"></a>TellMe::randomRect()
{
- return TQRect( ::rand() % (<a href="qwidget.html#width">width</a>() - 20), ::rand() % (<a href="qwidget.html#height">height</a>() - 20),
+ return TQRect( ::rand() % (<a href="ntqwidget.html#width">width</a>() - 20), ::rand() % (<a href="ntqwidget.html#height">height</a>() - 20),
20, 20 );
}
-TQRect <a name="f254"></a>TellMe::tip( const <a href="qpoint.html">TQPoint</a> &amp; p )
+TQRect <a name="f254"></a>TellMe::tip( const <a href="ntqpoint.html">TQPoint</a> &amp; p )
{
if ( r1.contains( p ) )
return r1;
@@ -219,19 +219,19 @@ TQRect <a name="f254"></a>TellMe::tip( const <a href="qpoint.html">TQPoint</a> &
**
*****************************************************************************/
-#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
+#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include "tooltip.h"
int main( int argc, char ** argv )
{
- <a href="qapplication.html">TQApplication</a> a( argc, argv );
+ <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
TellMe mw;
- mw.<a href="qwidget.html#setCaption">setCaption</a>( "TQt Example - Dynamic Tool Tips" );
- a.<a href="qapplication.html#setMainWidget">setMainWidget</a>( &amp;mw );
- mw.<a href="qwidget.html#show">show</a>();
+ mw.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Dynamic Tool Tips" );
+ a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;mw );
+ mw.<a href="ntqwidget.html#show">show</a>();
- return a.<a href="qapplication.html#exec">exec</a>();
+ return a.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>