pub struct WizardOption(/* private fields */);
Expand description
This enum specifies various options that affect the look and feel of a wizard.
C++ enum: QWizard::WizardOption
.
This enum specifies various options that affect the look and feel of a wizard.
The WizardOptions type is a typedef for QFlags<WizardOption>. It stores an OR combination of WizardOption values.
See also setOptions(), setOption(), and testOption().
Implementations§
Source§impl WizardOption
impl WizardOption
Sourcepub const IndependentPages: WizardOption
pub const IndependentPages: WizardOption
The pages are independent of each other (i.e., they don’t derive values from each other). (C++ enum variant: IndependentPages = 1
)
Sourcepub const IgnoreSubTitles: WizardOption
pub const IgnoreSubTitles: WizardOption
Don’t show any subtitles, even if they are set. (C++ enum variant: IgnoreSubTitles = 2
)
Sourcepub const ExtendedWatermarkPixmap: WizardOption
pub const ExtendedWatermarkPixmap: WizardOption
Extend any WatermarkPixmap all the way down to the window’s edge. (C++ enum variant: ExtendedWatermarkPixmap = 4
)
Sourcepub const NoDefaultButton: WizardOption
pub const NoDefaultButton: WizardOption
Don’t make the Next or Finish button the dialog’s default button. (C++ enum variant: NoDefaultButton = 8
)
Sourcepub const NoBackButtonOnStartPage: WizardOption
pub const NoBackButtonOnStartPage: WizardOption
Don’t show the Back button on the start page. (C++ enum variant: NoBackButtonOnStartPage = 16
)
Sourcepub const NoBackButtonOnLastPage: WizardOption
pub const NoBackButtonOnLastPage: WizardOption
Don’t show the Back button on the last page. (C++ enum variant: NoBackButtonOnLastPage = 32
)
Sourcepub const DisabledBackButtonOnLastPage: WizardOption
pub const DisabledBackButtonOnLastPage: WizardOption
Disable the Back button on the last page. (C++ enum variant: DisabledBackButtonOnLastPage = 64
)
Sourcepub const HaveNextButtonOnLastPage: WizardOption
pub const HaveNextButtonOnLastPage: WizardOption
Show the (disabled) Next button on the last page. (C++ enum variant: HaveNextButtonOnLastPage = 128
)
Sourcepub const HaveFinishButtonOnEarlyPages: WizardOption
pub const HaveFinishButtonOnEarlyPages: WizardOption
Show the (disabled) Finish button on non-final pages. (C++ enum variant: HaveFinishButtonOnEarlyPages = 256
)
Sourcepub const NoCancelButton: WizardOption
pub const NoCancelButton: WizardOption
Don’t show the Cancel button. (C++ enum variant: NoCancelButton = 512
)
Sourcepub const CancelButtonOnLeft: WizardOption
pub const CancelButtonOnLeft: WizardOption
Put the Cancel button on the left of Back (rather than on the right of Finish or Next). (C++ enum variant: CancelButtonOnLeft = 1024
)
Sourcepub const HaveHelpButton: WizardOption
pub const HaveHelpButton: WizardOption
Show the Help button. (C++ enum variant: HaveHelpButton = 2048
)
Sourcepub const HelpButtonOnRight: WizardOption
pub const HelpButtonOnRight: WizardOption
Put the Help button on the far right of the button layout (rather than on the far left). (C++ enum variant: HelpButtonOnRight = 4096
)
Sourcepub const HaveCustomButton1: WizardOption
pub const HaveCustomButton1: WizardOption
Show the first user-defined button (CustomButton1). (C++ enum variant: HaveCustomButton1 = 8192
)
Sourcepub const HaveCustomButton2: WizardOption
pub const HaveCustomButton2: WizardOption
Show the second user-defined button (CustomButton2). (C++ enum variant: HaveCustomButton2 = 16384
)
Sourcepub const HaveCustomButton3: WizardOption
pub const HaveCustomButton3: WizardOption
Show the third user-defined button (CustomButton3). (C++ enum variant: HaveCustomButton3 = 32768
)
Sourcepub const NoCancelButtonOnLastPage: WizardOption
pub const NoCancelButtonOnLastPage: WizardOption
Don’t show the Cancel button on the last page. (C++ enum variant: NoCancelButtonOnLastPage = 65536
)
Trait Implementations§
Source§impl<T: Into<QFlags<WizardOption>>> BitOr<T> for WizardOption
impl<T: Into<QFlags<WizardOption>>> BitOr<T> for WizardOption
Source§impl Clone for WizardOption
impl Clone for WizardOption
Source§fn clone(&self) -> WizardOption
fn clone(&self) -> WizardOption
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more