Trait sourceview5::prelude::DrawingAreaExt

source ·
pub trait DrawingAreaExt: IsA<DrawingArea> + Sealed + 'static {
    // Provided methods
    fn content_height(&self) -> i32 { ... }
    fn content_width(&self) -> i32 { ... }
    fn set_content_height(&self, height: i32) { ... }
    fn set_content_width(&self, width: i32) { ... }
    fn connect_resize<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self, i32, i32) + 'static { ... }
    fn connect_content_height_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_content_width_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn content_height(&self) -> i32

source

fn content_width(&self) -> i32

source

fn set_content_height(&self, height: i32)

source

fn set_content_width(&self, width: i32)

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> DrawingAreaExt for O
where O: IsA<DrawingArea>,