diff options
author | 2021-01-15 18:23:50 +0100 | |
---|---|---|
committer | 2021-01-15 18:23:50 +0100 | |
commit | 984583b0cca86d7ba8f865489cbebeb181349c19 (patch) | |
tree | aa9c1c3808f9831a930a803b9dc7ba894248cfc1 /native | |
parent | 0646280d674e02fb11fcba0dc1c9b2d3d4d8a0fe (diff) | |
parent | 45dc02e9bd0b4f2c6cc65781b850f460cddf6171 (diff) | |
download | iced-984583b0cca86d7ba8f865489cbebeb181349c19.tar.gz iced-984583b0cca86d7ba8f865489cbebeb181349c19.tar.bz2 iced-984583b0cca86d7ba8f865489cbebeb181349c19.zip |
Merge pull request #701 from cossonfork/focus_event
Diffstat (limited to 'native')
-rw-r--r-- | native/src/window/event.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/native/src/window/event.rs b/native/src/window/event.rs index b177141a..fc746781 100644 --- a/native/src/window/event.rs +++ b/native/src/window/event.rs @@ -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 |