Qt:Документация 4.3.2/qlayout

Материал из Wiki.crossplatform.ru

Версия от 11:03, 12 января 2009; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QLayout Class Reference
[модуль QtGui ]

The QLayout class is the base class of geometry managers. Далее...

 #include <QLayout>

Inherits QObject and QLayoutItem.

Inherited by QBoxLayout, QGridLayout, and QStackedLayout.

[править] Открытые типы

  • enum SizeConstraint { SetDefaultConstraint, SetFixedSize, SetMinimumSize, SetMaximumSize, SetMinAndMaxSize, SetNoConstraint }

[править] Свойства

  • 1 свойство, унаследованное от QObject

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject
  • 17 открытых функций, унаследованных от QLayoutItem

[править] Статические открытые члены

  • 5 статических открытых членов, унаследованных от QObject

[править] Защищенные функции

  • 7 защищенных функций, унаследованных от QObject

[править] Дополнительные унаследованные члены

  • 1 открытый слот, унаследованный от QObject
  • 1 сигнал, унаследованный от QObject

[править] Подробное описание

The QLayout class is the base class of geometry managers.

This is an abstract base class inherited by the concrete classes QBoxLayout, QGridLayout, and QStackedLayout.

For users of QLayout subclasses or of QMainWindow there is seldom any need to use the basic functions provided by QLayout, such as setSizeConstraint() or setMenuBar(). See Layout Classes for more information.

To make your own layout manager, implement the functions addItem(), sizeHint(), setGeometry(), itemAt() and takeAt(). 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 Border Layout and Flow Layout examples for more information about implementing custom layout managers.

Geometry management stops when the layout manager is deleted.

See also QLayoutItem, Layout Classes, Basic Layouts Example, Border Layout Example, and Flow Layout Example.


[править] Описание типов

[править]
enum QLayout::SizeConstraint

The possible values are:


Константа Значение Описание
QLayout::SetDefaultConstraint 0 The main widget's minimum size is set to minimumSize(), unless the widget already has a minimum size.
QLayout::SetFixedSize 3 The main widget's size is set to sizeHint(); it cannot be resized at all.
QLayout::SetMinimumSize 2 The main widget's minimum size is set to minimumSize(); it cannot be smaller.
QLayout::SetMaximumSize 4 The main widget's maximum size is set to maximumSize(); it cannot be larger.
QLayout::SetMinAndMaxSize 5 The main widget's minimum size is set to minimumSize() and its maximum size is set to maximumSize().
QLayout::SetNoConstraint 1 The widget is not constrained.

See also setSizeConstraint().


[править] Описание cвойств

[править]
sizeConstraint : SizeConstraint

This property holds the resize mode of the layout.

The default mode is SetDefaultConstraint.

Функции доступа:

  • SizeConstraint sizeConstraint () const
  • void setSizeConstraint ( SizeConstraint )

[править]
spacing : int

This property holds the spacing between widgets inside the layout.

If no value is explicitly set, the layout's spacing is inherited from the parent layout, or from the style settings for the parent widget.

For QGridLayout, it is possible to set different horizontal and vertical spacings using setHorizontalSpacing() and setVerticalSpacing(). In that case, spacing() returns -1.

Функции доступа:

  • int spacing () const
  • void setSpacing ( int )

See also contentsRect(), getContentsMargins(), QStyle::layoutSpacing(), and QStyle::pixelMetric().


[править] Описание функций-членов

[править]
QLayout::QLayout ( QWidget * parent )

Constructs a new top-level QLayout, with parent parent. parent may not be 0.

There can be only one top-level layout for a widget. It is returned by QWidget::layout().

[править]
QLayout::QLayout ()

Constructs a new child QLayout.

This layout has to be inserted into another layout before geometry management will work.

[править]
bool QLayout::activate ()

Redoes the layout for parentWidget() if necessary.

You should generally not need to call this because it is automatically called at the most appropriate times. It returns true if the layout was redone.

See also update() and QWidget::updateGeometry().

[править]
void QLayout::addChildLayout ( QLayout * l ) [protected]

