|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.trolltech.qt.QSignalEmitter
com.trolltech.qt.QtJambiObject
com.trolltech.qt.gui.QWidgetItem
public class QWidgetItem
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:
QBoxLayout | addWidget(), insertWidget(), setStretchFactor() |
QGridLayout | addWidget() |
QStackedLayout | addWidget(), insertWidget(), currentWidget(), setCurrentWidget(), widget() |
QLayout, QSpacerItem, and QLayoutItem::widget().
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter |
|---|
QSignalEmitter.Signal0, QSignalEmitter.Signal1, QSignalEmitter.Signal2, QSignalEmitter.Signal3, QSignalEmitter.Signal4, QSignalEmitter.Signal5, QSignalEmitter.Signal6, QSignalEmitter.Signal7, QSignalEmitter.Signal8, QSignalEmitter.Signal9 |
| Constructor Summary | |
|---|---|
QWidgetItem(QWidget w)
Creates an item containing the given widget. |
|
| Method Summary | |
|---|---|
Qt.Alignment |
alignment()
Returns the alignment of this item. |
QSizePolicy.ControlTypes |
controlTypes()
Returns the control type(s) for the layout item. |
Qt.Orientations |
expandingDirections()
Returns whether this layout item can make use of more space than sizeHint(). |
static QWidgetItem |
fromNativePointer(QNativePointer nativePointer)
|
QRect |
geometry()
Returns the rectangle covered by this layout item. |
boolean |
hasHeightForWidth()
Returns true if this layout's preferred height depends on its width; otherwise returns false. |
int |
heightForWidth(int arg__1)
Returns the preferred height for this layout item, given the width w. |
void |
invalidate()
Invalidates any cached information in this layout item. |
boolean |
isEmpty()
Implemented in subclasses to return whether this item is empty, i.e. |
QLayout |
layout()
If this item is a QLayout, it is returned as a QLayout; otherwise 0 is returned. |
QSize |
maximumSize()
Implemented in subclasses to return the maximum size of this item. |
int |
minimumHeightForWidth(int arg__1)
Returns the minimum height this widget needs for the given width, w. |
QSize |
minimumSize()
Implemented in subclasses to return the minimum size of this item. |
void |
setAlignment(Qt.Alignment a)
Sets the alignment of this item to alignment. |
void |
setGeometry(QRect arg__1)
Implemented in subclasses to set this item's geometry to r. |
QSize |
sizeHint()
Implemented in subclasses to return the preferred size of this item. |
QSpacerItem |
spacerItem()
If this item is a QSpacerItem, it is returned as a QSpacerItem; otherwise 0 is returned. |
QWidget |
widget()
If this item is a QWidget, it is returned as a QWidget; otherwise 0 is returned. |
| Methods inherited from class com.trolltech.qt.QtJambiObject |
|---|
dispose, disposed, equals, finalize, reassignNativeResources, tr, tr, tr |
| Methods inherited from class com.trolltech.qt.QSignalEmitter |
|---|
blockSignals, disconnect, disconnect, signalsBlocked, signalSender, thread |
| Methods inherited from class java.lang.Object |
|---|
clone, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.trolltech.qt.QtJambiInterface |
|---|
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership |
| Constructor Detail |
|---|
public QWidgetItem(QWidget w)
| Method Detail |
|---|
public final Qt.Alignment alignment()
setAlignment().
alignment in interface QLayoutItemInterfacepublic final QSizePolicy.ControlTypes controlTypes()
QWidgetItem, the control type comes from the widget's size policy; for a QLayoutItem, the control types is derived from the layout's contents. QSizePolicy::controlType().
controlTypes in interface QLayoutItemInterfacepublic final void setAlignment(Qt.Alignment a)
Note: Item alignment is only supported by QLayoutItem subclasses where it would have a visual effect. Except for QSpacerItem, which provides blank space for layouts, all public Qt classes that inherit QLayoutItem support item alignment.
alignment().
setAlignment in interface QLayoutItemInterfacepublic Qt.Orientations expandingDirections()
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.
expandingDirections in interface QLayoutItemInterfacepublic QRect geometry()
setGeometry().
geometry in interface QLayoutItemInterfacepublic boolean hasHeightForWidth()
Reimplement this function in layout managers that support height for width.
heightForWidth(), and QWidget::heightForWidth().
hasHeightForWidth in interface QLayoutItemInterfacepublic int heightForWidth(int arg__1)
The default implementation returns -1, indicating that the preferred height is independent of the width of the item. Using the function hasHeightForWidth() will typically be much faster than calling this function and testing for -1.
Reimplement this function in layout managers that support height for width. A typical implementation will look like this:
public int heightForWidth(int w)
{
if (cache_dirty || cached_width != w) {
int h = calculateHeightForWidth(w);
cached_hfw = h;
return h;
}
return cached_hfw;
}
Caching is strongly recommended; without it layout will take exponential time. hasHeightForWidth().
heightForWidth in interface QLayoutItemInterfacepublic void invalidate()
invalidate in interface QLayoutItemInterfacepublic boolean isEmpty()
isEmpty in interface QLayoutItemInterfacepublic QLayout layout()
QLayout, it is returned as a QLayout; otherwise 0 is returned. This function provides type-safe casting.
layout in interface QLayoutItemInterfacepublic QSize maximumSize()
maximumSize in interface QLayoutItemInterfacepublic int minimumHeightForWidth(int arg__1)
heightForWidth(w).
minimumHeightForWidth in interface QLayoutItemInterfacepublic QSize minimumSize()
minimumSize in interface QLayoutItemInterfacepublic void setGeometry(QRect arg__1)
geometry().
setGeometry in interface QLayoutItemInterfacepublic QSize sizeHint()
sizeHint in interface QLayoutItemInterfacepublic QSpacerItem spacerItem()
QSpacerItem, it is returned as a QSpacerItem; otherwise 0 is returned. This function provides type-safe casting.
spacerItem in interface QLayoutItemInterfacepublic QWidget widget()
QWidget, it is returned as a QWidget; otherwise 0 is returned. This function provides type-safe casting.
widget in interface QLayoutItemInterfacepublic static QWidgetItem fromNativePointer(QNativePointer nativePointer)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||