summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/movies-example.html
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt3-7552c6d73043b1040139033f6864db48ae5446cf.tar.gz
tqt3-7552c6d73043b1040139033f6864db48ae5446cf.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r--doc/html/movies-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html
index d1d22434e..334579cef 100644
--- a/doc/html/movies-example.html
+++ b/doc/html/movies-example.html
@@ -62,7 +62,7 @@ class MovieScreen : public <a href="ntqframe.html">TQFrame</a> {
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
<a href="ntqmovie.html">TQMovie</a> movie;
<a href="tqstring.html">TQString</a> filename;
- <a href="ntqsize.html">TQSize</a> sh;
+ <a href="tqsize.html">TQSize</a> sh;
public:
MovieScreen(const char* fname, TQMovie m, TQWidget* p=0, const char* name=0, WFlags f=0) :
@@ -82,13 +82,13 @@ public:
// Get the movie to tell use when interesting things happen.
<a name="x500"></a> movie.<a href="ntqmovie.html#connectUpdate">connectUpdate</a>(this, TQ_SLOT(movieUpdated(const <a href="ntqrect.html">TQRect</a>&amp;)));
-<a name="x498"></a> movie.<a href="ntqmovie.html#connectResize">connectResize</a>(this, TQ_SLOT(movieResized(const <a href="ntqsize.html">TQSize</a>&amp;)));
+<a name="x498"></a> movie.<a href="ntqmovie.html#connectResize">connectResize</a>(this, TQ_SLOT(movieResized(const <a href="tqsize.html">TQSize</a>&amp;)));
<a name="x499"></a> movie.<a href="ntqmovie.html#connectStatus">connectStatus</a>(this, TQ_SLOT(movieStatus(int)));
setSizePolicy(TQSizePolicy(TQSizePolicy::Expanding,TQSizePolicy::Expanding));
}
- <a href="ntqsize.html">TQSize</a> sizeHint() const
+ <a href="tqsize.html">TQSize</a> sizeHint() const
{
return sh;
}
@@ -209,12 +209,12 @@ private slots:
}
}
- void movieResized(const <a href="ntqsize.html">TQSize</a>&amp; size)
+ void movieResized(const <a href="tqsize.html">TQSize</a>&amp; size)
{
// The movie changed size, probably from its initial zero size.
int fw = frameWidth();
-<a name="x521"></a><a name="x520"></a> sh = TQSize( size.<a href="ntqsize.html#width">width</a>() + fw*2, size.<a href="ntqsize.html#height">height</a>() + fw*2 );
+<a name="x521"></a><a name="x520"></a> sh = TQSize( size.<a href="tqsize.html#width">width</a>() + fw*2, size.<a href="tqsize.html#height">height</a>() + fw*2 );
<a href="tqwidget.html#updateGeometry">updateGeometry</a>();
if ( <a href="tqwidget.html#parentWidget">parentWidget</a>() &amp;&amp; parentWidget()-&gt;isHidden() )
<a href="tqwidget.html#parentWidget">parentWidget</a>()-&gt;show();