pub struct ColorDialogBuilder { /* private fields */ }Available on crate feature
v4_10 only.Expand description
A builder-pattern type to construct ColorDialog objects.
Implementations§
Source§impl ColorDialogBuilder
impl ColorDialogBuilder
Sourcepub fn title(self, title: impl Into<GString>) -> Self
pub fn title(self, title: impl Into<GString>) -> Self
A title that may be shown on the color chooser dialog.
Sourcepub fn with_alpha(self, with_alpha: bool) -> Self
pub fn with_alpha(self, with_alpha: bool) -> Self
Whether colors may have alpha (translucency).
When with-alpha is false, the color that is selected will be forced to have alpha == 1.
Sourcepub fn build(self) -> ColorDialog
pub fn build(self) -> ColorDialog
Build the ColorDialog.