pub trait ContentBlockImageClusterExt: IsA<ContentBlockImageCluster> + Sealed + 'static {
// Provided methods
fn set_image(
&self,
image: &impl IsA<ContentBlockImage>,
position: ContentBlockImageClusterImagePosition,
) { ... }
fn remove_image(&self, image: &impl IsA<ContentBlockImage>) { ... }
fn title(&self) -> GString { ... }
fn set_title(&self, value: &str) { ... }
fn subtitle(&self) -> GString { ... }
fn set_subtitle(&self, value: &str) { ... }
fn icon(&self) -> GString { ... }
fn set_icon(&self, value: &str) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_subtitle_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_icon_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn set_image(
&self,
image: &impl IsA<ContentBlockImage>,
position: ContentBlockImageClusterImagePosition,
)
fn set_image( &self, image: &impl IsA<ContentBlockImage>, position: ContentBlockImageClusterImagePosition, )
sourcefn remove_image(&self, image: &impl IsA<ContentBlockImage>)
fn remove_image(&self, image: &impl IsA<ContentBlockImage>)
fn title(&self) -> GString
fn set_title(&self, value: &str)
fn subtitle(&self) -> GString
fn set_subtitle(&self, value: &str)
fn icon(&self) -> GString
fn set_icon(&self, value: &str)
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_icon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.