CopperSpice API
1.9.2
|
The QStyleOptionRubberBand class is used to describe the parameters needed for drawing a rubber band. More...
Public Types | |
enum | StyleOptionType |
enum | StyleOptionVersion |
Public Types inherited from QStyleOption | |
enum | OptionType |
enum | StyleOptionType |
enum | StyleOptionVersion |
Public Methods | |
QStyleOptionRubberBand () | |
QStyleOptionRubberBand (const QStyleOptionRubberBand &other) | |
QStyleOptionRubberBand & | operator= (const QStyleOptionRubberBand &other) = default |
Public Methods inherited from QStyleOption | |
QStyleOption (const QStyleOption &other) | |
QStyleOption (int version=QStyleOption::Version, int type=SO_Default) | |
~QStyleOption () | |
void | initFrom (const QWidget *widget) |
QStyleOption & | operator= (const QStyleOption &other) |
Additional Inherited Members | |
Public Members inherited from QStyleOption | |
int | type |
int | version |
Related Functions inherited from QStyleOption | |
T | qstyleoption_cast (const QStyleOption *option) |
T | qstyleoption_cast (QStyleOption *option) |
The QStyleOptionRubberBand class is used to describe the parameters needed for drawing a rubber band. QStyleOptionRubberBand contains all the information that QStyle functions need to draw QRubberBand.
This enum is used to hold information about the type of the style option, and is defined for each QStyleOption subclass.
Constant | Value | Description |
---|---|---|
QStyleOptionRubberBand::Type | SO_RubberBand | The type of style option provided (SO_RubberBand for this class). |
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.
This enum is used to hold information about the version of the style option, and is defined for each QStyleOption subclass.
Constant | Value | Description |
---|---|---|
QStyleOptionRubberBand::Version | 1 | 1 |
The version is used by QStyleOption subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast(), you normally do not need to check it.
QStyleOptionRubberBand::QStyleOptionRubberBand | ( | ) |
Creates an empty QStyleOptionRubberBand.
|
inline |
Copy constructs a new QStyleOptionRubberBand from other.
|
default |
Copy assigns from other and returns a reference to this object.