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§
Sourcefn gtk_window(&self) -> &ApplicationWindow
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).
Sourcefn skip_taskbar(&self)
fn skip_taskbar(&self)
Not to display window icon in the task bar.