Split window::Event::Focused into two variants

This commit is contained in:
Héctor Ramón Jiménez 2021-01-15 18:21:44 +01:00
parent 0b140488b4
commit 45dc02e9bd
2 changed files with 12 additions and 7 deletions

View file

@ -3,7 +3,7 @@ use std::path::PathBuf;
/// A window-related event.
#[derive(PartialEq, Clone, Debug)]
pub enum Event {
/// A window was resized
/// A window was resized.
Resized {
/// The new width of the window (in units)
width: u32,
@ -12,6 +12,12 @@ pub enum Event {
height: u32,
},
/// A window was focused.
Focused,
/// A window was unfocused.
Unfocused,
/// A file is being hovered over the window.
///
/// When the user hovers multiple files at once, this event will be emitted
@ -29,7 +35,4 @@ pub enum Event {
/// There will be a single `FilesHoveredLeft` event triggered even if
/// multiple files were hovered.
FilesHoveredLeft,
/// A window was focused or not
Focused(bool),
}