2023-10-14 19:07:39 -07:00
|
|
|
#[cfg(all(feature = "rwh_06", any(x11_platform, macos_platform, windows_platform)))]
|
|
|
|
|
#[allow(deprecated)]
|
2023-04-11 12:50:52 +01:00
|
|
|
fn main() -> Result<(), impl std::error::Error> {
|
2022-12-22 08:07:13 +08:00
|
|
|
use std::collections::HashMap;
|
2022-10-10 05:12:23 +09:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
use winit::application::ApplicationHandler;
|
2024-01-31 17:29:59 +04:00
|
|
|
use winit::dpi::{LogicalPosition, LogicalSize, Position};
|
2024-05-20 20:27:36 +04:00
|
|
|
use winit::event::{ElementState, KeyEvent, WindowEvent};
|
2024-01-31 17:29:59 +04:00
|
|
|
use winit::event_loop::{ActiveEventLoop, EventLoop};
|
|
|
|
|
use winit::raw_window_handle::HasRawWindowHandle;
|
2024-05-20 20:27:36 +04:00
|
|
|
use winit::window::{Window, WindowId};
|
2024-01-31 17:29:59 +04:00
|
|
|
|
|
|
|
|
#[path = "util/fill.rs"]
|
|
|
|
|
mod fill;
|
2022-10-10 05:12:23 +09:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
#[derive(Default)]
|
|
|
|
|
struct Application {
|
|
|
|
|
parent_window_id: Option<WindowId>,
|
|
|
|
|
windows: HashMap<WindowId, Window>,
|
2022-12-22 08:07:13 +08:00
|
|
|
}
|
2022-10-10 05:12:23 +09:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
impl ApplicationHandler for Application {
|
2024-06-30 00:41:57 +02:00
|
|
|
fn can_create_surfaces(&mut self, event_loop: &ActiveEventLoop) {
|
2024-05-20 20:27:36 +04:00
|
|
|
let attributes = Window::default_attributes()
|
|
|
|
|
.with_title("parent window")
|
|
|
|
|
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
|
|
|
|
.with_inner_size(LogicalSize::new(640.0f32, 480.0f32));
|
|
|
|
|
let window = event_loop.create_window(attributes).unwrap();
|
2022-10-10 05:12:23 +09:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
println!("Parent window id: {:?})", window.id());
|
|
|
|
|
self.parent_window_id = Some(window.id());
|
2022-10-10 05:12:23 +09:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
self.windows.insert(window.id(), window);
|
|
|
|
|
}
|
2024-01-31 17:29:59 +04:00
|
|
|
|
2024-05-20 20:27:36 +04:00
|
|
|
fn window_event(
|
|
|
|
|
&mut self,
|
|
|
|
|
event_loop: &ActiveEventLoop,
|
|
|
|
|
window_id: winit::window::WindowId,
|
|
|
|
|
event: WindowEvent,
|
|
|
|
|
) {
|
|
|
|
|
match event {
|
2022-10-10 05:12:23 +09:00
|
|
|
WindowEvent::CloseRequested => {
|
2024-05-20 20:27:36 +04:00
|
|
|
self.windows.clear();
|
2024-01-31 17:29:59 +04:00
|
|
|
event_loop.exit();
|
2022-10-10 05:12:23 +09:00
|
|
|
},
|
|
|
|
|
WindowEvent::CursorEntered { device_id: _ } => {
|
2022-12-22 08:07:13 +08:00
|
|
|
// On x11, println when the cursor entered in a window even if the child window
|
2022-10-10 05:12:23 +09:00
|
|
|
// is created by some key inputs.
|
|
|
|
|
// the child windows are always placed at (0, 0) with size (200, 200) in the
|
2024-02-19 11:58:44 +07:00
|
|
|
// parent window, so we also can see this log when we move
|
|
|
|
|
// the cursor around (200, 200) in parent window.
|
2023-01-27 07:18:58 +03:00
|
|
|
println!("cursor entered in the window {window_id:?}");
|
2022-10-10 05:12:23 +09:00
|
|
|
},
|
|
|
|
|
WindowEvent::KeyboardInput {
|
|
|
|
|
event: KeyEvent { state: ElementState::Pressed, .. },
|
|
|
|
|
..
|
|
|
|
|
} => {
|
2024-05-20 20:27:36 +04:00
|
|
|
let parent_window = self.windows.get(&self.parent_window_id.unwrap()).unwrap();
|
2024-01-31 17:29:59 +04:00
|
|
|
let child_window = spawn_child_window(parent_window, event_loop);
|
|
|
|
|
let child_id = child_window.id();
|
|
|
|
|
println!("Child window created with id: {child_id:?}");
|
2024-05-20 20:27:36 +04:00
|
|
|
self.windows.insert(child_id, child_window);
|
2022-10-10 05:12:23 +09:00
|
|
|
},
|
2023-08-27 16:15:09 +02:00
|
|
|
WindowEvent::RedrawRequested => {
|
2024-05-20 20:27:36 +04:00
|
|
|
if let Some(window) = self.windows.get(&window_id) {
|
2023-08-27 16:15:09 +02:00
|
|
|
fill::fill_window(window);
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-10-10 05:12:23 +09:00
|
|
|
_ => (),
|
2024-05-20 20:27:36 +04:00
|
|
|
}
|
2022-10-10 05:12:23 +09:00
|
|
|
}
|
2024-05-20 20:27:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn spawn_child_window(parent: &Window, event_loop: &ActiveEventLoop) -> Window {
|
|
|
|
|
let parent = parent.raw_window_handle().unwrap();
|
|
|
|
|
let mut window_attributes = Window::default_attributes()
|
|
|
|
|
.with_title("child window")
|
|
|
|
|
.with_inner_size(LogicalSize::new(200.0f32, 200.0f32))
|
|
|
|
|
.with_position(Position::Logical(LogicalPosition::new(0.0, 0.0)))
|
|
|
|
|
.with_visible(true);
|
|
|
|
|
// `with_parent_window` is unsafe. Parent window must be a valid window.
|
|
|
|
|
window_attributes = unsafe { window_attributes.with_parent_window(Some(parent)) };
|
|
|
|
|
|
|
|
|
|
event_loop.create_window(window_attributes).unwrap()
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-24 13:04:55 +03:00
|
|
|
let event_loop = EventLoop::new().unwrap();
|
2024-05-20 20:27:36 +04:00
|
|
|
let mut app = Application::default();
|
|
|
|
|
event_loop.run_app(&mut app)
|
2022-10-10 05:12:23 +09:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:29:59 +04:00
|
|
|
#[cfg(all(feature = "rwh_06", not(any(x11_platform, macos_platform, windows_platform))))]
|
2022-10-10 05:12:23 +09:00
|
|
|
fn main() {
|
2023-10-14 19:07:39 -07:00
|
|
|
panic!(
|
|
|
|
|
"This example is supported only on x11, macOS, and Windows, with the `rwh_06` feature \
|
|
|
|
|
enabled."
|
|
|
|
|
);
|
2022-10-10 05:12:23 +09:00
|
|
|
}
|