The QWidgetItem class is a layout item that represents a widget. More...
 #include <QWidgetItem>Inherits: QLayoutItem.
| QWidgetItem ( QWidget * widget ) | 
| virtual Qt::Orientations | expandingDirections () const | 
| virtual QRect | geometry () const | 
| virtual bool | hasHeightForWidth () const | 
| virtual int | heightForWidth ( int w ) const | 
| virtual bool | isEmpty () const | 
| virtual QSize | maximumSize () const | 
| virtual QSize | minimumSize () const | 
| virtual void | setGeometry ( const QRect & rect ) | 
| virtual QSize | sizeHint () const | 
| virtual QWidget * | widget () | 
The QWidgetItem class is a layout item that represents a widget.
Normally, you don't need to use this class directly. Qt's built-in layout managers provide the following functions for manipulating widgets in layouts:
| Class | Functions | 
|---|---|
| QBoxLayout | addWidget(), insertWidget(), setStretchFactor() | 
| QGridLayout | addWidget() | 
| QStackedLayout | addWidget(), insertWidget(), currentWidget(), setCurrentWidget(), widget() | 
See also QLayout, QSpacerItem, and QLayoutItem::widget().
Creates an item containing the given widget.
Reimplemented from QLayoutItem::expandingDirections().
Reimplemented from QLayoutItem::geometry().
See also setGeometry().
Reimplemented from QLayoutItem::hasHeightForWidth().
Reimplemented from QLayoutItem::heightForWidth().
Reimplemented from QLayoutItem::isEmpty().
Returns true if the widget is hidden; otherwise returns false.
See also QWidget::isHidden().
Reimplemented from QLayoutItem::maximumSize().
Reimplemented from QLayoutItem::minimumSize().
Reimplemented from QLayoutItem::setGeometry().
See also geometry().
Reimplemented from QLayoutItem::sizeHint().
Reimplemented from QLayoutItem::widget().
Returns the widget managed by this item.