This function is called from addLayout() or insertLayout() functions in subclasses to add layout l as a sub-layout.

The only scenario in which you need to call it directly is if you implement a custom layout that supports nested layouts.

See also QBoxLayout::addLayout(), QBoxLayout::insertLayout(), and QGridLayout::addLayout().

[править]
void QLayout::addChildWidget ( QWidget * w ) [protected]

This function is called from addWidget() functions in subclasses to add w as a child widget.

If w is already in a layout, this function will give a warning and remove w from the layout. This function must therefore be called before adding w to the layout's data structure.

[править]
void QLayout::addItem ( QLayoutItem * item ) [pure virtual]

Implemented in subclasses to add an item. How it is added is specific to each subclass.

This function is not usually called in application code. To add a widget to a layout, use the addWidget() function; to add a child layout, use the addLayout() function provided by the relevant QLayout subclass.

Note: The ownership of item is transferred to the layout, and it's the layout's responsibility to delete it.

See also addWidget(), QBoxLayout::addLayout(), and QGridLayout::addLayout().

[править]
void QLayout::addWidget ( QWidget * w )

Adds widget w to this layout in a manner specific to the layout. This function uses addItem().

[править]
QRect QLayout::alignmentRect ( const QRect & r ) const [protected]

Returns the rectangle that should be covered when the geometry of this layout is set to r, provided that this layout supports setAlignment().

The result is derived from sizeHint() and expanding(). It is never larger than r.

[править]
QSize QLayout::closestAcceptableSize ( const QWidget * widget, const QSize & size ) [static]

Returns a size that satisfies all size constraints on widget, including heightForWidth() and that is as close as possible to size.

[править]
QRect QLayout::contentsRect () const

Returns the layout's geometry() rectangle, but taking into account the contents margins.

Эта функция была введена в Qt 4.3.

See also setContentsMargins() and getContentsMargins().

[править]
int QLayout::count () const [pure virtual]

Must be implemented in subclasses to return the number of items in the layout.

See also itemAt().

[править]
Qt::Orientations QLayout::expandingDirections () const [virtual]

Returns whether this layout can make use of more space than sizeHint(). A value of Qt::Vertical or Qt::Horizontal means that it wants to grow in only one dimension, whereas Qt::Vertical | Qt::Horizontal means that it wants to grow in both dimensions.

The default implementation returns Qt::Horizontal | Qt::Vertical. Subclasses reimplement it to return a meaningful value based on their child widgets's size policies.

Reimplemented from QLayoutItem.

See also sizeHint().

[править]
void QLayout::getContentsMargins ( int * left, int * top, int * right, int * bottom ) const

Extracts the left, top, right, and bottom margins used around the layout, and assigns them to *left, *top, *right, and *bottom (unless they are null pointers).

By default, QLayout uses the values provided by the style. On most platforms, the margin is 11 pixels in all directions.

Эта функция была введена в Qt 4.3.

See also setContentsMargins(), QStyle::pixelMetric(), PM_LayoutLeftMargin, PM_LayoutTopMargin, PM_LayoutRightMargin, and PM_LayoutBottomMargin.

[править]
int QLayout::indexOf ( QWidget * widget ) const [virtual]

Searches for widget widget in this layout (not including child layouts).

Returns the index of widget, or -1 if widget is not found.

The default implementation iterates over all items using itemAt()

[править]
bool QLayout::isEnabled () const

Returns true if the layout is enabled; otherwise returns false.

See also setEnabled().

[править]
QLayoutItem * QLayout::itemAt ( int index ) const [pure virtual]

Must be implemented in subclasses to return the layout item at index. If there is no such item, the function must return 0. Items are numbered consecutively from 0. If an item is deleted, other items will be renumbered.

This function can be used to iterate over a layout. The following code will draw a rectangle for each layout item in the layout structure of the widget.

 static void paintLayout(QPainter *painter, QLayoutItem *item)
 {
     QLayout *layout = item->layout();
     if (layout) {
         for (int i = 0; i < layout->count(); ++i)
             paintLayout(painter, layout->itemAt(i));
     }
     painter->drawRect(layout->geometry());
 }
 
 void MyWidget::paintEvent(QPaintEvent *)
 {
     QPainter painter(this);
     if (layout())
         paintLayout(&amp;painter, layout());
 }

