Qt 4.8
Public Functions | Public Variables | List of all members
QWizardLayoutInfo Class Reference

Public Functions

bool operator!= (const QWizardLayoutInfo &other)
 
bool operator== (const QWizardLayoutInfo &other)
 
 QWizardLayoutInfo ()
 

Public Variables

int buttonSpacing
 
int childMarginBottom
 
int childMarginLeft
 
int childMarginRight
 
int childMarginTop
 
bool extension
 
bool header
 
int hspacing
 
bool sideWidget
 
bool subTitle
 
bool title
 
int topLevelMarginBottom
 
int topLevelMarginLeft
 
int topLevelMarginRight
 
int topLevelMarginTop
 
int vspacing
 
bool watermark
 
QWizard::WizardStyle wizStyle
 

Detailed Description

Definition at line 214 of file qwizard.cpp.

Constructors and Destructors

◆ QWizardLayoutInfo()

QWizardLayoutInfo::QWizardLayoutInfo ( )
inline

Definition at line 217 of file qwizard.cpp.

221  wizStyle(QWizard::ClassicStyle), header(false), watermark(false), title(false),
222  subTitle(false), extension(false), sideWidget(false) {}
int topLevelMarginBottom
Definition: qwizard.cpp:227
QWizard::WizardStyle wizStyle
Definition: qwizard.cpp:235

Functions

◆ operator!=()

bool QWizardLayoutInfo::operator!= ( const QWizardLayoutInfo other)
inline

Definition at line 244 of file qwizard.cpp.

244 { return !operator==(other); }
bool operator==(const QWizardLayoutInfo &other)
Definition: qwizard.cpp:247

◆ operator==()

bool QWizardLayoutInfo::operator== ( const QWizardLayoutInfo other)

Definition at line 247 of file qwizard.cpp.

248 {
249  return topLevelMarginLeft == other.topLevelMarginLeft
253  && childMarginLeft == other.childMarginLeft
255  && childMarginTop == other.childMarginTop
257  && hspacing == other.hspacing
258  && vspacing == other.vspacing
259  && buttonSpacing == other.buttonSpacing
260  && wizStyle == other.wizStyle
261  && header == other.header
262  && watermark == other.watermark
263  && title == other.title
264  && subTitle == other.subTitle
265  && extension == other.extension
266  && sideWidget == other.sideWidget;
267 }
int topLevelMarginBottom
Definition: qwizard.cpp:227
QWizard::WizardStyle wizStyle
Definition: qwizard.cpp:235

Properties

◆ buttonSpacing

int QWizardLayoutInfo::buttonSpacing

◆ childMarginBottom

int QWizardLayoutInfo::childMarginBottom

◆ childMarginLeft

int QWizardLayoutInfo::childMarginLeft

◆ childMarginRight

int QWizardLayoutInfo::childMarginRight

◆ childMarginTop

int QWizardLayoutInfo::childMarginTop

◆ extension

bool QWizardLayoutInfo::extension

◆ header

bool QWizardLayoutInfo::header

◆ hspacing

int QWizardLayoutInfo::hspacing

◆ sideWidget

bool QWizardLayoutInfo::sideWidget

◆ subTitle

bool QWizardLayoutInfo::subTitle

◆ title

bool QWizardLayoutInfo::title

◆ topLevelMarginBottom

int QWizardLayoutInfo::topLevelMarginBottom

◆ topLevelMarginLeft

int QWizardLayoutInfo::topLevelMarginLeft

◆ topLevelMarginRight

int QWizardLayoutInfo::topLevelMarginRight

◆ topLevelMarginTop

int QWizardLayoutInfo::topLevelMarginTop

◆ vspacing

int QWizardLayoutInfo::vspacing

◆ watermark

bool QWizardLayoutInfo::watermark

◆ wizStyle

QWizard::WizardStyle QWizardLayoutInfo::wizStyle

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