WindowExtUnix

Trait WindowExtUnix 

Source
pub trait WindowExtUnix {
    // Required methods
    fn gtk_window(&self) -> &ApplicationWindow;
    fn skip_taskbar(&self);
}
Expand description

Additional methods on Window that are specific to Unix.

Required Methods§

Source

fn gtk_window(&self) -> &ApplicationWindow

Returns the ApplicatonWindow from gtk crate that is used by this window.

Returns None if the window doesn’t use xlib (if it uses wayland for example).

Source

fn skip_taskbar(&self)

Not to display window icon in the task bar.

Implementors§