summaryrefslogtreecommitdiffstats
path: root/doc/html/tqmainwindow.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-09-09 14:57:42 +0900
committerMichele Calgaro <[email protected]>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/tqmainwindow.html
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/tqmainwindow.html')
-rw-r--r--doc/html/tqmainwindow.html74
1 files changed, 37 insertions, 37 deletions
diff --git a/doc/html/tqmainwindow.html b/doc/html/tqmainwindow.html
index 21f27247d..000e69061 100644
--- a/doc/html/tqmainwindow.html
+++ b/doc/html/tqmainwindow.html
@@ -198,7 +198,7 @@ will be called when the menu item is clicked.
<p> This extract shows the creation of a toolbar with one toolbar
button. TQMainWindow supplies four dock areas for toolbars. When a
toolbar is created as a child of a TQMainWindow (or derived class)
-instance it will be placed in a dock area (the <a href="ntqt.html#Dock-enum">Top</a> dock area by
+instance it will be placed in a dock area (the <a href="tqt.html#Dock-enum">Top</a> dock area by
default). The slot will be called when the toolbar button is
clicked. Any dock window can be added to a dock area either using
<a href="#addDockWindow">addDockWindow</a>(), or by creating a dock window with the TQMainWindow
@@ -267,10 +267,10 @@ group.
<p> New dock windows and toolbars can be added to a TQMainWindow using
<a href="#addDockWindow">addDockWindow</a>(). Dock windows can be moved using <a href="#moveDockWindow">moveDockWindow</a>()
and removed with <a href="#removeDockWindow">removeDockWindow</a>(). TQMainWindow allows default
-dock window (toolbar) docking in all its dock areas (<a href="ntqt.html#Dock-enum">Top</a>, <a href="ntqt.html#Dock-enum">Left</a>, <a href="ntqt.html#Dock-enum">Right</a>, <a href="ntqt.html#Dock-enum">Bottom</a>). You can use <a href="#setDockEnabled">setDockEnabled</a>() to
+dock window (toolbar) docking in all its dock areas (<a href="tqt.html#Dock-enum">Top</a>, <a href="tqt.html#Dock-enum">Left</a>, <a href="tqt.html#Dock-enum">Right</a>, <a href="tqt.html#Dock-enum">Bottom</a>). You can use <a href="#setDockEnabled">setDockEnabled</a>() to
enable and disable docking areas for dock windows. When adding or
moving dock windows you can specify their 'edge' (dock area). The
-currently available edges are: <a href="ntqt.html#Dock-enum">Top</a>, <a href="ntqt.html#Dock-enum">Left</a>, <a href="ntqt.html#Dock-enum">Right</a>, <a href="ntqt.html#Dock-enum">Bottom</a>, <a href="ntqt.html#Dock-enum">Minimized</a> (effectively a 'hidden' dock area) and <a href="ntqt.html#Dock-enum">TornOff</a> (floating). See <a href="ntqt.html#Dock-enum">TQt::Dock</a> for an explanation of these
+currently available edges are: <a href="tqt.html#Dock-enum">Top</a>, <a href="tqt.html#Dock-enum">Left</a>, <a href="tqt.html#Dock-enum">Right</a>, <a href="tqt.html#Dock-enum">Bottom</a>, <a href="tqt.html#Dock-enum">Minimized</a> (effectively a 'hidden' dock area) and <a href="tqt.html#Dock-enum">TornOff</a> (floating). See <a href="tqt.html#Dock-enum">TQt::Dock</a> for an explanation of these
areas. Note that the *ToolBar functions are included for backward
compatibility; all new code should use the *DockWindow functions.
TQToolbar is a subclass of <a href="tqdockwindow.html">TQDockWindow</a> so all functions that work
@@ -308,15 +308,15 @@ to rearrange the order of some toolbars. Dock windows can also be
dragged outside any docking area (undocked or 'floated'). Being
able to drag dock windows can be enabled (the default) and
disabled using <a href="#setDockWindowsMovable">setDockWindowsMovable</a>().
-<p> The <a href="ntqt.html#Dock-enum">Minimized</a> edge is a hidden dock area. If this dock area is
+<p> The <a href="tqt.html#Dock-enum">Minimized</a> edge is a hidden dock area. If this dock area is
enabled the user can hide (minimize) a dock window or show (restore)
a minimized dock window by clicking the dock window handle. If the
user hovers the mouse cursor over one of the handles, the caption of
the dock window is displayed in a tool tip (see
<a href="tqwidget.html#caption">TQDockWindow::caption</a>() or <a href="tqtoolbar.html#label">TQToolBar::label</a>()), so if you enable the
-<a href="ntqt.html#Dock-enum">Minimized</a> dock area, it is best to specify a meaningful caption
+<a href="tqt.html#Dock-enum">Minimized</a> dock area, it is best to specify a meaningful caption
or label for each dock window. To minimize a dock window
-programmatically use <a href="#moveDockWindow">moveDockWindow</a>() with an edge of <a href="ntqt.html#Dock-enum">Minimized</a>.
+programmatically use <a href="#moveDockWindow">moveDockWindow</a>() with an edge of <a href="tqt.html#Dock-enum">Minimized</a>.
<p> Dock windows are moved transparently by default, i.e. during the
drag an outline rectangle is drawn on the screen representing the
position of the dock window as it moves. If you want the dock
@@ -336,7 +336,7 @@ windows.
<p> The main window's menu bar is fixed (at the top) by default. If
you want a movable menu bar, create a <a href="tqmenubar.html">TQMenuBar</a> as a stretchable
widget inside its own movable dock window and restrict this dock
-window to only live within the <a href="ntqt.html#Dock-enum">Top</a> or <a href="ntqt.html#Dock-enum">Bottom</a> dock:
+window to only live within the <a href="tqt.html#Dock-enum">Top</a> or <a href="tqt.html#Dock-enum">Bottom</a> dock:
<p> <pre>
<a href="tqtoolbar.html">TQToolBar</a> *tb = new <a href="tqtoolbar.html">TQToolBar</a>( this );
<a href="#addDockWindow">addDockWindow</a>( tb, tr( "Menubar" ), Top, FALSE );
@@ -407,7 +407,7 @@ dock windows. (This is the default.)
</h3>
Constructs an empty main window. The <em>parent</em>, <em>name</em> and widget
flags <em>f</em>, are passed on to the <a href="tqwidget.html">TQWidget</a> constructor.
-<p> By default, the widget flags are set to <a href="ntqt.html#WidgetFlags-enum">WType_TopLevel</a> rather
+<p> By default, the widget flags are set to <a href="tqt.html#WidgetFlags-enum">WType_TopLevel</a> rather
than 0 as they are with TQWidget. If you don't want your
TQMainWindow to be a top level widget then you will need to set <em>f</em> to 0.
@@ -415,37 +415,37 @@ TQMainWindow to be a top level widget then you will need to set <em>f</em> to 0.
</h3>
Destroys the object and frees any allocated resources.
-<h3 class=fn>void <a name="addDockWindow"></a>TQMainWindow::addDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop, bool&nbsp;newLine = FALSE )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="addDockWindow"></a>TQMainWindow::addDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop, bool&nbsp;newLine = FALSE )<tt> [virtual]</tt>
</h3>
Adds <em>dockWindow</em> to the <em>edge</em> dock area.
<p> If <em>newLine</em> is FALSE (the default) then the <em>dockWindow</em> is
added at the end of the <em>edge</em>. For vertical edges the end is at
-the bottom, for horizontal edges (including <a href="ntqt.html#Dock-enum">Minimized</a>) the end
+the bottom, for horizontal edges (including <a href="tqt.html#Dock-enum">Minimized</a>) the end
is at the right. If <em>newLine</em> is TRUE a new line of dock windows
is started with <em>dockWindow</em> as the first (left-most and
top-most) dock window.
<p> If <em>dockWindow</em> is managed by another main window, it is first
removed from that window.
-<h3 class=fn>void <a name="addDockWindow-2"></a>TQMainWindow::addDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop, bool&nbsp;newLine = FALSE )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="addDockWindow-2"></a>TQMainWindow::addDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop, bool&nbsp;newLine = FALSE )<tt> [virtual]</tt>
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Adds <em>dockWindow</em> to the dock area with label <em>label</em>.
<p> If <em>newLine</em> is FALSE (the default) the <em>dockWindow</em> is added at
the end of the <em>edge</em>. For vertical edges the end is at the
-bottom, for horizontal edges (including <a href="ntqt.html#Dock-enum">Minimized</a>) the end is
+bottom, for horizontal edges (including <a href="tqt.html#Dock-enum">Minimized</a>) the end is
at the right. If <em>newLine</em> is TRUE a new line of dock windows is
started with <em>dockWindow</em> as the first (left-most and top-most)
dock window.
<p> If <em>dockWindow</em> is managed by another main window, it is first
removed from that window.
-<h3 class=fn>void <a name="addToolBar"></a>TQMainWindow::addToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="ntqt.html#Dock-enum">Dock</a> = DockTop, bool&nbsp;newLine = FALSE )
+<h3 class=fn>void <a name="addToolBar"></a>TQMainWindow::addToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="tqt.html#Dock-enum">Dock</a> = DockTop, bool&nbsp;newLine = FALSE )
</h3>
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
-<h3 class=fn>void <a name="addToolBar-2"></a>TQMainWindow::addToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqt.html#Dock-enum">Dock</a> = DockTop, bool&nbsp;newLine = FALSE )
+<h3 class=fn>void <a name="addToolBar-2"></a>TQMainWindow::addToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="tqt.html#Dock-enum">Dock</a> = DockTop, bool&nbsp;newLine = FALSE )
</h3>
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -463,7 +463,7 @@ window should appear on the popup menu.
<h3 class=fn><a href="tqdockarea.html">TQDockArea</a>&nbsp;* <a name="bottomDock"></a>TQMainWindow::bottomDock () const
</h3>
-Returns a pointer the <a href="ntqt.html#Dock-enum">Bottom</a> dock area
+Returns a pointer the <a href="tqt.html#Dock-enum">Bottom</a> dock area
<p> <p>See also <a href="#topDock">topDock</a>(), <a href="#leftDock">leftDock</a>(), and <a href="#rightDock">rightDock</a>().
<h3 class=fn><a href="tqwidget.html">TQWidget</a>&nbsp;* <a name="centralWidget"></a>TQMainWindow::centralWidget () const
@@ -522,14 +522,14 @@ TRUE, and reimplement this function to do whatever you want.
<p> This signal is emitted when the <em>dockWindow</em> has changed its
position. A change in position occurs when a dock window is moved
within its dock area or moved to another dock area (including the
-<a href="ntqt.html#Dock-enum">Minimized</a> and <tt>TearOff</tt> dock areas).
+<a href="tqt.html#Dock-enum">Minimized</a> and <tt>TearOff</tt> dock areas).
<p> <p>See also <a href="#getLocation">getLocation</a>().
-<h3 class=fn><a href="tqptrlist.html">TQPtrList</a>&lt;TQDockWindow&gt; <a name="dockWindows"></a>TQMainWindow::dockWindows ( <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
+<h3 class=fn><a href="tqptrlist.html">TQPtrList</a>&lt;TQDockWindow&gt; <a name="dockWindows"></a>TQMainWindow::dockWindows ( <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
</h3>
Returns a list of all the dock windows which are in the <em>dock</em>
dock area, regardless of their state.
-<p> For example, the <a href="ntqt.html#Dock-enum">DockTornOff</a> dock area may contain closed dock
+<p> For example, the <a href="tqt.html#Dock-enum">DockTornOff</a> dock area may contain closed dock
windows but these are returned along with the visible dock
windows.
@@ -543,7 +543,7 @@ regardless of which dock area they are in or what their state is,
<h3 class=fn>bool <a name="dockWindowsMovable"></a>TQMainWindow::dockWindowsMovable () const
</h3><p>Returns TRUE if the dock windows are movable; otherwise returns FALSE.
See the <a href="tqmainwindow.html#dockWindowsMovable-prop">"dockWindowsMovable"</a> property for details.
-<h3 class=fn>bool <a name="getLocation"></a>TQMainWindow::getLocation ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dw, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;&amp;&nbsp;dock, int&nbsp;&amp;&nbsp;index, bool&nbsp;&amp;&nbsp;nl, int&nbsp;&amp;&nbsp;extraOffset ) const
+<h3 class=fn>bool <a name="getLocation"></a>TQMainWindow::getLocation ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dw, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;&amp;&nbsp;dock, int&nbsp;&amp;&nbsp;index, bool&nbsp;&amp;&nbsp;nl, int&nbsp;&amp;&nbsp;extraOffset ) const
</h3>
Finds the location of the dock window <em>dw</em>.
<p> If the <em>dw</em> dock window is found in the main window the function
@@ -573,7 +573,7 @@ and set it to return TRUE if you wish the user to be able to see
the dock window menu.
<p> <p>See also <a href="#customize">customize</a>().
-<h3 class=fn>bool <a name="isDockEnabled"></a>TQMainWindow::isDockEnabled ( <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
+<h3 class=fn>bool <a name="isDockEnabled"></a>TQMainWindow::isDockEnabled ( <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
</h3>
Returns TRUE if the <em>dock</em> dock area is enabled, i.e. it can
accept user dragged dock windows; otherwise returns FALSE.
@@ -586,7 +586,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
user dragged dock windows; otherwise returns FALSE.
<p> <p>See also <a href="#setDockEnabled">setDockEnabled</a>().
-<h3 class=fn>bool <a name="isDockEnabled-3"></a>TQMainWindow::isDockEnabled ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;tb, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
+<h3 class=fn>bool <a name="isDockEnabled-3"></a>TQMainWindow::isDockEnabled ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;tb, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns TRUE if dock area <em>dock</em> is enabled for the dock window
@@ -612,13 +612,13 @@ TRUE.
<h3 class=fn><a href="tqdockarea.html">TQDockArea</a>&nbsp;* <a name="leftDock"></a>TQMainWindow::leftDock () const
</h3>
-Returns the <a href="ntqt.html#Dock-enum">Left</a> dock area
+Returns the <a href="tqt.html#Dock-enum">Left</a> dock area
<p> <p>See also <a href="#rightDock">rightDock</a>(), <a href="#topDock">topDock</a>(), and <a href="#bottomDock">bottomDock</a>().
<h3 class=fn>void <a name="lineUpDockWindows"></a>TQMainWindow::lineUpDockWindows ( bool&nbsp;keepNewLines = FALSE )
</h3>
This function will line up dock windows within the visible dock
-areas (<a href="ntqt.html#Dock-enum">Top</a>, <a href="ntqt.html#Dock-enum">Left</a>, <a href="ntqt.html#Dock-enum">Right</a> and <a href="ntqt.html#Dock-enum">Bottom</a>) as compactly as
+areas (<a href="tqt.html#Dock-enum">Top</a>, <a href="tqt.html#Dock-enum">Left</a>, <a href="tqt.html#Dock-enum">Right</a> and <a href="tqt.html#Dock-enum">Bottom</a>) as compactly as
possible.
<p> If <em>keepNewLines</em> is TRUE, all dock windows stay on their
original lines. If <em>keepNewLines</em> is FALSE then newlines may be
@@ -644,15 +644,15 @@ Returns the menu bar for this window.
<p> If there isn't one, then <a href="#menuBar">menuBar</a>() creates an empty menu bar.
<p> <p>See also <a href="#statusBar">statusBar</a>().
-<h3 class=fn>void <a name="moveDockWindow"></a>TQMainWindow::moveDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="moveDockWindow"></a>TQMainWindow::moveDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;edge = DockTop )<tt> [virtual]</tt>
</h3>
Moves <em>dockWindow</em> to the end of the <em>edge</em>.
<p> For vertical edges the end is at the bottom, for horizontal edges
-(including <a href="ntqt.html#Dock-enum">Minimized</a>) the end is at the right.
+(including <a href="tqt.html#Dock-enum">Minimized</a>) the end is at the right.
<p> If <em>dockWindow</em> is managed by another main window, it is first
removed from that window.
-<h3 class=fn>void <a name="moveDockWindow-2"></a>TQMainWindow::moveDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;edge, bool&nbsp;nl, int&nbsp;index, int&nbsp;extraOffset = -1 )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="moveDockWindow-2"></a>TQMainWindow::moveDockWindow ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dockWindow, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;edge, bool&nbsp;nl, int&nbsp;index, int&nbsp;extraOffset = -1 )<tt> [virtual]</tt>
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Moves <em>dockWindow</em> to position <em>index</em> within the <em>edge</em> dock
@@ -671,12 +671,12 @@ positions the user has dragged them to.)
<p> If <em>dockWindow</em> is managed by another main window, it is first
removed from that window.
-<h3 class=fn>void <a name="moveToolBar"></a>TQMainWindow::moveToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="ntqt.html#Dock-enum">Dock</a> = DockTop )
+<h3 class=fn>void <a name="moveToolBar"></a>TQMainWindow::moveToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="tqt.html#Dock-enum">Dock</a> = DockTop )
</h3>
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
-<h3 class=fn>void <a name="moveToolBar-2"></a>TQMainWindow::moveToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="ntqt.html#Dock-enum">Dock</a>, bool&nbsp;nl, int&nbsp;index, int&nbsp;extraOffset = -1 )
+<h3 class=fn>void <a name="moveToolBar-2"></a>TQMainWindow::moveToolBar ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*, <a href="tqt.html#Dock-enum">Dock</a>, bool&nbsp;nl, int&nbsp;index, int&nbsp;extraOffset = -1 )
</h3>
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -705,7 +705,7 @@ window.
<h3 class=fn><a href="tqdockarea.html">TQDockArea</a>&nbsp;* <a name="rightDock"></a>TQMainWindow::rightDock () const
</h3>
-Returns the <a href="ntqt.html#Dock-enum">Right</a> dock area
+Returns the <a href="tqt.html#Dock-enum">Right</a> dock area
<p> <p>See also <a href="#leftDock">leftDock</a>(), <a href="#topDock">topDock</a>(), and <a href="#bottomDock">bottomDock</a>().
<h3 class=fn>bool <a name="rightJustification"></a>TQMainWindow::rightJustification () const
@@ -731,13 +731,13 @@ Sets the central widget for this main window to <em>w</em>.
bottom dock areas. The menu bar is above the top dock area.
<p> <p>See also <a href="#centralWidget">centralWidget</a>().
-<h3 class=fn>void <a name="setDockEnabled"></a>TQMainWindow::setDockEnabled ( <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock, bool&nbsp;enable )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setDockEnabled"></a>TQMainWindow::setDockEnabled ( <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock, bool&nbsp;enable )<tt> [virtual]</tt>
</h3>
If <em>enable</em> is TRUE then users can dock windows in the <em>dock</em>
area. If <em>enable</em> is FALSE users cannot dock windows in the <em>dock</em> dock area.
<p> Users can dock (drag) dock windows into any enabled dock area.
-<h3 class=fn>void <a name="setDockEnabled-2"></a>TQMainWindow::setDockEnabled ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dw, <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock, bool&nbsp;enable )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setDockEnabled-2"></a>TQMainWindow::setDockEnabled ( <a href="tqdockwindow.html">TQDockWindow</a>&nbsp;*&nbsp;dw, <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock, bool&nbsp;enable )<tt> [virtual]</tt>
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> If <em>enable</em> is TRUE then users can dock the <em>dw</em> dock window in
@@ -807,11 +807,11 @@ tip group too.
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
-<h3 class=fn><a href="tqptrlist.html">TQPtrList</a>&lt;TQToolBar&gt; <a name="toolBars"></a>TQMainWindow::toolBars ( <a href="ntqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
+<h3 class=fn><a href="tqptrlist.html">TQPtrList</a>&lt;TQToolBar&gt; <a name="toolBars"></a>TQMainWindow::toolBars ( <a href="tqt.html#Dock-enum">Dock</a>&nbsp;dock ) const
</h3>
Returns a list of all the toolbars which are in the <em>dock</em> dock
area, regardless of their state.
-<p> For example, the <a href="ntqt.html#Dock-enum">TornOff</a> dock area may contain closed toolbars
+<p> For example, the <a href="tqt.html#Dock-enum">TornOff</a> dock area may contain closed toolbars
but these are returned along with the visible toolbars.
<p> <p>See also <a href="#dockWindows">dockWindows</a>().
@@ -828,7 +828,7 @@ Returns this main window's tool tip group. If there isn't one,
<h3 class=fn><a href="tqdockarea.html">TQDockArea</a>&nbsp;* <a name="topDock"></a>TQMainWindow::topDock () const
</h3>
-Returns the <a href="ntqt.html#Dock-enum">Top</a> dock area
+Returns the <a href="tqt.html#Dock-enum">Top</a> dock area
<p> <p>See also <a href="#bottomDock">bottomDock</a>(), <a href="#leftDock">leftDock</a>(), and <a href="#rightDock">rightDock</a>().
<h3 class=fn>bool <a name="usesBigPixmaps"></a>TQMainWindow::usesBigPixmaps () const
@@ -864,7 +864,7 @@ be used for popup menus, for example:
<p>If TRUE (the default), the user will be able to move movable dock
windows from one TQMainWindow dock area to another, including the
<tt>TearOff</tt> area (i.e. where the dock window floats freely as a
-window in its own right), and the <a href="ntqt.html#Dock-enum">Minimized</a> area (where only
+window in its own right), and the <a href="tqt.html#Dock-enum">Minimized</a> area (where only
the dock window's handle is shown below the menu bar). Moveable
dock windows can also be moved within TQMainWindow dock areas, i.e.
to rearrange them within a dock area.
@@ -925,7 +925,7 @@ and for connecting to the main window's widget's
</h3>
<p> Writes the layout (sizes and positions) of the dock windows in the
-dock areas of the TQMainWindow <em>mainWindow</em>, including <a href="ntqt.html#Dock-enum">Minimized</a> and <a href="ntqt.html#Dock-enum">TornOff</a> dock windows, to the text stream <em>ts</em>.
+dock areas of the TQMainWindow <em>mainWindow</em>, including <a href="tqt.html#Dock-enum">Minimized</a> and <a href="tqt.html#Dock-enum">TornOff</a> dock windows, to the text stream <em>ts</em>.
<p> This can be used, for example, in conjunction with <a href="tqsettings.html">TQSettings</a> to
save the user's layout when the \mainWindow receives a closeEvent.
<p> <p>See also <a href="#operator-gt-gt">operator&gt;&gt;</a>() and <a href="tqwidget.html#closeEvent">closeEvent</a>().
@@ -935,7 +935,7 @@ save the user's layout when the \mainWindow receives a closeEvent.
<p> Reads the layout (sizes and positions) of the dock windows in the
dock areas of the TQMainWindow <em>mainWindow</em> from the text stream,
-<em>ts</em>, including <a href="ntqt.html#Dock-enum">Minimized</a> and <a href="ntqt.html#Dock-enum">TornOff</a> dock windows.
+<em>ts</em>, including <a href="tqt.html#Dock-enum">Minimized</a> and <a href="tqt.html#Dock-enum">TornOff</a> dock windows.
Restores the dock windows and dock areas to these sizes and
positions. The layout information must be in the format produced
by <a href="#operator-lt-lt">operator&lt;&lt;</a>().