summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqwidget.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqwidget.3qt')
-rw-r--r--doc/man/man3/tqwidget.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt
index 41a0efd5b..de57a0406 100644
--- a/doc/man/man3/tqwidget.3qt
+++ b/doc/man/man3/tqwidget.3qt
@@ -423,7 +423,7 @@ Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView,
.BI "TQRegion \fBclipRegion\fR () const"
.br
.ti -1c
-.BI "QLayout * \fBlayout\fR () const"
+.BI "TQLayout * \fBlayout\fR () const"
.br
.ti -1c
.BI "void \fBupdateGeometry\fR ()"
@@ -1101,7 +1101,7 @@ It is almost always useful to reimplement sizeHint() and to set the correct size
If your widget is a top-level window, setCaption() and setIcon() set the title bar and icon respectively.
.IP
.PP
-See also TQEvent, TQPainter, TQGridLayout, QBoxLayout, and Abstract Widget Classes.
+See also TQEvent, TQPainter, TQGridLayout, TQBoxLayout, and Abstract Widget Classes.
.SS "Member Type Documentation"
.SH "TQWidget::BackgroundOrigin"
This enum defines the origin used to draw a widget's background pixmap.
@@ -1646,7 +1646,7 @@ Returns the widget that is currently grabbing the keyboard input.
If no widget in this application is currently grabbing the keyboard, 0 is returned.
.PP
See also grabMouse() and mouseGrabber().
-.SH "QLayout * TQWidget::layout () const"
+.SH "TQLayout * TQWidget::layout () const"
Returns the layout engine that manages the geometry of this widget's children.
.PP
If the widget does not have a layout, layout() returns 0.
@@ -2904,9 +2904,9 @@ This property holds the widget's minimum size.
.PP
The widget cannot be resized to a smaller size than the minimum widget size. The widget's size is forced to the minimum size if the current size is smaller.
.PP
-If you use a layout inside the widget, the minimum size will be set by the layout and not by setMinimumSize(), unless you set the layout's resize mode to QLayout::FreeResize.
+If you use a layout inside the widget, the minimum size will be set by the layout and not by setMinimumSize(), unless you set the layout's resize mode to TQLayout::FreeResize.
.PP
-See also minimumWidth, minimumHeight, maximumSize, sizeIncrement, and QLayout::resizeMode.
+See also minimumWidth, minimumHeight, maximumSize, sizeIncrement, and TQLayout::resizeMode.
.PP
Set this property's value with setMinimumSize() and get this property's value with minimumSize().
.SH "TQSize minimumSizeHint"
@@ -2916,7 +2916,7 @@ If the value of this property is an invalid size, no minimum size is recommended
.PP
The default implementation of minimumSizeHint() returns an invalid size if there is no layout for this widget, and returns the layout's minimum size otherwise. Most built-in widgets reimplement minimumSizeHint().
.PP
-QLayout will never resize a widget to a size smaller than minimumSizeHint.
+TQLayout will never resize a widget to a size smaller than minimumSizeHint.
.PP
See also TQSize::isValid(), size, minimumSize, and sizePolicy.
.PP
@@ -3042,7 +3042,7 @@ When resizing, the widget, if visible, receives a resize event (resizeEvent()) i
.PP
The size is adjusted if it lies outside the range defined by minimumSize() and maximumSize(). Furthermore, the size is always at least TQSize(1, 1). For toplevel widgets, the minimum size might be larger, depending on the window manager.
.PP
-If you want a top-level window to have a fixed size, call setResizeMode( QLayout::FreeResize ) on its layout.
+If you want a top-level window to have a fixed size, call setResizeMode( TQLayout::FreeResize ) on its layout.
.PP
resize() is virtual, and all other overloaded resize() implementations in TQt call it.
.PP
@@ -3084,11 +3084,11 @@ Set this property's value with setSizeIncrement() and get this property's value
.SH "TQSizePolicy sizePolicy"
This property holds the default layout behavior of the widget.
.PP
-If there is a QLayout that manages this widget's children, the size policy specified by that layout is used. If there is no such QLayout, the result of this function is used.
+If there is a TQLayout that manages this widget's children, the size policy specified by that layout is used. If there is no such TQLayout, the result of this function is used.
.PP
The default policy is Preferred/Preferred, which means that the widget can be freely resized, but prefers to be the size sizeHint() returns. Button-like widgets set the size policy to specify that they may stretch horizontally, but are fixed vertically. The same applies to lineedit controls (such as TQLineEdit, TQSpinBox or an editable TQComboBox) and other horizontally orientated widgets (such as TQProgressBar). TQToolButton's are normally square, so they allow growth in both directions. Widgets that support different directions (such as TQSlider, TQScrollBar or TQHeader) specify stretching in the respective direction only. Widgets that can provide scrollbars (usually subclasses of TQScrollView) tend to specify that they can use additional space, and that they can make do with less than sizeHint().
.PP
-See also sizeHint, QLayout, TQSizePolicy, and updateGeometry().
+See also sizeHint, TQLayout, TQSizePolicy, and updateGeometry().
.PP
Set this property's value with setSizePolicy() and get this property's value with sizePolicy().
.SH "bool underMouse"