INNER CODE UNIT · Rust
set_fullscreen
versotile-org/verso · verso/src/lib.rs:288
pub fn set_fullscreen(&self, fullscreen: bool) -> Result<(), Box<ipc_channel::ErrorKind>> {
self.sender
.send(ToVersoMessage::SetFullscreen(fullscreen))?;
Ok(())
}
/// Show or hide the window
pub fn set_visible(&self, visible: bool) -> Result<(), Box<ipc_channel::ErrorKind>> {
self.sender.send(ToVersoMessage::SetVisible(visible))?;
Ok(())
}
/// Moves the window with the left mouse button until the button is released
pub fn start_dragging(&self) -> Result<(), Box<ipc_channel::ErrorKind>> {
self.sender.send(ToVersoMessage::StartDragging)?;
Ok(())
}