diff --git a/crates/bevy_window/src/event.rs b/crates/bevy_window/src/event.rs index caf97be6f41e6..2334024fbafc9 100644 --- a/crates/bevy_window/src/event.rs +++ b/crates/bevy_window/src/event.rs @@ -1,4 +1,3 @@ -#![allow(deprecated)] use std::path::PathBuf; use bevy_ecs::{entity::Entity, event::Event}; @@ -10,7 +9,6 @@ use bevy_input::{ }; use bevy_math::{IVec2, Vec2}; use bevy_reflect::Reflect; -use smol_str::SmolStr; #[cfg(feature = "serialize")] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; @@ -190,22 +188,6 @@ pub struct CursorLeft { pub window: Entity, } -/// An event that is sent whenever a window receives a character from the OS or underlying system. -#[deprecated(since = "0.14.0", note = "Use `KeyboardInput` instead.")] -#[derive(Event, Debug, Clone, PartialEq, Eq, Reflect)] -#[reflect(Debug, PartialEq)] -#[cfg_attr( - feature = "serialize", - derive(serde::Serialize, serde::Deserialize), - reflect(Serialize, Deserialize) -)] -pub struct ReceivedCharacter { - /// Window that received the character. - pub window: Entity, - /// Received character. - pub char: SmolStr, -} - /// A Input Method Editor event. /// /// This event is the translated version of the `WindowEvent::Ime` from the `winit` crate. @@ -239,8 +221,7 @@ pub enum Ime { }, /// Notifies when the IME was enabled. /// - /// After this event, you will receive events `Ime::Preedit` and `Ime::Commit`, - /// and stop receiving events [`ReceivedCharacter`]. + /// After this event, you will receive events `Ime::Preedit` and `Ime::Commit`. Enabled { /// Window that received the event. window: Entity, @@ -440,7 +421,6 @@ pub enum WindowEvent { CursorMoved(CursorMoved), FileDragAndDrop(FileDragAndDrop), Ime(Ime), - ReceivedCharacter(ReceivedCharacter), RequestRedraw(RequestRedraw), WindowBackendScaleFactorChanged(WindowBackendScaleFactorChanged), WindowCloseRequested(WindowCloseRequested), @@ -498,11 +478,6 @@ impl From for WindowEvent { Self::Ime(e) } } -impl From for WindowEvent { - fn from(e: ReceivedCharacter) -> Self { - Self::ReceivedCharacter(e) - } -} impl From for WindowEvent { fn from(e: RequestRedraw) -> Self { Self::RequestRedraw(e) diff --git a/crates/bevy_window/src/lib.rs b/crates/bevy_window/src/lib.rs index 49d6e96f40812..e6e06ab49fd42 100644 --- a/crates/bevy_window/src/lib.rs +++ b/crates/bevy_window/src/lib.rs @@ -34,12 +34,10 @@ pub use window::*; /// /// This includes the most common types in this crate, re-exported for your convenience. pub mod prelude { - #[allow(deprecated)] #[doc(hidden)] pub use crate::{ - CursorEntered, CursorLeft, CursorMoved, FileDragAndDrop, Ime, MonitorSelection, - ReceivedCharacter, Window, WindowMoved, WindowPlugin, WindowPosition, - WindowResizeConstraints, + CursorEntered, CursorLeft, CursorMoved, FileDragAndDrop, Ime, MonitorSelection, Window, + WindowMoved, WindowPlugin, WindowPosition, WindowResizeConstraints, }; } @@ -92,7 +90,6 @@ pub struct WindowPlugin { impl Plugin for WindowPlugin { fn build(&self, app: &mut App) { // User convenience events - #[allow(deprecated)] app.add_event::() .add_event::() .add_event::() @@ -104,7 +101,6 @@ impl Plugin for WindowPlugin { .add_event::() .add_event::() .add_event::() - .add_event::() .add_event::() .add_event::() .add_event::() @@ -145,7 +141,6 @@ impl Plugin for WindowPlugin { } // Register event types - #[allow(deprecated)] app.register_type::() .register_type::() .register_type::() @@ -156,7 +151,6 @@ impl Plugin for WindowPlugin { .register_type::() .register_type::() .register_type::() - .register_type::() .register_type::() .register_type::() .register_type::() diff --git a/crates/bevy_window/src/window.rs b/crates/bevy_window/src/window.rs index eb8ca610fc9af..ad001fea947fd 100644 --- a/crates/bevy_window/src/window.rs +++ b/crates/bevy_window/src/window.rs @@ -227,7 +227,6 @@ pub struct Window { /// Should the window use Input Method Editor? /// /// If enabled, the window will receive [`Ime`](crate::Ime) events instead of - /// [`ReceivedCharacter`](crate::ReceivedCharacter) or /// `KeyboardInput` from `bevy_input`. /// /// IME should be enabled during text input, but not when you expect to get the exact key pressed. diff --git a/crates/bevy_winit/src/lib.rs b/crates/bevy_winit/src/lib.rs index b70720deceb0c..afad99ab093ad 100644 --- a/crates/bevy_winit/src/lib.rs +++ b/crates/bevy_winit/src/lib.rs @@ -22,7 +22,6 @@ pub use winit::platform::android::activity as android_activity; use bevy_a11y::AccessibilityRequested; use bevy_app::{App, Last, Plugin}; use bevy_ecs::prelude::*; -#[allow(deprecated)] use bevy_window::{exit_on_all_closed, Window, WindowCreated}; pub use converters::convert_system_cursor_icon; pub use state::{CursorSource, CustomCursorCache, CustomCursorCacheKey, PendingCursor}; diff --git a/crates/bevy_winit/src/state.rs b/crates/bevy_winit/src/state.rs index f515513a325b6..4cff720878a59 100644 --- a/crates/bevy_winit/src/state.rs +++ b/crates/bevy_winit/src/state.rs @@ -24,10 +24,9 @@ use winit::event::{DeviceEvent, DeviceId, StartCause, WindowEvent}; use winit::event_loop::{ActiveEventLoop, ControlFlow, EventLoop}; use winit::window::WindowId; -#[allow(deprecated)] use bevy_window::{ - AppLifecycle, CursorEntered, CursorLeft, CursorMoved, FileDragAndDrop, Ime, ReceivedCharacter, - RequestRedraw, Window, WindowBackendScaleFactorChanged, WindowCloseRequested, WindowDestroyed, + AppLifecycle, CursorEntered, CursorLeft, CursorMoved, FileDragAndDrop, Ime, RequestRedraw, + Window, WindowBackendScaleFactorChanged, WindowCloseRequested, WindowDestroyed, WindowEvent as BevyWindowEvent, WindowFocused, WindowMoved, WindowOccluded, WindowResized, WindowScaleFactorChanged, WindowThemeChanged, }; @@ -272,14 +271,6 @@ impl ApplicationHandler for WinitAppRunnerState { // properly releasing keys when the window loses focus. if !(is_synthetic && event.state.is_pressed()) { // Process the keyboard input event, as long as it's not a synthetic key press. - if event.state.is_pressed() { - if let Some(char) = &event.text { - let char = char.clone(); - #[allow(deprecated)] - self.bevy_window_events - .send(ReceivedCharacter { window, char }); - } - } self.bevy_window_events .send(converters::convert_keyboard_input(event, window)); } @@ -716,9 +707,6 @@ impl WinitAppRunnerState { BevyWindowEvent::Ime(e) => { world.send_event(e); } - BevyWindowEvent::ReceivedCharacter(e) => { - world.send_event(e); - } BevyWindowEvent::RequestRedraw(e) => { world.send_event(e); }