See also count() and takeAt().

[править]
QSize QLayout::maximumSize () const [virtual]

Returns the maximum size of this layout. This is the largest size that the layout can have while still respecting the specifications.

The returned value doesn't include the space required by QWidget::setContentsMargins() or menuBar().

The default implementation allows unlimited resizing.

Reimplemented from QLayoutItem.

[править] QWidget * QLayout::menuBar () const

Returns the menu bar set for this layout, or 0 if no menu bar is set.

See also setMenuBar().

[править]
QSize QLayout::minimumSize () const [virtual]

Returns the minimum size of this layout. This is the smallest size that the layout can have while still respecting the specifications.

The returned value doesn't include the space required by QWidget::setContentsMargins() or menuBar().

The default implementation allows unlimited resizing.

Reimplemented from QLayoutItem.

[править]
QWidget * QLayout::parentWidget () const

Returns the parent widget of this layout, or 0 if this layout is not installed on any widget.

If the layout is a sub-layout, this function returns the parent widget of the parent layout.

See also parent().

[править]
void QLayout::removeItem ( QLayoutItem * item )

Removes the layout item item from the layout. It is the caller's responsibility to delete the item.

Notice that item can be a layout (since QLayout inherits QLayoutItem).

See also removeWidget() and addItem().

[править]
void QLayout::removeWidget ( QWidget * widget )

Removes the widget widget from the layout. After this call, it is the caller's responsibility to give the widget a reasonable geometry or to put the widget back into a layout.

Note: The ownership of widget remains the same as when it was added.

See also removeItem(), QWidget::setGeometry(), and addWidget().

[править]
bool QLayout::setAlignment ( QWidget * w, Qt::Alignment alignment )

Sets the alignment for widget w to alignment and returns true if w is found in this layout (not including child layouts); otherwise returns false.

[править]
void QLayout::setAlignment ( Qt::Alignment alignment )

Эта перегруженная функция предоставлена для удобства.

Sets the alignment of this item to alignment.

See also QLayoutItem::setAlignment().

[править]
bool QLayout::setAlignment ( QLayout * l, Qt::Alignment alignment )

Эта перегруженная функция предоставлена для удобства.

Sets the alignment for the layout l to alignment and returns true if l is found in this layout (not including child layouts); otherwise returns false.

[править]
void QLayout::setContentsMargins ( int left, int top, int right, int bottom )

Sets the left, top, right, and bottom margins to use around the layout.

By default, QLayout uses the values provided by the style. On most platforms, the margin is 11 pixels in all directions.

Эта функция была введена в Qt 4.3.

See also getContentsMargins(), QStyle::pixelMetric(), PM_LayoutLeftMargin, PM_LayoutTopMargin, PM_LayoutRightMargin, and PM_LayoutBottomMargin.

[править]
void QLayout::setEnabled ( bool enable )

Enables this layout if enable is true, otherwise disables it.

An enabled layout adjusts dynamically to changes; a disabled layout acts as if it did not exist.

By default all layouts are enabled.

See also isEnabled().

[править]
void QLayout::setMenuBar ( QWidget * widget )

Tells the geometry manager to place the menu bar widget at the top of parentWidget(), outside QWidget::contentsMargins(). All child widgets are placed below the bottom edge of the menu bar.

See also menuBar().

[править]
QLayoutItem * QLayout::takeAt ( int index ) [pure virtual]

Must be implemented in subclasses to remove the layout item at index from the layout, and return the item. If there is no such item, the function must do nothing and return 0. Items are numbered consecutively from 0. If an item is deleted, other items will be renumbered.

The following code fragment shows a safe way to remove all items from a layout:

 QLayoutItem *child;
 while ((child = layout->takeAt(0)) != 0) {
     ...
     delete child;
 }

See also itemAt() and count().

[править]
void QLayout::update ()

Updates the layout for parentWidget().

You should generally not need to call this because it is automatically called at the most appropriate times.

See also activate() and invalidate().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2