Struct gtk4::builders::ColorDialogBuilder
source · 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 that is presented by ColorDialog::choose_rgba()
.
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
.