diff options
author | Michele Calgaro <[email protected]> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/ntqscrollview.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/ntqscrollview.html')
-rw-r--r-- | doc/html/ntqscrollview.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/ntqscrollview.html b/doc/html/ntqscrollview.html index 6d7dd3d5b..c04ffc228 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-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child1 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><a href="#addChild">addChild</a>(child1); - <a href="ntqlabel.html">TQLabel</a>* child2 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child2 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><a href="#addChild">addChild</a>(child2); - <a href="ntqlabel.html">TQLabel</a>* child3 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child3 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><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-><a href="#enableClipper">enableClipper</a>(TRUE); - <a href="ntqlabel.html">TQLabel</a>* child1 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child1 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><a href="#addChild">addChild</a>(child1); - <a href="ntqlabel.html">TQLabel</a>* child2 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child2 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><a href="#addChild">addChild</a>(child2); - <a href="ntqlabel.html">TQLabel</a>* child3 = new <a href="ntqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); + <a href="tqlabel.html">TQLabel</a>* child3 = new <a href="tqlabel.html">TQLabel</a>("CHILD", sv-><a href="#viewport">viewport</a>()); sv-><a href="#addChild">addChild</a>(child3); </pre> |