Trait sourceview5::prelude::FrameExt

source ·
pub trait FrameExt: IsA<Frame> + Sealed + 'static {
    // Provided methods
    fn child(&self) -> Option<Widget> { ... }
    fn label(&self) -> Option<GString> { ... }
    fn label_align(&self) -> f32 { ... }
    fn label_widget(&self) -> Option<Widget> { ... }
    fn set_child(&self, child: Option<&impl IsA<Widget>>) { ... }
    fn set_label(&self, label: Option<&str>) { ... }
    fn set_label_align(&self, xalign: f32) { ... }
    fn set_label_widget(&self, label_widget: Option<&impl IsA<Widget>>) { ... }
    fn connect_child_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_label_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_label_widget_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
    fn connect_label_xalign_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn child(&self) -> Option<Widget>

source

fn label(&self) -> Option<GString>

source

fn label_align(&self) -> f32

source

fn label_widget(&self) -> Option<Widget>

source

fn set_child(&self, child: Option<&impl IsA<Widget>>)

source

fn set_label(&self, label: Option<&str>)

source

fn set_label_align(&self, xalign: f32)

source

fn set_label_widget(&self, label_widget: Option<&impl IsA<Widget>>)

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> FrameExt for O
where O: IsA<Frame>,