Trait AtkWindowExt

Source
pub trait AtkWindowExt: 'static {
    // Required methods
    fn connect_activate<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_create<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_deactivate<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
    fn connect_destroy<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_maximize<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_minimize<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_move<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_resize<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_restore<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}

Required Methods§

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§