pub trait WindowImpl: WindowImplExt + WidgetImpl {
    // Provided methods
    fn activate_focus(&self) { ... }
    fn activate_default(&self) { ... }
    fn keys_changed(&self) { ... }
    fn enable_debugging(&self, toggle: bool) -> bool { ... }
    fn close_request(&self) -> Propagation { ... }
}

Provided Methods§

source

fn activate_focus(&self)

Activates the current focused widget within the window.

source

fn activate_default(&self)

Activates the default widget for the window.

source

fn keys_changed(&self)

Signal gets emitted when the set of accelerators or mnemonics that are associated with window changes.

source

fn enable_debugging(&self, toggle: bool) -> bool

Class handler for the GtkWindow::enable-debugging keybinding signal.

source

fn close_request(&self) -> Propagation

Class handler for the GtkWindow::close-request signal.

Object Safety§

This trait is not object safe.

Implementors§