diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-08 00:08:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-08 00:08:40 -0600 |
commit | ba18a0dd03be4c063d27deab4cd864a189ea705a (patch) | |
tree | 4839433d53f6dc59d33073d06795e4fe8d146a31 /doc/html/qdockarea.html | |
parent | f9999295436181941bd9c185c880ffcffe15b3d1 (diff) | |
download | qt3-ba18a0dd03be4c063d27deab4cd864a189ea705a.tar.gz qt3-ba18a0dd03be4c063d27deab4cd864a189ea705a.zip |
Fix accidental conversion of dockwin
Diffstat (limited to 'doc/html/qdockarea.html')
-rw-r--r-- | doc/html/qdockarea.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/qdockarea.html b/doc/html/qdockarea.html index fde9e41..b70ea1a 100644 --- a/doc/html/qdockarea.html +++ b/doc/html/qdockarea.html @@ -75,12 +75,12 @@ body { background: #ffffff; color: black; } The QDockArea class manages and lays out QDockWindows. <p> <p> A QDockArea is a container which manages a list of -<a href="qdoctwindow.html">QDockWindow</a>s which it lays out within its area. In cooperation -with the <a href="qdoctwindow.html">QDockWindow</a>s it is responsible for the docking and -undocking of <a href="qdoctwindow.html">QDockWindow</a>s and moving them inside the dock -area. QDockAreas also handle the wrapping of <a href="qdoctwindow.html">QDockWindow</a>s to +<a href="qdockwindow.html">QDockWindow</a>s which it lays out within its area. In cooperation +with the <a href="qdockwindow.html">QDockWindow</a>s it is responsible for the docking and +undocking of <a href="qdockwindow.html">QDockWindow</a>s and moving them inside the dock +area. QDockAreas also handle the wrapping of <a href="qdockwindow.html">QDockWindow</a>s to fill the available space as compactly as possible. QDockAreas can -contain QToolBars since <a href="qtoolbar.html">QToolBar</a> is a <a href="qdoctwindow.html">QDockWindow</a> subclass. +contain QToolBars since <a href="qtoolbar.html">QToolBar</a> is a <a href="qdockwindow.html">QDockWindow</a> subclass. <p> <a href="qmainwindow.html">QMainWindow</a> contains four QDockAreas which you can use for your QToolBars and QDockWindows, so in most situations you do not need to use the QDockArea class directly. Although QMainWindow contains @@ -107,8 +107,8 @@ still retains its position since this is where the window will return if the user double clicks its caption. A dock window's position can be determined with <a href="#hasDockWindow">hasDockWindow</a>(). The position can be changed with <a href="#moveDockWindow">moveDockWindow</a>(). -<p> To dock or undock a dock window use <a href="qdoctwindow.html#dock">QDockWindow::dock</a>() and -<a href="qdoctwindow.html#undock">QDockWindow::undock</a>() respectively. If you want to control which +<p> To dock or undock a dock window use <a href="qdockwindow.html#dock">QDockWindow::dock</a>() and +<a href="qdockwindow.html#undock">QDockWindow::undock</a>() respectively. If you want to control which dock windows can dock in a dock area use <a href="#setAcceptDockWindow">setAcceptDockWindow</a>(). To see if a dock area contains a particular dock window use <a href="#hasDockWindow">hasDockWindow</a>(); to see how many dock windows a dock area @@ -171,14 +171,14 @@ Returns a list of the dock windows in the dock area. <h3 class=fn><a href="qdockarea.html#HandlePosition-enum">HandlePosition</a> <a name="handlePosition"></a>QDockArea::handlePosition () const </h3><p>Returns where the dock window splitter handle is placed in the dock area. See the <a href="qdockarea.html#handlePosition-prop">"handlePosition"</a> property for details. -<h3 class=fn>bool <a name="hasDockWindow"></a>QDockArea::hasDockWindow ( <a href="qdoctwindow.html">QDockWindow</a> * w, int * index = 0 ) +<h3 class=fn>bool <a name="hasDockWindow"></a>QDockArea::hasDockWindow ( <a href="qdockwindow.html">QDockWindow</a> * w, int * index = 0 ) </h3> Returns TRUE if the dock area contains the dock window <em>w</em>; otherwise returns FALSE. If <em>index</em> is not 0 it will be set as follows: if the dock area contains the dock window <em>*index</em> is set to <em>w</em>'s index position; otherwise <em>*index</em> is set to -1. -<h3 class=fn>bool <a name="isDockWindowAccepted"></a>QDockArea::isDockWindowAccepted ( <a href="qdoctwindow.html">QDockWindow</a> * dw ) +<h3 class=fn>bool <a name="isDockWindowAccepted"></a>QDockArea::isDockWindowAccepted ( <a href="qdockwindow.html">QDockWindow</a> * dw ) </h3> Returns TRUE if dock window <em>dw</em> could be docked into the dock area; otherwise returns FALSE. @@ -194,35 +194,35 @@ space. If <em>keepNewLines</em> is TRUE, only space within lines is cleaned up. If <em>keepNewLines</em> is FALSE the number of lines might be changed. -<h3 class=fn>void <a name="moveDockWindow"></a>QDockArea::moveDockWindow ( <a href="qdoctwindow.html">QDockWindow</a> * w, int index = -1 ) +<h3 class=fn>void <a name="moveDockWindow"></a>QDockArea::moveDockWindow ( <a href="qdockwindow.html">QDockWindow</a> * w, int index = -1 ) </h3> -Moves the <a href="qdoctwindow.html">QDockWindow</a> <em>w</em> within the dock area. If <em>w</em> is not +Moves the <a href="qdockwindow.html">QDockWindow</a> <em>w</em> within the dock area. If <em>w</em> is not already docked in this area, <em>w</em> is docked first. If <em>index</em> is -1 or larger than the number of docked widgets, <em>w</em> is appended at the end, otherwise it is inserted at the position <em>index</em>. -<h3 class=fn>void <a name="moveDockWindow-2"></a>QDockArea::moveDockWindow ( <a href="qdoctwindow.html">QDockWindow</a> * w, const <a href="qpoint.html">QPoint</a> & p, const <a href="qrect.html">QRect</a> & r, bool swap ) +<h3 class=fn>void <a name="moveDockWindow-2"></a>QDockArea::moveDockWindow ( <a href="qdockwindow.html">QDockWindow</a> * w, const <a href="qpoint.html">QPoint</a> & p, const <a href="qrect.html">QRect</a> & r, bool swap ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Moves the dock window <em>w</em> inside the dock area where <em>p</em> is the new position (in global screen coordinates), <em>r</em> is the suggested rectangle of the dock window and <em>swap</em> specifies whether or not the orientation of the docked widget needs to be changed. -<p> This function is used internally by <a href="qdoctwindow.html">QDockWindow</a>. You shouldn't +<p> This function is used internally by <a href="qdockwindow.html">QDockWindow</a>. You shouldn't need to call it yourself. <h3 class=fn><a href="qt.html#Orientation-enum">Orientation</a> <a name="orientation"></a>QDockArea::orientation () const </h3><p>Returns the dock area's orientation. See the <a href="qdockarea.html#orientation-prop">"orientation"</a> property for details. -<h3 class=fn>void <a name="removeDockWindow"></a>QDockArea::removeDockWindow ( <a href="qdoctwindow.html">QDockWindow</a> * w, bool makeFloating, bool swap, bool fixNewLines = TRUE ) +<h3 class=fn>void <a name="removeDockWindow"></a>QDockArea::removeDockWindow ( <a href="qdockwindow.html">QDockWindow</a> * w, bool makeFloating, bool swap, bool fixNewLines = TRUE ) </h3> Removes the dock window <em>w</em> from the dock area. If <em>makeFloating</em> is TRUE, <em>w</em> gets floated, and if <em>swap</em> is TRUE, the orientation of <em>w</em> gets swapped. If <em>fixNewLines</em> is TRUE (the default) newlines in the area will be fixed. <p> You should never need to call this function yourself. Use -<a href="qdoctwindow.html#dock">QDockWindow::dock</a>() and <a href="qdoctwindow.html#undock">QDockWindow::undock</a>() instead. +<a href="qdockwindow.html#dock">QDockWindow::dock</a>() and <a href="qdockwindow.html#undock">QDockWindow::undock</a>() instead. -<h3 class=fn>void <a name="setAcceptDockWindow"></a>QDockArea::setAcceptDockWindow ( <a href="qdoctwindow.html">QDockWindow</a> * dw, bool accept ) +<h3 class=fn>void <a name="setAcceptDockWindow"></a>QDockArea::setAcceptDockWindow ( <a href="qdockwindow.html">QDockWindow</a> * dw, bool accept ) </h3> If <em>accept</em> is TRUE, dock window <em>dw</em> can be docked in the dock area. If <em>accept</em> is FALSE, dock window <em>dw</em> cannot be docked in |