Qt 4.8
Public Types | Public Functions | Public Variables | Protected Functions | List of all members
QStyleOptionProgressBarV2 Class Reference

The QStyleOptionProgressBarV2 class is used to describe the parameters necessary for drawing a progress bar in Qt 4.1 or above. More...

#include <qstyleoption.h>

Inheritance diagram for QStyleOptionProgressBarV2:
QStyleOptionProgressBar QStyleOption

Public Types

enum  StyleOptionType { Type = SO_ProgressBar }
 This enum is used to hold information about the type of the style option, and is defined for each QStyleOption subclass. More...
 
enum  StyleOptionVersion { Version = 2 }
 This enum is used to hold information about the version of the style option, and is defined for each QStyleOption subclass. More...
 
- Public Types inherited from QStyleOptionProgressBar
enum  StyleOptionType { Type = SO_ProgressBar }
 This enum is used to hold information about the type of the style option, and is defined for each QStyleOption subclass. More...
 
enum  StyleOptionVersion { Version = 1 }
 This enum is used to hold information about the version of the style option, and is defined for each QStyleOption subclass. More...
 
- Public Types inherited from QStyleOption
enum  OptionType {
  SO_Default, SO_FocusRect, SO_Button, SO_Tab,
  SO_MenuItem, SO_Frame, SO_ProgressBar, SO_ToolBox,
  SO_Header, SO_Q3DockWindow, SO_DockWidget, SO_Q3ListViewItem,
  SO_ViewItem, SO_TabWidgetFrame, SO_TabBarBase, SO_RubberBand,
  SO_ToolBar, SO_GraphicsItem, SO_Complex = 0xf0000, SO_Slider,
  SO_SpinBox, SO_ToolButton, SO_ComboBox, SO_Q3ListView,
  SO_TitleBar, SO_GroupBox, SO_SizeGrip, SO_CustomBase = 0xf00,
  SO_ComplexCustomBase = 0xf000000
}
 This enum is used internally by QStyleOption, its subclasses, and qstyleoption_cast() to determine the type of style option. More...
 
enum  StyleOptionType { Type = SO_Default }
 This enum is used to hold information about the type of the style option, and is defined for each QStyleOption subclass. More...
 
enum  StyleOptionVersion { Version = 1 }
 This enum is used to hold information about the version of the style option, and is defined for each QStyleOption subclass. More...
 

Public Functions

QStyleOptionProgressBarV2operator= (const QStyleOptionProgressBar &other)
 Assigns the other style option to this style option. More...
 
 QStyleOptionProgressBarV2 ()
 Constructs a QStyleOptionProgressBarV2, initializing he members variables to their default values. More...
 
 QStyleOptionProgressBarV2 (const QStyleOptionProgressBar &other)
 Constructs a copy of the other style option which can be either of the QStyleOptionProgressBar and QStyleOptionProgressBarV2 types. More...
 
 QStyleOptionProgressBarV2 (const QStyleOptionProgressBarV2 &other)
 Constructs a copy of the other style option. More...
 
- Public Functions inherited from QStyleOptionProgressBar
 QStyleOptionProgressBar ()
 Constructs a QStyleOptionProgressBar, initializing the members variables to their default values. More...
 
 QStyleOptionProgressBar (const QStyleOptionProgressBar &other)
 Constructs a copy of the other style option. More...
 
- Public Functions inherited from QStyleOption
void init (const QWidget *w)
 Use initFrom(widget) instead. More...
 
void initFrom (const QWidget *w)
 
QStyleOptionoperator= (const QStyleOption &other)
 Assign other to this QStyleOption. More...
 
 QStyleOption (int version=QStyleOption::Version, int type=SO_Default)
 Constructs a QStyleOption with the specified version and type. More...
 
 QStyleOption (const QStyleOption &other)
 Constructs a copy of other. More...
 
 ~QStyleOption ()
 Destroys this style option object. More...
 

Public Variables

bool bottomToTop
 whether the text reads from bottom to top when the progress bar is vertical More...
 
bool invertedAppearance
 whether the progress bar's appearance is inverted More...
 
Qt::Orientation orientation
 the progress bar's orientation (horizontal or vertical); the default orentation is Qt::Horizontal More...
 
- Public Variables inherited from QStyleOptionProgressBar
int maximum
 the maximum value for the progress bar More...
 
int minimum
 the minimum value for the progress bar More...
 
int progress
 the current progress for the progress bar More...
 
QString text
 the text for the progress bar More...
 
