Table Of Contents

Previous topic

QStyleOptionFrame

Next topic

QStyleOptionFrameV3

QStyleOptionFrameV2

Inherited by: QStyleOptionFrameV3

Detailed Description

The PySide.QtGui.QStyleOptionFrameV2 class is used to describe the parameters necessary for drawing a frame in Qt 4.1 or above.

PySide.QtGui.QStyleOptionFrameV2 inherits PySide.QtGui.QStyleOptionFrame which is used for drawing several built-in Qt widgets, including PySide.QtGui.QFrame , PySide.QtGui.QGroupBox , PySide.QtGui.QLineEdit , and PySide.QtGui.QMenu .

An instance of the PySide.QtGui.QStyleOptionFrameV2 class has type SO_Frame and version 2. The type is used internally by PySide.QtGui.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 PySide.QtGui.QStyleOption subclass and your own styles. The version is used by PySide.QtGui.QStyleOption subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast() , you normally do not need to check it.

If you create your own PySide.QtGui.QStyle subclass, you should handle both PySide.QtGui.QStyleOptionFrame and PySide.QtGui.QStyleOptionFrameV2 . One way to achieve this is to use the PySide.QtGui.QStyleOptionFrameV2 copy constructor. For example:

option = QStyleOptionFrame()

if isinstance(option, QStyleOptionFrameV2):
    frameOptionV2 = QStyleOptionFrameV2(option)

    # draw the frame using frameOptionV2

In the example above: If the frameOption ‘s version is 1, QStyleOptionFrameV2.FrameFeature is set to None for frameOptionV2 . If frameOption ‘s version is 2, the constructor will simply copy the frameOption ‘s QStyleOptionFrameV2.FrameFeature value.

For an example demonstrating how style options can be used, see the Styles example.

class PySide.QtGui.QStyleOptionFrameV2
class PySide.QtGui.QStyleOptionFrameV2(other)
class PySide.QtGui.QStyleOptionFrameV2(other)
class PySide.QtGui.QStyleOptionFrameV2(version)
Parameters:

Constructs a PySide.QtGui.QStyleOptionFrameV2 object.

Constructs a PySide.QtGui.QStyleOptionFrameV2 copy of the other style option which can be either of the PySide.QtGui.QStyleOptionFrameV2 or PySide.QtGui.QStyleOptionFrame types.

If the other style option’s version is 1, the new style option’s QStyleOptionFrameV2.FrameFeature value is set to QStyleOptionFrameV2.None . If its version is 2, its QStyleOptionFrameV2.FrameFeature value is simply copied to the new style option.

See also

version

Constructs a PySide.QtGui.QStyleOptionFrameV2 copy of the other style option.

PySide.QtGui.QStyleOptionFrameV2.StyleOptionVersion

This enum is used to hold information about the version of the style option, and is defined for each PySide.QtGui.QStyleOption subclass.

Constant Description
QStyleOptionFrameV2.Version 2

The version is used by PySide.QtGui.QStyleOption subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast() , you normally do not need to check it.

See also

QStyleOptionFrame.StyleOptionType

PySide.QtGui.QStyleOptionFrameV2.FrameFeature

This enum describes the different types of features a frame can have.

Constant Description
QStyleOptionFrameV2.None Indicates a normal frame.
QStyleOptionFrameV2.Flat Indicates a flat frame.
PySide.QtGui.QStyleOptionFrameV2.features