Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions

QStyleOption Class Reference

The QStyleOption class stores the parameters used by QStyle functions. More...

#include <QStyleOption>

Part of the QtGui module.

Inherited by QStyleOptionButton, QStyleOptionComplex, QStyleOptionDockWidget, QStyleOptionFocusRect, QStyleOptionFrame, QStyleOptionHeader, QStyleOptionMenuItem, QStyleOptionProgressBar, QStyleOptionQ3DockWindow, QStyleOptionQ3ListViewItem, QStyleOptionTab, QStyleOptionToolBox, and QStyleOptionViewItem.

Public Types

Properties

Public Functions

Related Non-Members


Detailed Description

The QStyleOption class stores the parameters used by QStyle functions.

QStyleOption and its subclasses contain all the information that QStyle functions need to draw a graphical element.

For performance reasons, there are few member functions and the access to the member variables is direct (i.e., using the . or -> operator). This low-level feel makes the structures straightforward to use and emphasizes that these are simply parameters used by the style functions.

The caller of a QStyle function usually creates QStyleOption objects on the stack. This combined with Qt's extensive use of implicit sharing for types such as QString, QPalette, and QColor ensures that no memory allocation needlessly takes place.

The following code snippet shows how to use a specific QStyleOption subclass to paint a push button:

    void MyPushButton::paintEvent()
    {
        QStyleOptionButton option;
        option.init(this);
        option.state = isDown() ? QStyle::State_Sunken : QStyle::State_Raised;
        if (isDefault())
            option.features |= QStyleOptionButton::DefaultButton;
        option.text = text();
        option.icon = icon();

        QPainter painter(this);
        style().drawControl(QStyle::CE_PushButton, &option, &painter, this);
    }

In our example, the control is a QStyle::CE_PushButton, and according to the QStyle::drawControl() documentation the corresponding class is QStyleOptionButton.

When reimplementing QStyle functions that take a QStyleOption parameter, you often need to cast the QStyleOption to a subclass. For safety, you can use qstyleoption_cast<T>() to ensure that the pointer type is correct. For example:

    void MyStyle::drawPrimitive(PrimitiveElement element,
                                const QStyleOption *option,
                                QPainter *painter,
                                const QWidget *widget)
    {
        if (element == PE_FocusRect) {
            const QStyleOptionFocusRect *focusRectOption =
                    qstyleoption_cast<const QStyleOptionFocusRect *>(option);
            if (focusRectOption) {
                ...
            }
        } else {
            ...
        }
    }

qstyleoption_cast<T>() will return 0 if the object to which option points isn't of the correct type.

See also QStyle and QStylePainter.


Member Type Documentation

enum QStyleOption::OptionType

This enum 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.

ConstantValueDescription
QStyleOption::SO_Default0QStyleOption
QStyleOption::SO_FocusRect1QStyleOptionFocusRect
QStyleOption::SO_Button2QStyleOptionButton
QStyleOption::SO_Tab3QStyleOptionTab
QStyleOption::SO_TabWidgetFrame13QStyleOptionTabWidgetFrame
QStyleOption::SO_MenuItem4QStyleOptionMenuItem
QStyleOption::SO_Complex0xf0000QStyleOptionComplex
QStyleOption::SO_Slider QStyleOptionSlider
QStyleOption::SO_Frame5QStyleOptionFrame
QStyleOption::SO_ProgressBar6QStyleOptionProgressBar
QStyleOption::SO_Q3ListView QStyleOptionQ3ListView
QStyleOption::SO_Q3ListViewItem11QStyleOptionQ3ListViewItem
QStyleOption::SO_Header8QStyleOptionHeader
QStyleOption::SO_Q3DockWindow9QStyleOptionQ3DockWindow
QStyleOption::SO_DockWidget10QStyleOptionDockWidget
QStyleOption::SO_SpinBox QStyleOptionSpinBox
QStyleOption::SO_ToolButton QStyleOptionToolButton
QStyleOption::SO_ComboBox QStyleOptionComboBox
QStyleOption::SO_ToolBox7QStyleOptionToolBox
QStyleOption::SO_TitleBar QStyleOptionTitleBar
QStyleOption::SO_ViewItem12QStyleOptionViewItem (used in Interviews)
QStyleOption::SO_CustomBase0xf00Reserved for custom QStyleOptions; all custom controls values must be above this value
QStyleOption::SO_ComplexCustomBase0xf000000Reserved for custom QStyleOptions; all custom complex controls values must be above this value

Property Documentation

palette : const QPalette

This property holds the palette that should be used in when painting the control.

rect : const QRect

This property holds the area that should be used for various calculations and painting.

This can have different meanings for different types of elements. For example, for QStyle::CE_PushButton it would be the rectangle for the entire button, while for QStyle::CE_PushButtonLabel it would be just the area for the push button label.

state : const QStyle::State

This property holds the style flags that are used when drawing the control.

See also QStyle::drawPrimitive(), QStyle::drawControl(), QStyle::drawComplexControl(), and QStyle::StyleFlags.

type : const int

This property holds the option type of the style option.

See also OptionType.

version : const int

This property holds the version of the style option.

This value can be used by subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast<T>(), you normally don't need to check it.


Member Function Documentation

QStyleOption::QStyleOption ( int version = QStyleOption::Version, int type = SO_Default )

Constructs a QStyleOption with version version and type type.

The version has no special meaning for QStyleOption; it can be used by subclasses to distinguish between different version of the same option type.

The state member variable is initialized to QStyle::State_None.

See also version and type.

QStyleOption::QStyleOption ( const QStyleOption & other )

QStyleOption::~QStyleOption ()

Destroys the style option object.

void QStyleOption::init ( const QWidget * widget )

Initializes the state, direction, rect, palette, and fontMetrics member variables based on widget.

This function is provided only for convenience. You can also initialize the variables manually if you want.

QStyleOption & QStyleOption::operator= ( const QStyleOption & other )


Related Non-Members

T qstyleoption_cast ( const QStyleOption * option )

Returns a T or 0 depending on the type and version of option.

Example:

    void MyStyle::drawPrimitive(PrimitiveElement element,
                                const QStyleOption *option,
                                QPainter *painter,
                                const QWidget *widget)
    {
        if (element == PE_FocusRect) {
            const QStyleOptionFocusRect *focusRectOption =
                    qstyleoption_cast<const QStyleOptionFocusRect *>(option);
            if (focusRectOption) {
                ...
            }
        }
        ...
    }

See also QStyleOption::type and QStyleOption::version.

T qstyleoption_cast ( QStyleOption * option )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns a T or 0 depending on the type of option.


Copyright © 2005 Trolltech Trademarks
Qt 4.0.0-b2