Rename Message to Event. Add AppMessage type and on_app_message method to Receiver trait.
This commit is contained in:
parent
ab8cb1c223
commit
81e791f06b
|
@ -1,4 +1,6 @@
|
|||
use baseview::Message;
|
||||
use std::sync::mpsc;
|
||||
|
||||
use baseview::Event;
|
||||
|
||||
fn main() {
|
||||
let window_open_options = baseview::WindowOpenOptions {
|
||||
|
@ -10,11 +12,17 @@ fn main() {
|
|||
|
||||
let my_program = MyProgram {};
|
||||
|
||||
let _ = baseview::Window::open(window_open_options, my_program);
|
||||
let (_app_message_tx, app_message_rx) = mpsc::channel::<()>();
|
||||
|
||||
// Send _app_message_tx to a separate thread, then send messages to the GUI thread.
|
||||
|
||||
let _ = baseview::Window::open(window_open_options, my_program, app_message_rx);
|
||||
}
|
||||
struct MyProgram {}
|
||||
|
||||
impl baseview::Receiver for MyProgram {
|
||||
type AppMessage = ();
|
||||
|
||||
fn create_context(
|
||||
&mut self,
|
||||
_window: raw_window_handle::RawWindowHandle,
|
||||
|
@ -22,45 +30,47 @@ impl baseview::Receiver for MyProgram {
|
|||
) {
|
||||
}
|
||||
|
||||
fn on_message(&mut self, message: Message) {
|
||||
match message {
|
||||
Message::RenderExpose => {}
|
||||
Message::CursorMotion(x, y) => {
|
||||
fn on_event(&mut self, event: Event) {
|
||||
match event {
|
||||
Event::RenderExpose => {}
|
||||
Event::CursorMotion(x, y) => {
|
||||
println!("Cursor moved, x: {}, y: {}", x, y);
|
||||
}
|
||||
Message::MouseDown(button_id) => {
|
||||
Event::MouseDown(button_id) => {
|
||||
println!("Mouse down, button id: {:?}", button_id);
|
||||
}
|
||||
Message::MouseUp(button_id) => {
|
||||
Event::MouseUp(button_id) => {
|
||||
println!("Mouse up, button id: {:?}", button_id);
|
||||
}
|
||||
Message::MouseScroll(mouse_scroll) => {
|
||||
Event::MouseScroll(mouse_scroll) => {
|
||||
println!("Mouse scroll, {:?}", mouse_scroll);
|
||||
}
|
||||
Message::MouseClick(mouse_click) => {
|
||||
Event::MouseClick(mouse_click) => {
|
||||
println!("Mouse click, {:?}", mouse_click);
|
||||
}
|
||||
Message::KeyDown(keycode) => {
|
||||
Event::KeyDown(keycode) => {
|
||||
println!("Key down, keycode: {}", keycode);
|
||||
}
|
||||
Message::KeyUp(keycode) => {
|
||||
Event::KeyUp(keycode) => {
|
||||
println!("Key up, keycode: {}", keycode);
|
||||
}
|
||||
Message::CharacterInput(char_code) => {
|
||||
Event::CharacterInput(char_code) => {
|
||||
println!("Character input, char_code: {}", char_code);
|
||||
}
|
||||
Message::WindowResized(window_info) => {
|
||||
Event::WindowResized(window_info) => {
|
||||
println!("Window resized, {:?}", window_info);
|
||||
}
|
||||
Message::WindowFocus => {
|
||||
Event::WindowFocus => {
|
||||
println!("Window focused");
|
||||
}
|
||||
Message::WindowUnfocus => {
|
||||
Event::WindowUnfocus => {
|
||||
println!("Window unfocused");
|
||||
}
|
||||
Message::WillClose => {
|
||||
Event::WillClose => {
|
||||
println!("Window will close");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn on_app_message(&mut self, _message: Self::AppMessage) {}
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ pub struct WindowInfo {
|
|||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum Message {
|
||||
pub enum Event {
|
||||
RenderExpose,
|
||||
CursorMotion(i32, i32), // new (x, y) relative to window
|
||||
MouseDown(MouseButtonID),
|
|
@ -15,8 +15,8 @@ mod macos;
|
|||
#[cfg(target_os = "macos")]
|
||||
pub use macos::*;
|
||||
|
||||
mod message;
|
||||
pub use message::*;
|
||||
mod event;
|
||||
pub use event::*;
|
||||
|
||||
pub enum Parent {
|
||||
None,
|
||||
|
@ -34,10 +34,13 @@ pub struct WindowOpenOptions<'a> {
|
|||
}
|
||||
|
||||
pub trait Receiver {
|
||||
type AppMessage;
|
||||
|
||||
fn create_context(
|
||||
&mut self,
|
||||
window: raw_window_handle::RawWindowHandle,
|
||||
window_info: &WindowInfo,
|
||||
);
|
||||
fn on_message(&mut self, message: Message);
|
||||
fn on_event(&mut self, event: Event);
|
||||
fn on_app_message(&mut self, message: Self::AppMessage);
|
||||
}
|
||||
|
|
|
@ -6,14 +6,19 @@ use cocoa::appkit::{
|
|||
use cocoa::base::{nil, NO};
|
||||
use cocoa::foundation::{NSAutoreleasePool, NSPoint, NSRect, NSSize, NSString};
|
||||
|
||||
use crate::{Message, MouseButtonID, MouseScroll, Receiver, WindowOpenOptions};
|
||||
use crate::{Event, MouseButtonID, MouseScroll, Receiver, WindowOpenOptions};
|
||||
|
||||
pub struct Window<R: Receiver> {
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
}
|
||||
|
||||
impl<R: Receiver> Window<R> {
|
||||
pub fn open(options: WindowOpenOptions, receiver: R) -> Self {
|
||||
pub fn open(
|
||||
options: WindowOpenOptions,
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
) -> Self {
|
||||
unsafe {
|
||||
let _pool = NSAutoreleasePool::new(nil);
|
||||
|
||||
|
@ -44,7 +49,10 @@ impl<R: Receiver> Window<R> {
|
|||
current_app.activateWithOptions_(NSApplicationActivateIgnoringOtherApps);
|
||||
app.run();
|
||||
|
||||
Window { receiver }
|
||||
Window {
|
||||
receiver,
|
||||
app_message_rx,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ extern crate winapi;
|
|||
|
||||
use std::ffi::CString;
|
||||
use std::ptr::null_mut;
|
||||
use std::sync::mpsc;
|
||||
|
||||
use self::winapi::shared::guiddef::GUID;
|
||||
use self::winapi::shared::minwindef::{ATOM, FALSE, LPARAM, LRESULT, UINT, WPARAM};
|
||||
|
@ -14,24 +15,24 @@ use self::winapi::um::wingdi::{
|
|||
PFD_TYPE_RGBA, PIXELFORMATDESCRIPTOR,
|
||||
};
|
||||
use self::winapi::um::winuser::{
|
||||
AdjustWindowRectEx, CreateWindowExA, DefWindowProcA, DestroyWindow, DispatchMessageA, GetDC,
|
||||
GetMessageA, GetWindowLongPtrA, MessageBoxA, PeekMessageA, PostMessageA, RegisterClassA,
|
||||
ReleaseDC, SetTimer, SetWindowLongPtrA, TranslateMessage, UnregisterClassA, CS_OWNDC,
|
||||
GWLP_USERDATA, MB_ICONERROR, MB_OK, MB_TOPMOST, MSG, PM_REMOVE, WM_CREATE, WM_QUIT,
|
||||
WM_SHOWWINDOW, WM_TIMER, WNDCLASSA, WS_CAPTION, WS_CHILD, WS_CLIPSIBLINGS, WS_MAXIMIZEBOX,
|
||||
WS_MINIMIZEBOX, WS_POPUPWINDOW, WS_SIZEBOX, WS_VISIBLE,
|
||||
AdjustWindowRectEx, CreateWindowExA, DefWindowProcA, DestroyWindow, DispatchEventA, EventBoxA,
|
||||
GetDC, GetEventA, GetWindowLongPtrA, PeekEventA, PostEventA, RegisterClassA, ReleaseDC,
|
||||
SetTimer, SetWindowLongPtrA, TranslateEvent, UnregisterClassA, CS_OWNDC, GWLP_USERDATA,
|
||||
MB_ICONERROR, MB_OK, MB_TOPMOST, MSG, PM_REMOVE, WM_CREATE, WM_QUIT, WM_SHOWWINDOW, WM_TIMER,
|
||||
WNDCLASSA, WS_CAPTION, WS_CHILD, WS_CLIPSIBLINGS, WS_MAXIMIZEBOX, WS_MINIMIZEBOX,
|
||||
WS_POPUPWINDOW, WS_SIZEBOX, WS_VISIBLE,
|
||||
};
|
||||
|
||||
use self::winapi::ctypes::c_void;
|
||||
use crate::Parent::WithParent;
|
||||
use crate::{handle_message, WindowOpenOptions};
|
||||
use crate::{Message, MouseButtonID, MouseScroll, Receiver};
|
||||
use crate::{Event, MouseButtonID, MouseScroll, Receiver};
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
unsafe fn message_box(title: &str, msg: &str) {
|
||||
let title = (title.to_owned() + "\0").as_ptr() as *const i8;
|
||||
let msg = (msg.to_owned() + "\0").as_ptr() as *const i8;
|
||||
MessageBoxA(null_mut(), msg, title, MB_ICONERROR | MB_OK | MB_TOPMOST);
|
||||
EventBoxA(null_mut(), msg, title, MB_ICONERROR | MB_OK | MB_TOPMOST);
|
||||
}
|
||||
|
||||
unsafe fn generate_guid() -> String {
|
||||
|
@ -62,7 +63,7 @@ unsafe extern "system" fn wnd_proc(
|
|||
let win_ptr = GetWindowLongPtrA(hwnd, GWLP_USERDATA) as *const c_void;
|
||||
match msg {
|
||||
WM_CREATE => {
|
||||
PostMessageA(hwnd, WM_SHOWWINDOW, 0, 0);
|
||||
PostEventA(hwnd, WM_SHOWWINDOW, 0, 0);
|
||||
0
|
||||
}
|
||||
_ => {
|
||||
|
@ -118,6 +119,7 @@ pub struct Window<R: Receiver> {
|
|||
gl_context: HGLRC,
|
||||
window_class: ATOM,
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
scaling: Option<f64>, // DPI scale, 96.0 is "default".
|
||||
r: f32,
|
||||
g: f32,
|
||||
|
@ -125,7 +127,11 @@ pub struct Window<R: Receiver> {
|
|||
}
|
||||
|
||||
impl<R: Receiver> Window<R> {
|
||||
pub fn open(options: WindowOpenOptions, receiver: R) {
|
||||
pub fn open(
|
||||
options: WindowOpenOptions,
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
) {
|
||||
unsafe {
|
||||
let mut window = Window {
|
||||
hwnd: null_mut(),
|
||||
|
@ -133,6 +139,7 @@ impl<R: Receiver> Window<R> {
|
|||
gl_context: null_mut(),
|
||||
window_class: 0,
|
||||
receiver,
|
||||
app_message_rx,
|
||||
scaling: None,
|
||||
r: 0.3,
|
||||
g: 0.8,
|
||||
|
@ -245,11 +252,11 @@ impl<R: Receiver> Window<R> {
|
|||
if parent.is_null() {
|
||||
let mut msg: MSG = std::mem::zeroed();
|
||||
loop {
|
||||
let status = GetMessageA(&mut msg, hwnd, 0, 0);
|
||||
let status = GetEventA(&mut msg, hwnd, 0, 0);
|
||||
if status == -1 {
|
||||
break;
|
||||
}
|
||||
TranslateMessage(&mut msg);
|
||||
TranslateEvent(&mut msg);
|
||||
handle_message(Arc::clone(&win_p), msg.message, msg.wParam, msg.lParam);
|
||||
}
|
||||
}
|
||||
|
@ -257,7 +264,7 @@ impl<R: Receiver> Window<R> {
|
|||
}
|
||||
|
||||
pub fn close(&self) {
|
||||
self.receiver.on_message(Message::WillClose);
|
||||
self.receiver.on_event(Event::WillClose);
|
||||
|
||||
// todo: see https://github.com/wrl/rutabaga/blob/f30ff67e157375cafdbafe5fb549f1790443a3a8/src/platform/win/window.c#L402
|
||||
unsafe {
|
||||
|
@ -282,6 +289,6 @@ impl<R: Receiver> Window<R> {
|
|||
self.r = r;
|
||||
self.g = g;
|
||||
|
||||
self.receiver.on_message(Message::CursorMotion(x, y));
|
||||
self.receiver.on_message(Event::CursorMotion(x, y));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
use std::ffi::CStr;
|
||||
use std::os::raw::c_void;
|
||||
use std::thread;
|
||||
use std::sync::mpsc;
|
||||
|
||||
use ::x11::xlib;
|
||||
// use xcb::dri2; // needed later
|
||||
|
||||
use super::XcbConnection;
|
||||
use crate::{Message, MouseButtonID, MouseScroll, Parent, Receiver, WindowInfo, WindowOpenOptions};
|
||||
use crate::{Event, MouseButtonID, MouseScroll, Parent, Receiver, WindowInfo, WindowOpenOptions};
|
||||
|
||||
use raw_window_handle::RawWindowHandle;
|
||||
|
||||
|
@ -14,10 +14,15 @@ pub struct Window<R: Receiver> {
|
|||
scaling: Option<f64>, // DPI scale, 96.0 is "default".
|
||||
xcb_connection: XcbConnection,
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
}
|
||||
|
||||
impl<R: Receiver> Window<R> {
|
||||
pub fn open(options: WindowOpenOptions, receiver: R) -> Self {
|
||||
pub fn open(
|
||||
options: WindowOpenOptions,
|
||||
receiver: R,
|
||||
app_message_rx: mpsc::Receiver<R::AppMessage>,
|
||||
) -> Self {
|
||||
// Convert the parent to a X11 window ID if we're given one
|
||||
let parent = match options.parent {
|
||||
Parent::None => None,
|
||||
|
@ -130,6 +135,7 @@ impl<R: Receiver> Window<R> {
|
|||
scaling: None,
|
||||
xcb_connection,
|
||||
receiver,
|
||||
app_message_rx,
|
||||
};
|
||||
|
||||
x11_window.scaling = get_scaling_xft(&x11_window.xcb_connection)
|
||||
|
@ -153,6 +159,8 @@ impl<R: Receiver> Window<R> {
|
|||
fn run_event_loop(&mut self) {
|
||||
//let raw_display = self.xcb_connection.conn.get_raw_dpy();
|
||||
loop {
|
||||
// somehow poll self.app_message_rx for messages at the same time
|
||||
|
||||
let ev = self.xcb_connection.conn.wait_for_event();
|
||||
if let Some(event) = ev {
|
||||
let event_type = event.response_type() & !0x80;
|
||||
|
@ -179,14 +187,14 @@ impl<R: Receiver> Window<R> {
|
|||
|
||||
match event_type {
|
||||
xcb::EXPOSE => {
|
||||
self.receiver.on_message(Message::RenderExpose);
|
||||
self.receiver.on_event(Event::RenderExpose);
|
||||
}
|
||||
xcb::MOTION_NOTIFY => {
|
||||
let event = unsafe { xcb::cast_event::<xcb::MotionNotifyEvent>(&event) };
|
||||
let detail = event.detail();
|
||||
|
||||
if detail != 4 && detail != 5 {
|
||||
self.receiver.on_message(Message::CursorMotion(
|
||||
self.receiver.on_event(Event::CursorMotion(
|
||||
event.event_x() as i32,
|
||||
event.event_y() as i32,
|
||||
));
|
||||
|
@ -198,20 +206,20 @@ impl<R: Receiver> Window<R> {
|
|||
|
||||
match detail {
|
||||
4 => {
|
||||
self.receiver.on_message(Message::MouseScroll(MouseScroll {
|
||||
self.receiver.on_event(Event::MouseScroll(MouseScroll {
|
||||
x_delta: 0.0,
|
||||
y_delta: 1.0,
|
||||
}));
|
||||
}
|
||||
5 => {
|
||||
self.receiver.on_message(Message::MouseScroll(MouseScroll {
|
||||
self.receiver.on_event(Event::MouseScroll(MouseScroll {
|
||||
x_delta: 0.0,
|
||||
y_delta: -1.0,
|
||||
}));
|
||||
}
|
||||
detail => {
|
||||
let button_id = mouse_id(detail);
|
||||
self.receiver.on_message(Message::MouseDown(button_id));
|
||||
self.receiver.on_event(Event::MouseDown(button_id));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -221,20 +229,20 @@ impl<R: Receiver> Window<R> {
|
|||
|
||||
if detail != 4 && detail != 5 {
|
||||
let button_id = mouse_id(detail);
|
||||
self.receiver.on_message(Message::MouseUp(button_id));
|
||||
self.receiver.on_event(Event::MouseUp(button_id));
|
||||
}
|
||||
}
|
||||
xcb::KEY_PRESS => {
|
||||
let event = unsafe { xcb::cast_event::<xcb::KeyPressEvent>(&event) };
|
||||
let detail = event.detail();
|
||||
|
||||
self.receiver.on_message(Message::KeyDown(detail));
|
||||
self.receiver.on_event(Event::KeyDown(detail));
|
||||
}
|
||||
xcb::KEY_RELEASE => {
|
||||
let event = unsafe { xcb::cast_event::<xcb::KeyReleaseEvent>(&event) };
|
||||
let detail = event.detail();
|
||||
|
||||
self.receiver.on_message(Message::KeyUp(detail));
|
||||
self.receiver.on_event(Event::KeyUp(detail));
|
||||
}
|
||||
_ => {
|
||||
println!("Unhandled event type: {:?}", event_type);
|
||||
|
|
Loading…
Reference in a new issue