Qt::Alignment textAlignment
 the text alignment for the text in the QProgressBar More...
 
bool textVisible
 a flag indicating whether or not text is visible More...
 
- Public Variables inherited from QStyleOption
Qt::LayoutDirection direction
 the text layout direction that should be used when drawing text in the control More...
 
QFontMetrics fontMetrics
 the font metrics that should be used when drawing text in the control More...
 
QPalette palette
 the palette that should be used when painting the control More...
 
QRect rect
 the area that should be used for various calculations and painting More...
 
QStyle::State state
 the style flags that are used when drawing the control More...
 
int type
 the option type of the style option More...
 
int version
 the version of the style option More...
 

Protected Functions

 QStyleOptionProgressBarV2 (int version)
 
- Protected Functions inherited from QStyleOptionProgressBar
 QStyleOptionProgressBar (int version)
 

Additional Inherited Members

Detailed Description

The QStyleOptionProgressBarV2 class is used to describe the parameters necessary for drawing a progress bar in Qt 4.1 or above.

Since
4.1

An instance of this class has type SO_ProgressBar 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 do not need to check it.

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

if (const QStyleOptionProgressBar *progressBarOption =
qstyleoption_cast<const QStyleOptionProgressBar *>(option)) {
QStyleOptionProgressBarV2 progressBarV2(*progressBarOption);
// draw the progress bar using progressBarV2
}

In the example above: If the progressBarOption's version is 1, the extra members (orientation , invertedAppearance , and bottomToTop ) are set to default values for progressBarV2. If the progressBarOption's version is 2, the constructor will simply copy the extra members to progressBarV2.

For an example demonstrating how style options can be used, see the widgets/styles{Styles} example.

See also
QStyleOptionProgressBar, QStyleOption

Definition at line 417 of file qstyleoption.h.

Enumerations

