pub trait PrintCustomWidgetExt: IsA<PrintCustomWidget> + Sealed + 'static {
    // Provided methods
    fn title(&self) -> Option<GString> { ... }
    fn widget(&self) -> Option<Widget> { ... }
    fn connect_apply<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
    fn connect_update<F: Fn(&Self, &PageSetup, &PrintSettings) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
👎Deprecated: Since 2.40
Available on crate feature v2_16 only.

Provided Methods§

source

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

👎Deprecated: Since 2.40
source

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

👎Deprecated: Since 2.40
source

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

👎Deprecated: Since 2.40
source

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

👎Deprecated: Since 2.40

Object Safety§

This trait is not object safe.

Implementors§