mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
Better events handling on X11
This commit is contained in:
parent
c1da2b1273
commit
67349d717a
|
@ -1311,6 +1311,10 @@ pub struct XButtonEvent {
|
|||
#[link(name = "X11")]
|
||||
extern "C" {
|
||||
pub fn XCloseDisplay(display: *mut Display);
|
||||
pub fn XCheckMaskEvent(display: *mut Display, event_mask: libc::c_long,
|
||||
event_return: *mut XEvent) -> Bool;
|
||||
pub fn XCheckTypedEvent(display: *mut Display, event_type: libc::c_int,
|
||||
event_return: *mut XEvent) -> Bool;
|
||||
pub fn XCreateColormap(display: *mut Display, w: Window,
|
||||
visual: *mut Visual, alloc: libc::c_int) -> Colormap;
|
||||
pub fn XCreateWindow(display: *mut Display, parent: Window, x: libc::c_int,
|
||||
|
@ -1329,6 +1333,7 @@ extern "C" {
|
|||
pub fn XMapWindow(display: *mut Display, w: Window);
|
||||
pub fn XNextEvent(display: *mut Display, event_return: *mut XEvent);
|
||||
pub fn XOpenDisplay(display_name: *const libc::c_char) -> *mut Display;
|
||||
pub fn XPeekEvent(display: *mut Display, event_return: *mut XEvent);
|
||||
pub fn XSetWMProtocols(display: *mut Display, w: Window, protocols: *mut Atom,
|
||||
count: libc::c_int) -> Status;
|
||||
pub fn XStoreName(display: *mut Display, w: Window, window_name: *const libc::c_char);
|
||||
|
|
|
@ -141,17 +141,24 @@ impl Window {
|
|||
}
|
||||
|
||||
pub fn poll_events(&self) -> Vec<Event> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn wait_events(&self) -> Vec<Event> {
|
||||
use std::mem;
|
||||
|
||||
let mut xev = unsafe { mem::uninitialized() };
|
||||
unsafe { ffi::XNextEvent(self.display, &mut xev) };
|
||||
|
||||
let mut events = Vec::new();
|
||||
|
||||
loop {
|
||||
use std::num::Bounded;
|
||||
|
||||
let mut xev = unsafe { mem::uninitialized() };
|
||||
let res = unsafe { ffi::XCheckMaskEvent(self.display, Bounded::max_value(), &mut xev) };
|
||||
|
||||
if res == 0 {
|
||||
let res = unsafe { ffi::XCheckTypedEvent(self.display, ffi::ClientMessage, &mut xev) };
|
||||
|
||||
if res == 0 {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
match xev.type_ {
|
||||
ffi::ClientMessage => {
|
||||
use Closed;
|
||||
|
@ -203,10 +210,28 @@ impl Window {
|
|||
|
||||
_ => ()
|
||||
}
|
||||
}
|
||||
|
||||
events
|
||||
}
|
||||
|
||||
pub fn wait_events(&self) -> Vec<Event> {
|
||||
use std::mem;
|
||||
|
||||
loop {
|
||||
// this will block until an event arrives, but doesn't remove
|
||||
// it from the queue
|
||||
let mut xev = unsafe { mem::uninitialized() };
|
||||
unsafe { ffi::XPeekEvent(self.display, &mut xev) };
|
||||
|
||||
// calling poll_events()
|
||||
let ev = self.poll_events();
|
||||
if ev.len() >= 1 {
|
||||
return ev;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn make_current(&self) {
|
||||
let res = unsafe { ffi::glXMakeCurrent(self.display, self.window, self.context) };
|
||||
if res == 0 {
|
||||
|
|
Loading…
Reference in a new issue