summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqlayout.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/ntqlayout.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/ntqlayout.html')
-rw-r--r--doc/html/ntqlayout.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/ntqlayout.html b/doc/html/ntqlayout.html
index 637fef71d..971bba60e 100644
--- a/doc/html/ntqlayout.html
+++ b/doc/html/ntqlayout.html
@@ -92,7 +92,7 @@ The TQLayout class is the base class of geometry managers.
<p> This is an abstract base class inherited by the concrete classes,
<a href="qboxlayout.html">TQBoxLayout</a> and <a href="qgridlayout.html">TQGridLayout</a>.
-<p> For users of TQLayout subclasses or of <a href="ntqmainwindow.html">TQMainWindow</a> there is seldom
+<p> For users of TQLayout subclasses or of <a href="tqmainwindow.html">TQMainWindow</a> there is seldom
any need to use the basic functions provided by TQLayout, such as
<a href="#setResizeMode">setResizeMode</a>() or <a href="#setMenuBar">setMenuBar</a>(). See the <a href="layout.html">layout
overview page</a> for more information.
@@ -207,7 +207,7 @@ the top-level widget.
</h3>
Removes and deletes all items in this layout.
-<h3 class=fn><a href="ntqsizepolicy.html#ExpandData-enum">TQSizePolicy::ExpandData</a> <a name="expanding"></a>TQLayout::expanding () const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqsizepolicy.html#ExpandData-enum">TQSizePolicy::ExpandData</a> <a name="expanding"></a>TQLayout::expanding () const<tt> [virtual]</tt>
</h3>
Returns whether this layout can make use of more space than
<a href="qlayoutitem.html#sizeHint">sizeHint</a>(). A value of <a href="ntqt.html#Orientation-enum">Vertical</a> or <a href="ntqt.html#Orientation-enum">Horizontal</a> means that it wants
@@ -267,7 +267,7 @@ this layout is a sub-layout that is not yet inserted.
<h3 class=fn>int <a name="margin"></a>TQLayout::margin () const
</h3><p>Returns the width of the outside border of the layout.
See the <a href="ntqlayout.html#margin-prop">"margin"</a> property for details.
-<h3 class=fn><a href="ntqsize.html">TQSize</a> <a name="maximumSize"></a>TQLayout::maximumSize () const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqsize.html">TQSize</a> <a name="maximumSize"></a>TQLayout::maximumSize () const<tt> [virtual]</tt>
</h3>
Returns the maximum size of this layout. This is the largest size
that the layout can have while still respecting the
@@ -277,13 +277,13 @@ specifications. Does not include what's needed by <a href="#margin">margin</a>()
<p>Reimplemented from <a href="qlayoutitem.html#maximumSize">TQLayoutItem</a>.
<p>Reimplemented in <a href="qgridlayout.html#maximumSize">TQGridLayout</a> and <a href="qboxlayout.html#maximumSize">TQBoxLayout</a>.
-<h3 class=fn><a href="ntqmenubar.html">TQMenuBar</a>&nbsp;* <a name="menuBar"></a>TQLayout::menuBar () const
+<h3 class=fn><a href="tqmenubar.html">TQMenuBar</a>&nbsp;* <a name="menuBar"></a>TQLayout::menuBar () const
</h3>
<p> Returns the menu bar set for this layout, or 0 if no menu bar is
set.
-<h3 class=fn><a href="ntqsize.html">TQSize</a> <a name="minimumSize"></a>TQLayout::minimumSize () const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqsize.html">TQSize</a> <a name="minimumSize"></a>TQLayout::minimumSize () const<tt> [virtual]</tt>
</h3>
Returns the minimum size of this layout. This is the smallest size
that the layout can have while still respecting the
@@ -344,12 +344,12 @@ given by rect <em>r</em>. Reimplementors must call this function.
<h3 class=fn>void <a name="setMargin"></a>TQLayout::setMargin ( int )<tt> [virtual]</tt>
</h3><p>Sets the width of the outside border of the layout.
See the <a href="ntqlayout.html#margin-prop">"margin"</a> property for details.
-<h3 class=fn>void <a name="setMenuBar"></a>TQLayout::setMenuBar ( <a href="ntqmenubar.html">TQMenuBar</a>&nbsp;*&nbsp;w )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setMenuBar"></a>TQLayout::setMenuBar ( <a href="tqmenubar.html">TQMenuBar</a>&nbsp;*&nbsp;w )<tt> [virtual]</tt>
</h3>
Makes the geometry manager take account of the menu bar <em>w</em>. All
child widgets are placed below the bottom edge of the menu bar.
<p> A menu bar does its own geometry management: never do addWidget()
-on a <a href="ntqmenubar.html">TQMenuBar</a>.
+on a <a href="tqmenubar.html">TQMenuBar</a>.
<p>Examples: <a href="layout-example.html#x539">layout/layout.cpp</a> and <a href="scrollview-example.html#x631">scrollview/scrollview.cpp</a>.
<h3 class=fn>void <a name="setResizeMode"></a>TQLayout::setResizeMode ( <a href="ntqlayout.html#ResizeMode-enum">ResizeMode</a> )