![]() |
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции | ![]() |
Описанные ниже члены класса являются частью слоя поддержки Qt 3. Они введены для поддержки старого кода в Qt 4. Мы советуем не использовать их во вновь создаваемом коде.
This enum describes the different resizing behaviors child widgets can have:
Константа | Значение | Описание |
---|---|---|
QSplitter::Auto | 3 | The widget will be resized according to the stretch factors set in its sizePolicy(). |
QSplitter::Stretch | 0 | The widget will be resized when the splitter itself is resized. |
QSplitter::KeepSize | 1 | QSplitter will try to keep the widget's size unchanged. |
QSplitter::FollowSizeHint | 2 | QSplitter will resize the widget when the widget's size hint changes. |
Use setStretchFactor() instead.
Use one of the constructors that doesn't take the name argument and then use setObjectName() instead.
Use one of the constructors that don't take the name argument and then use setObjectName() instead.
Returns the with of the the margin around the contents of the widget.
Use QWidget::getContentsMargins() instead.
See also setMargin() and QWidget::getContentsMargins().
Use insertWidget(0, widget) instead.
Use addWidget(widget) instead.
Это перегруженная функция, предоставленная для удобства.
Use setCollapsible(indexOf(widget, collapsible)) instead.
Sets the width of the margin around the contents of the widget to margin.
Используйте взамен QWidget::setContentsMargins().
See also margin() and QWidget::setContentsMargins().
Use setStretchFactor() instead.
Например, если у вас есть код
splitter->setResizeMode(firstChild, QSplitter::KeepSize); splitter->setResizeMode(secondChild, QSplitter::Stretch);
вы можете записать его в виде
splitter->setStretchFactor(splitter->indexOf(firstChild), 0); splitter->setStretchFactor(splitter->indexOf(secondChild), 1);
Copyright © 2008 Trolltech | Торговые марки | Qt 4.3.5 |