1
0
Fork 0
baseview/examples/open_window.rs
2020-10-15 13:26:21 -05:00

37 lines
969 B
Rust

use baseview::{Event, Window, WindowHandler};
struct MyProgram {}
impl WindowHandler for MyProgram {
type Message = ();
fn build(_window: &mut Window) -> Self {
Self {}
}
fn on_frame(&mut self) {}
fn on_event(&mut self, _window: &mut Window, event: Event) {
match event {
Event::Mouse(e) => println!("Mouse event: {:?}", e),
Event::Keyboard(e) => println!("Keyboard event: {:?}", e),
Event::Window(e) => println!("Window event: {:?}", e),
}
}
fn on_message(&mut self, _window: &mut Window, _message: Self::Message) {}
}
fn main() {
let window_open_options = baseview::WindowOpenOptions {
title: "baseview".into(),
logical_width: 512,
logical_height: 512,
scale: 1.0,
parent: baseview::Parent::None,
};
let (handle, _window_info) = Window::open::<MyProgram>(window_open_options).unwrap();
handle.app_run_blocking();
}