summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdockwindow.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdockwindow.3qt')
-rw-r--r--doc/man/man3/tqdockwindow.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqdockwindow.3qt b/doc/man/man3/tqdockwindow.3qt
index f3e58e57..c95766da 100644
--- a/doc/man/man3/tqdockwindow.3qt
+++ b/doc/man/man3/tqdockwindow.3qt
@@ -24,16 +24,16 @@ Inherited by QToolBar.
.BI "enum \fBCloseMode\fR { Never = 0, Docked = 1, Undocked = 2, Always = Docked | Undocked }"
.br
.ti -1c
-.BI "\fBQDockWindow\fR ( Place p = InDock, QWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.BI "\fBQDockWindow\fR ( Place p = InDock, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
-.BI "\fBQDockWindow\fR ( QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.BI "\fBQDockWindow\fR ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
-.BI "virtual void \fBsetWidget\fR ( QWidget * w )"
+.BI "virtual void \fBsetWidget\fR ( TQWidget * w )"
.br
.ti -1c
-.BI "QWidget * \fBwidget\fR () const"
+.BI "TQWidget * \fBwidget\fR () const"
.br
.ti -1c
.BI "Place \fBplace\fR () const"
@@ -242,7 +242,7 @@ This enum specifies the possible locations for a QDockWindow:
.TP
\fCQDockWindow::OutsideDock\fR - Floating as a top level window on the desktop.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDockWindow::QDockWindow ( Place p = InDock, QWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.SH "QDockWindow::QDockWindow ( Place p = InDock, TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
Constructs a QDockWindow with parent \fIparent\fR, called \fIname\fR and with widget flags \fIf\fR.
.PP
If \fIp\fR is InDock, the dock window is docked into a dock area and \fIparent\fR \fImust\fR be a QDockArea or a QMainWindow. If the \fIparent\fR is a QMainWindow the dock window will be docked in the main window's Top dock area.
@@ -250,7 +250,7 @@ If \fIp\fR is InDock, the dock window is docked into a dock area and \fIparent\f
If \fIp\fR is OutsideDock, the dock window is created as a floating window.
.PP
We recommend creating the dock area InDock with a QMainWindow as parent then calling QMainWindow::moveDockWindow() to move the dock window where you want it.
-.SH "QDockWindow::QDockWindow ( QWidget * parent, const char * name = 0, WFlags f = 0 )"
+.SH "QDockWindow::QDockWindow ( TQWidget * parent, const char * name = 0, WFlags f = 0 )"
Constructs a QDockWindow with parent \fIparent\fR, called \fIname\fR and with widget flags \fIf\fR.
.SH "QDockArea * QDockWindow::area () const"
Returns the dock area in which this dock window is docked, or 0 if the dock window is floating.
@@ -344,7 +344,7 @@ Sets whether the dock window is resizeable to \fIb\fR. See the "resizeEnabled" p
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.SH "void QDockWindow::setVerticallyStretchable ( bool b )\fC [virtual]\fR"
Sets whether the dock window is vertically stretchable to \fIb\fR. See the "verticallyStretchable" property for details.
-.SH "void QDockWindow::setWidget ( QWidget * w )\fC [virtual]\fR"
+.SH "void QDockWindow::setWidget ( TQWidget * w )\fC [virtual]\fR"
Sets the dock window's main widget to \fIw\fR.
.PP
See also boxLayout().
@@ -356,7 +356,7 @@ See also dock(), QDockArea::moveDockWindow(), QDockArea::removeDockWindow(), QMa
This signal is emitted when the visibility of the dock window relatively to its dock area is changed. If \fIvisible\fR is TRUE, the QDockWindow is now visible to the dock area, otherwise it has been hidden.
.PP
A dock window can be hidden if it has a close button which the user has clicked. In the case of a QMainWindow a dock window can have its visibility changed (hidden or shown) by clicking its name in the dock window menu that lists the QMainWindow's dock windows.
-.SH "QWidget * QDockWindow::widget () const"
+.SH "TQWidget * QDockWindow::widget () const"
Returns the dock window's main widget.
.PP
See also setWidget().