Trait WindowGroupExt

Source
pub trait WindowGroupExt: 'static {
    // Required methods
    fn add_window<P: IsA<Window>>(&self, window: &P);
    fn get_current_device_grab(&self, device: &Device) -> Option<Widget>;
    fn get_current_grab(&self) -> Option<Widget>;
    fn list_windows(&self) -> Vec<Window>;
    fn remove_window<P: IsA<Window>>(&self, window: &P);
}

Required Methods§

Source

fn add_window<P: IsA<Window>>(&self, window: &P)

Source

fn get_current_device_grab(&self, device: &Device) -> Option<Widget>

Source

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

Source

fn list_windows(&self) -> Vec<Window>

Source

fn remove_window<P: IsA<Window>>(&self, window: &P)

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§