summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqscrollview.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
commit0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch)
treebe5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/ntqscrollview.html
parent1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff)
downloadtqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz
tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqscrollview.html')
-rw-r--r--doc/html/ntqscrollview.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/ntqscrollview.html b/doc/html/ntqscrollview.html
index 6d7dd3d5..c04ffc22 100644
--- a/doc/html/ntqscrollview.html
+++ b/doc/html/ntqscrollview.html
@@ -184,16 +184,16 @@ large child in the TQScrollView. The child should be a child of the
You can go on to add arbitrary child widgets to the single child
in the scrollview as you would with any widget:
<pre>
- <a href="ntqlabel.html">TQLabel</a>* child1 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", big_box);
- <a href="ntqlabel.html">TQLabel</a>* child2 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", big_box);
- <a href="ntqlabel.html">TQLabel</a>* child3 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", big_box);
+ <a href="tqlabel.html">TQLabel</a>* child1 = new <a href="tqlabel.html">TQLabel</a>("CHILD", big_box);
+ <a href="tqlabel.html">TQLabel</a>* child2 = new <a href="tqlabel.html">TQLabel</a>("CHILD", big_box);
+ <a href="tqlabel.html">TQLabel</a>* child3 = new <a href="tqlabel.html">TQLabel</a>("CHILD", big_box);
...
</pre>
<p> Here the TQScrollView has four children: the viewport(), the
<a href="#verticalScrollBar">verticalScrollBar</a>(), the <a href="#horizontalScrollBar">horizontalScrollBar</a>() and a small
<a href="#cornerWidget">cornerWidget</a>(). The <a href="#viewport">viewport</a>() has one child: the big <a href="ntqvbox.html">TQVBox</a>. The
-TQVBox has the three <a href="ntqlabel.html">TQLabel</a> objects as child widgets. When the view
+TQVBox has the three <a href="tqlabel.html">TQLabel</a> objects as child widgets. When the view
is scrolled, the TQVBox is moved; its children move with it as
child widgets normally do.
<p> <h3> Using a Very Big View with Some Widgets
@@ -209,17 +209,17 @@ adding them with <a href="#addChild">addChild</a>() (this is the same as the pro
the single large widget in the previous example):
<pre>
TQScrollView* sv = new TQScrollView(...);
- <a href="ntqlabel.html">TQLabel</a>* child1 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child1 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child1);
- <a href="ntqlabel.html">TQLabel</a>* child2 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child2 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child2);
- <a href="ntqlabel.html">TQLabel</a>* child3 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child3 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child3);
</pre>
Here, the TQScrollView has the same four children: the <a href="#viewport">viewport</a>(),
the <a href="#verticalScrollBar">verticalScrollBar</a>(), the <a href="#horizontalScrollBar">horizontalScrollBar</a>() and a small
-<a href="#cornerWidget">cornerWidget</a>(). The viewport() has the three <a href="ntqlabel.html">TQLabel</a> objects as
+<a href="#cornerWidget">cornerWidget</a>(). The viewport() has the three <a href="tqlabel.html">TQLabel</a> objects as
child widgets. When the view is scrolled, the scrollview moves the
child widgets individually.
<p> <h3> Using a Very Big View with Many Widgets
@@ -236,11 +236,11 @@ of the <a href="#viewport">viewport</a>(), and adding them with <a href="#addChi
<pre>
TQScrollView* sv = new TQScrollView(...);
sv-&gt;<a href="#enableClipper">enableClipper</a>(TRUE);
- <a href="ntqlabel.html">TQLabel</a>* child1 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child1 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child1);
- <a href="ntqlabel.html">TQLabel</a>* child2 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child2 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child2);
- <a href="ntqlabel.html">TQLabel</a>* child3 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
+ <a href="tqlabel.html">TQLabel</a>* child3 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-&gt;<a href="#viewport">viewport</a>());
sv-&gt;<a href="#addChild">addChild</a>(child3);
</pre>