diff options
Diffstat (limited to 'doc/man/man3/tqlayout.3qt')
-rw-r--r-- | doc/man/man3/tqlayout.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqlayout.3qt b/doc/man/man3/tqlayout.3qt index ffeb4db22..e7dfe53c7 100644 --- a/doc/man/man3/tqlayout.3qt +++ b/doc/man/man3/tqlayout.3qt @@ -48,10 +48,10 @@ Inherited by QGridLayout and QBoxLayout. .BI "ResizeMode \fBresizeMode\fR () const" .br .ti -1c -.BI "virtual void \fBsetMenuBar\fR ( QMenuBar * w )" +.BI "virtual void \fBsetMenuBar\fR ( TQMenuBar * w )" .br .ti -1c -.BI "QMenuBar * \fBmenuBar\fR () const" +.BI "TQMenuBar * \fBmenuBar\fR () const" .br .ti -1c .BI "TQWidget * \fBmainWidget\fR ()" @@ -84,13 +84,13 @@ Inherited by QGridLayout and QBoxLayout. .BI "void \fBremoveItem\fR ( QLayoutItem * item )" .br .ti -1c -.BI "virtual QSizePolicy::ExpandData \fBexpanding\fR () const" +.BI "virtual TQSizePolicy::ExpandData \fBexpanding\fR () const" .br .ti -1c -.BI "virtual QSize \fBminimumSize\fR () const" +.BI "virtual TQSize \fBminimumSize\fR () const" .br .ti -1c -.BI "virtual QSize \fBmaximumSize\fR () const" +.BI "virtual TQSize \fBmaximumSize\fR () const" .br .ti -1c .BI "virtual void \fBsetGeometry\fR ( const QRect & r ) = 0" @@ -143,7 +143,7 @@ The QLayout class is the base class of geometry managers. .PP This is an abstract base class inherited by the concrete classes, QBoxLayout and QGridLayout. .PP -For users of QLayout subclasses or of QMainWindow there is seldom any need to use the basic functions provided by QLayout, such as setResizeMode() or setMenuBar(). See the layout overview page for more information. +For users of QLayout subclasses or of TQMainWindow there is seldom any need to use the basic functions provided by QLayout, such as setResizeMode() or setMenuBar(). See the layout overview page for more information. .PP To make your own layout manager, subclass QGLayoutIterator and implement the functions addItem(), sizeHint(), setGeometry(), and iterator(). You should also implement minimumSize() to ensure your layout isn't resized to zero size if there is too little space. To support children whose heights depend on their widths, implement hasHeightForWidth() and heightForWidth(). See the custom layout page for an in-depth description. .PP @@ -215,7 +215,7 @@ Note that a top-level layout is not necessarily associated with the top-level wi See also setAutoAdd(). .SH "void QLayout::deleteAllItems ()\fC [protected]\fR" Removes and deletes all items in this layout. -.SH "QSizePolicy::ExpandData QLayout::expanding () const\fC [virtual]\fR" +.SH "TQSizePolicy::ExpandData QLayout::expanding () const\fC [virtual]\fR" Returns whether this layout can make use of more space than sizeHint(). A value of Vertical or Horizontal means that it wants to grow in only one dimension, whereas \fCBothDirections\fR means that it wants to grow in both dimensions. .PP The default implementation returns \fCBothDirections\fR. @@ -270,7 +270,7 @@ Reimplemented from QLayoutItem. Returns the main widget (parent widget) of this layout, or 0 if this layout is a sub-layout that is not yet inserted. .SH "int QLayout::margin () const" Returns the width of the outside border of the layout. See the "margin" property for details. -.SH "QSize QLayout::maximumSize () const\fC [virtual]\fR" +.SH "TQSize QLayout::maximumSize () const\fC [virtual]\fR" Returns the maximum size of this layout. This is the largest size that the layout can have while still respecting the specifications. Does not include what's needed by margin() or menuBar(). .PP The default implementation allows unlimited resizing. @@ -278,9 +278,9 @@ The default implementation allows unlimited resizing. Reimplemented from QLayoutItem. .PP Reimplemented in QGridLayout and QBoxLayout. -.SH "QMenuBar * QLayout::menuBar () const" +.SH "TQMenuBar * QLayout::menuBar () const" Returns the menu bar set for this layout, or 0 if no menu bar is set. -.SH "QSize QLayout::minimumSize () const\fC [virtual]\fR" +.SH "TQSize QLayout::minimumSize () const\fC [virtual]\fR" Returns the minimum size of this layout. This is the smallest size that the layout can have while still respecting the specifications. Does not include what's needed by margin() or menuBar(). .PP The default implementation allows unlimited resizing. @@ -333,10 +333,10 @@ Reimplemented from QLayoutItem. Reimplemented in QGridLayout and QBoxLayout. .SH "void QLayout::setMargin ( int )\fC [virtual]\fR" Sets the width of the outside border of the layout. See the "margin" property for details. -.SH "void QLayout::setMenuBar ( QMenuBar * w )\fC [virtual]\fR" +.SH "void QLayout::setMenuBar ( TQMenuBar * w )\fC [virtual]\fR" Makes the geometry manager take account of the menu bar \fIw\fR. All child widgets are placed below the bottom edge of the menu bar. .PP -A menu bar does its own geometry management: never do addWidget() on a QMenuBar. +A menu bar does its own geometry management: never do addWidget() on a TQMenuBar. .PP Examples: .)l layout/layout.cpp and scrollview/scrollview.cpp. |