◆ StyleOptionType

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

  • Type The type of style option provided (SO_ProgressBar 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.

See also
StyleOptionVersion
Enumerator
Type 

Definition at line 420 of file qstyleoption.h.

◆ StyleOptionVersion

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

  • Version 2

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.

See also
StyleOptionType
Enumerator
Version 

Definition at line 421 of file qstyleoption.h.

Constructors and Destructors

◆ QStyleOptionProgressBarV2() [1/4]

QStyleOptionProgressBarV2::QStyleOptionProgressBarV2 ( )

Constructs a QStyleOptionProgressBarV2, initializing he members variables to their default values.

Definition at line 2824 of file qstyleoption.cpp.

2827 {
2828 }
Qt::Orientation orientation
the progress bar&#39;s orientation (horizontal or vertical); the default orentation is Qt::Horizontal ...
Definition: qstyleoption.h:422
bool bottomToTop
whether the text reads from bottom to top when the progress bar is vertical
Definition: qstyleoption.h:424
bool invertedAppearance
whether the progress bar&#39;s appearance is inverted
Definition: qstyleoption.h:423
QStyleOptionProgressBar()
Constructs a QStyleOptionProgressBar, initializing the members variables to their default values...

◆ QStyleOptionProgressBarV2() [2/4]

QStyleOptionProgressBarV2::QStyleOptionProgressBarV2 ( const QStyleOptionProgressBar other)

Constructs a copy of the other style option which can be either of the QStyleOptionProgressBar and QStyleOptionProgressBarV2 types.

If the {other} style option's version is 1, the extra members (orientation , invertedAppearance , and bottomToTop ) are set to default values for the new style option. If {other}'s version is 2, the extra members are simply copied.

See also
version

Definition at line 2850 of file qstyleoption.cpp.

2852 {
2854  if (pb2)
2855  *this = *pb2;
2856  else
2857  *((QStyleOptionProgressBar *)this) = other;
2858 }
Qt::Orientation orientation
the progress bar&#39;s orientation (horizontal or vertical); the default orentation is Qt::Horizontal ...
Definition: qstyleoption.h:422
bool bottomToTop
whether the text reads from bottom to top when the progress bar is vertical
Definition: qstyleoption.h:424
T qstyleoption_cast(const QStyleOption *option)
Definition: qstyleoption.h:885
The QStyleOptionProgressBarV2 class is used to describe the parameters necessary for drawing a progre...
Definition: qstyleoption.h:417
The QStyleOptionProgressBar class is used to describe the parameters necessary for drawing a progress...
Definition: qstyleoption.h:396
bool invertedAppearance
whether the progress bar&#39;s appearance is inverted
Definition: qstyleoption.h:423
QStyleOptionProgressBar()
Constructs a QStyleOptionProgressBar, initializing the members variables to their default values...

◆ QStyleOptionProgressBarV2() [3/4]

QStyleOptionProgressBarV2::QStyleOptionProgressBarV2 ( const QStyleOptionProgressBarV2 other)

Constructs a copy of the other style option.

Definition at line 2863 of file qstyleoption.cpp.

2865 {
2866  *this = other;
2867 }
Qt::Orientation orientation
the progress bar&#39;s orientation (horizontal or vertical); the default orentation is Qt::Horizontal ...
Definition: qstyleoption.h:422
bool bottomToTop
whether the text reads from bottom to top when the progress bar is vertical
Definition: qstyleoption.h:424
bool invertedAppearance
whether the progress bar&#39;s appearance is inverted
Definition: qstyleoption.h:423
QStyleOptionProgressBar()
Constructs a QStyleOptionProgressBar, initializing the members variables to their default values...

◆ QStyleOptionProgressBarV2() [4/4]

QStyleOptionProgressBarV2::QStyleOptionProgressBarV2 ( int  version)
protected
Warning
This function is not part of the public interface.

Definition at line 2833 of file qstyleoption.cpp.

2836 {
2837 }
int version
the version of the style option
Definition: qstyleoption.h:86
Qt::Orientation orientation
the progress bar&#39;s orientation (horizontal or vertical); the default orentation is Qt::Horizontal ...
Definition: qstyleoption.h:422
bool bottomToTop
whether the text reads from bottom to top when the progress bar is vertical
Definition: qstyleoption.h:424
bool invertedAppearance
whether the progress bar&#39;s appearance is inverted
Definition: qstyleoption.h:423
QStyleOptionProgressBar()
Constructs a QStyleOptionProgressBar, initializing the members variables to their default values...

Functions

◆ operator=()

QStyleOptionProgressBarV2 & QStyleOptionProgressBarV2::operator= ( const QStyleOptionProgressBar other)

Assigns the other style option to this style option.

The other style option can be either of the QStyleOptionProgressBarV2 or QStyleOptionProgressBar types.

If the {other} style option's version is 1, the extra members (orientation , invertedAppearance , and bottomToTop ) are set to default values for this style option. If {other}'s version is 2, the extra members are simply copied to this style option.

Definition at line 2880 of file qstyleoption.cpp.

2881 {
2883 
2885  orientation = pb2 ? pb2->orientation : Qt::Horizontal;
2886  invertedAppearance = pb2 ? pb2->invertedAppearance : false;
2887  bottomToTop = pb2 ? pb2->bottomToTop : false;
2888  return *this;
2889 }
Qt::Orientation orientation
the progress bar&#39;s orientation (horizontal or vertical); the default orentation is Qt::Horizontal ...
Definition: qstyleoption.h:422
bool bottomToTop
whether the text reads from bottom to top when the progress bar is vertical
Definition: qstyleoption.h:424
T qstyleoption_cast(const QStyleOption *option)
Definition: qstyleoption.h:885
The QStyleOptionProgressBarV2 class is used to describe the parameters necessary for drawing a progre...
Definition: qstyleoption.h:417
QStyleOption & operator=(const QStyleOption &other)
Assign other to this QStyleOption.
bool invertedAppearance
whether the progress bar&#39;s appearance is inverted
Definition: qstyleoption.h:423

Properties

◆ bottomToTop

QStyleOptionProgressBarV2::bottomToTop

whether the text reads from bottom to top when the progress bar is vertical

The default value is false.

See also
QProgressBar::textDirection

Definition at line 424 of file qstyleoption.h.

Referenced by operator=().

◆ invertedAppearance

QStyleOptionProgressBarV2::invertedAppearance

whether the progress bar's appearance is inverted

The default value is false.

See also
QProgressBar::invertedAppearance

Definition at line 423 of file qstyleoption.h.

Referenced by QCommonStyle::drawControl(), QWindowsStyle::drawControl(), QMotifStyle::drawControl(), and operator=().

◆ orientation

QStyleOptionProgressBarV2::orientation

the progress bar's orientation (horizontal or vertical); the default orentation is Qt::Horizontal

See also
QProgressBar::orientation

Definition at line 422 of file qstyleoption.h.

Referenced by QCommonStyle::drawControl(), QWindowsStyle::drawControl(), QMotifStyle::drawControl(), operator=(), and QProgressBar::sizeHint().


The documentation for this class was generated from the following files: