Trait libhelium::prelude::ContentBlockImageExt
source · pub trait ContentBlockImageExt: IsA<ContentBlockImage> + Sealed + 'static {
// Provided methods
fn file(&self) -> GString { ... }
fn set_file(&self, value: &str) { ... }
fn requested_height(&self) -> i32 { ... }
fn set_requested_height(&self, value: i32) { ... }
fn requested_width(&self) -> i32 { ... }
fn set_requested_width(&self, value: i32) { ... }
fn connect_file_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_requested_height_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_requested_width_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
fn file(&self) -> GString
fn set_file(&self, value: &str)
fn requested_height(&self) -> i32
fn set_requested_height(&self, value: i32)
fn requested_width(&self) -> i32
fn set_requested_width(&self, value: i32)
fn connect_file_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_requested_height_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_requested_width_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.