|
|||||||||
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.QStyleOption
com.trolltech.qt.gui.QStyleOptionTab
com.trolltech.qt.gui.QStyleOptionTabV2
public class QStyleOptionTabV2
The QStyleOptionTabV2
class is used to describe the parameters necessary for drawing a tabs in Qt 4.1 or above. An instance of the QStyleOptionTabV2
class has type SO_Tab
and version 2. The type is used internally by QStyleOption
, its subclasses, and qstyleoption_cast() to determine the type of style option. In general you do not need to worry about this unless you want to create your own QStyleOption
subclass and your own styles. The version is used by QStyleOption
subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast(), you normally don't need to check it.
If you create your own QStyle
subclass, you should handle both QStyleOptionTab
and QStyleOptionTabV2
. One way to achieve this is to use the QStyleOptionTabV2
copy constructor. For example:
QStyleOptionTab tabOption = null; if ((tabOption = (QStyleOptionTab) option) != null) { QStyleOptionTabV2 tabV2 = new QStyleOptionTabV2(tabOption); // draw the tab using tabV2 }In the example above: If tabOption's version is 1, the extra member (iconSize) will be set to an invalid size for tabV2. If tabOption's version is 2, the constructor will simply copy the tab's iconSize.
For an example demonstrating how style options can be used, see the Styles example.
QStyleOptionTab
, and QStyleOption
.
Nested Class Summary | |
---|---|
static class |
QStyleOptionTabV2.StyleOptionVersion
This enum is used to hold information about the version of the style option, and is defined for each QStyleOption subclass. |
Nested classes/interfaces inherited from class com.trolltech.qt.gui.QStyleOptionTab |
---|
QStyleOptionTab.CornerWidget, QStyleOptionTab.CornerWidgets, QStyleOptionTab.SelectedPosition, QStyleOptionTab.StyleOptionType, QStyleOptionTab.TabPosition |
Nested classes/interfaces inherited from class com.trolltech.qt.gui.QStyleOption |
---|
QStyleOption.OptionType |
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 | |
---|---|
QStyleOptionTabV2()
Constructs a QStyleOptionTabV2 . |
|
QStyleOptionTabV2(QStyleOptionTab other)
Constructs a QStyleOptionTabV2 copy of the other style option which can be either of the QStyleOptionTabV2 or QStyleOptionTab types. |
|
QStyleOptionTabV2(QStyleOptionTabV2 other)
Constructs a copy of the other style option. |
Method Summary | |
---|---|
QStyleOptionTabV2 |
clone()
This method is reimplemented for internal reasons |
static QStyleOptionTabV2 |
fromNativePointer(QNativePointer nativePointer)
|
QSize |
iconSize()
This variable holds the size for the icons. |
static QNativePointer |
nativePointerArray(QStyleOptionTabV2[] array)
|
void |
setIconSize(QSize iconSize)
This variable holds the size for the icons. |
Methods inherited from class com.trolltech.qt.gui.QStyleOptionTab |
---|
cornerWidgets, icon, nativePointerArray, position, row, selectedPosition, setCornerWidgets, setIcon, setPosition, setRow, setSelectedPosition, setShape, setText, shape, text |
Methods inherited from class com.trolltech.qt.gui.QStyleOption |
---|
direction, fontMetrics, initFrom, nativePointerArray, palette, rect, setDirection, setFontMetrics, setPalette, setRect, setState, setType, setVersion, state, type, version |
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 |
---|
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.trolltech.qt.QtJambiInterface |
---|
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership |
Constructor Detail |
---|
public QStyleOptionTabV2()
QStyleOptionTabV2
.
public QStyleOptionTabV2(QStyleOptionTab other)
QStyleOptionTabV2
copy of the other style option which can be either of the QStyleOptionTabV2
or QStyleOptionTab
types. If the other style option's version is 1, the new style option's iconSize is set to an invalid value. If its version is 2, its iconSize value is simply copied to the new style option.
public QStyleOptionTabV2(QStyleOptionTabV2 other)
Method Detail |
---|
public final void setIconSize(QSize iconSize)
QSize
(-1, -1), i.e. an invalid size; use QStyle::pixelMetric()
to find the default icon size for tab bars. QTabBar::iconSize()
.
public final QSize iconSize()
QSize
(-1, -1), i.e. an invalid size; use QStyle::pixelMetric()
to find the default icon size for tab bars. QTabBar::iconSize()
.
public static QStyleOptionTabV2 fromNativePointer(QNativePointer nativePointer)
public static QNativePointer nativePointerArray(QStyleOptionTabV2[] array)
public QStyleOptionTabV2 clone()
clone
in class QStyleOptionTab
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |