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

Trait containing all ContentBlockImage methods.

§Implementors

ContentBlockImage

Provided Methods§

source

fn file(&self) -> GString

source

fn set_file(&self, value: &str)

source

fn requested_height(&self) -> i32

source

fn set_requested_height(&self, value: i32)

source

fn requested_width(&self) -> i32

source

fn set_requested_width(&self, value: i32)

source

fn connect_file_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_requested_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_requested_width_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§