mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
Change grab_cursor and ungrab_cursor to set_cursor_state
This commit is contained in:
parent
d6ebaaaf5c
commit
3d692870e2
|
@ -1,3 +1,5 @@
|
||||||
|
#![feature(std_misc)]
|
||||||
|
|
||||||
#[cfg(target_os = "android")]
|
#[cfg(target_os = "android")]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate android_glue;
|
extern crate android_glue;
|
||||||
|
@ -16,7 +18,6 @@ fn main() { println!("This example requires glutin to be compiled with the `wind
|
||||||
|
|
||||||
#[cfg(feature = "window")]
|
#[cfg(feature = "window")]
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
||||||
let window = glutin::Window::new().unwrap();
|
let window = glutin::Window::new().unwrap();
|
||||||
window.set_title("glutin - Cursor grabbing test");
|
window.set_title("glutin - Cursor grabbing test");
|
||||||
unsafe { window.make_current() };
|
unsafe { window.make_current() };
|
||||||
|
@ -33,11 +34,12 @@ fn main() {
|
||||||
Event::KeyboardInput(ElementState::Pressed, _, _) => {
|
Event::KeyboardInput(ElementState::Pressed, _, _) => {
|
||||||
if grabbed {
|
if grabbed {
|
||||||
grabbed = false;
|
grabbed = false;
|
||||||
window.ungrab_cursor();
|
window.set_cursor_state(glutin::CursorState::Normal)
|
||||||
}
|
.ok().expect("could not ungrab mouse cursor");
|
||||||
else {
|
} else {
|
||||||
grabbed = true;
|
grabbed = true;
|
||||||
window.grab_cursor().ok().expect("could not grab mouse cursor");
|
window.set_cursor_state(glutin::CursorState::Grab)
|
||||||
|
.ok().expect("could not grab mouse cursor");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
_ => (),
|
_ => (),
|
||||||
|
|
|
@ -13,6 +13,7 @@ use std::collections::VecDeque;
|
||||||
|
|
||||||
use Api;
|
use Api;
|
||||||
use BuilderAttribs;
|
use BuilderAttribs;
|
||||||
|
use CursorState;
|
||||||
use GlRequest;
|
use GlRequest;
|
||||||
use native_monitor::NativeMonitorId;
|
use native_monitor::NativeMonitorId;
|
||||||
|
|
||||||
|
@ -358,9 +359,9 @@ impl Window {
|
||||||
pub fn set_cursor(&self, _: MouseCursor) {
|
pub fn set_cursor(&self, _: MouseCursor) {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn grab_cursor(&self) -> Result<(), String> { Ok(()) }
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
||||||
|
Ok(())
|
||||||
pub fn ungrab_cursor(&self) {}
|
}
|
||||||
|
|
||||||
pub fn hidpi_factor(&self) -> f32 {
|
pub fn hidpi_factor(&self) -> f32 {
|
||||||
1.0
|
1.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#[cfg(feature = "headless")]
|
#[cfg(feature = "headless")]
|
||||||
pub use self::headless::HeadlessContext;
|
pub use self::headless::HeadlessContext;
|
||||||
|
|
||||||
use {CreationError, Event, MouseCursor};
|
use {CreationError, Event, MouseCursor, CursorState};
|
||||||
use CreationError::OsError;
|
use CreationError::OsError;
|
||||||
use libc;
|
use libc;
|
||||||
|
|
||||||
|
@ -661,6 +661,10 @@ impl Window {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
||||||
|
unimplemented!();
|
||||||
|
}
|
||||||
|
|
||||||
pub fn hidpi_factor(&self) -> f32 {
|
pub fn hidpi_factor(&self) -> f32 {
|
||||||
unsafe {
|
unsafe {
|
||||||
NSWindow::backingScaleFactor(*self.window) as f32
|
NSWindow::backingScaleFactor(*self.window) as f32
|
||||||
|
|
17
src/lib.rs
17
src/lib.rs
|
@ -198,6 +198,23 @@ pub enum MouseCursor {
|
||||||
RowResize,
|
RowResize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Describes how glutin handles the cursor.
|
||||||
|
#[derive(Debug, Copy)]
|
||||||
|
pub enum CursorState {
|
||||||
|
/// Normal cursor behavior.
|
||||||
|
Normal,
|
||||||
|
|
||||||
|
/// The cursor will be invisible when over the window.
|
||||||
|
Hide,
|
||||||
|
|
||||||
|
/// Grabs the mouse cursor. The cursor's motion will be confined to this
|
||||||
|
/// window and the window has exclusive access to further events regarding
|
||||||
|
/// the cursor.
|
||||||
|
///
|
||||||
|
/// This is useful for first-person cameras for example.
|
||||||
|
Grab,
|
||||||
|
}
|
||||||
|
|
||||||
/// Describes a possible format. Unused.
|
/// Describes a possible format. Unused.
|
||||||
#[allow(missing_docs)]
|
#[allow(missing_docs)]
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
|
|
@ -4,6 +4,7 @@ use std::ffi::CString;
|
||||||
use std::sync::mpsc::Receiver;
|
use std::sync::mpsc::Receiver;
|
||||||
use libc;
|
use libc;
|
||||||
use {CreationError, Event, MouseCursor};
|
use {CreationError, Event, MouseCursor};
|
||||||
|
use CursorState;
|
||||||
|
|
||||||
use BuilderAttribs;
|
use BuilderAttribs;
|
||||||
|
|
||||||
|
@ -255,12 +256,8 @@ impl Window {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn grab_cursor(&self) -> Result<(), String> {
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
||||||
unimplemented!()
|
unimplemented!();
|
||||||
}
|
|
||||||
|
|
||||||
pub fn ungrab_cursor(&self) {
|
|
||||||
unimplemented!()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn hidpi_factor(&self) -> f32 {
|
pub fn hidpi_factor(&self) -> f32 {
|
||||||
|
|
|
@ -4,6 +4,7 @@ use std::default::Default;
|
||||||
use Api;
|
use Api;
|
||||||
use BuilderAttribs;
|
use BuilderAttribs;
|
||||||
use CreationError;
|
use CreationError;
|
||||||
|
use CursorState;
|
||||||
use Event;
|
use Event;
|
||||||
use GlRequest;
|
use GlRequest;
|
||||||
use MouseCursor;
|
use MouseCursor;
|
||||||
|
@ -415,21 +416,12 @@ impl Window {
|
||||||
self.window.set_cursor_position(x, y)
|
self.window.set_cursor_position(x, y)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Grabs the mouse cursor. The cursor's motion will be confined to this
|
/// Sets how glutin handles the cursor. See the documentation of `CursorState` for details.
|
||||||
/// window and the window has exclusive access to further events regarding
|
///
|
||||||
/// the cursor.
|
|
||||||
/// Fails if it is not possible to grab the window for some reason, e.g.
|
|
||||||
/// when another window has already done so.
|
|
||||||
/// Has no effect on Android.
|
/// Has no effect on Android.
|
||||||
pub fn grab_cursor(&self) -> Result<(), String> {
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
||||||
self.window.grab_cursor()
|
self.window.set_cursor_state(state)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Release a previously grabbed mouse cursor.
|
|
||||||
pub fn ungrab_cursor(&self) {
|
|
||||||
self.window.ungrab_cursor();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl gl_common::GlFunctionsSource for Window {
|
impl gl_common::GlFunctionsSource for Window {
|
||||||
|
|
|
@ -11,6 +11,7 @@ use std::sync::{Arc, Mutex, Once, ONCE_INIT, Weak};
|
||||||
use std::sync::{StaticMutex, MUTEX_INIT};
|
use std::sync::{StaticMutex, MUTEX_INIT};
|
||||||
|
|
||||||
use Api;
|
use Api;
|
||||||
|
use CursorState;
|
||||||
use GlRequest;
|
use GlRequest;
|
||||||
|
|
||||||
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};
|
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};
|
||||||
|
@ -282,6 +283,7 @@ pub struct Window {
|
||||||
current_size: Cell<(libc::c_int, libc::c_int)>,
|
current_size: Cell<(libc::c_int, libc::c_int)>,
|
||||||
/// Events that have been retreived with XLib but not dispatched with iterators yet
|
/// Events that have been retreived with XLib but not dispatched with iterators yet
|
||||||
pending_events: Mutex<VecDeque<Event>>,
|
pending_events: Mutex<VecDeque<Event>>,
|
||||||
|
cursor_state: CursorState,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
|
@ -601,6 +603,7 @@ impl Window {
|
||||||
wm_delete_window: wm_delete_window,
|
wm_delete_window: wm_delete_window,
|
||||||
current_size: Cell::new((0, 0)),
|
current_size: Cell::new((0, 0)),
|
||||||
pending_events: Mutex::new(VecDeque::new()),
|
pending_events: Mutex::new(VecDeque::new()),
|
||||||
|
cursor_state: CursorState::Normal,
|
||||||
};
|
};
|
||||||
|
|
||||||
// returning
|
// returning
|
||||||
|
@ -782,8 +785,19 @@ impl Window {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn grab_cursor(&self) -> Result<(), String> {
|
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
|
||||||
|
match (state, self.cursor_state) {
|
||||||
|
(CursorState::Normal, CursorState::Grab) => {
|
||||||
unsafe {
|
unsafe {
|
||||||
|
ffi::XUngrabPointer(self.x.display, ffi::CurrentTime);
|
||||||
|
self.cursor_state = CursorState::Normal;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
(CursorState::Grab, CursorState::Normal) => {
|
||||||
|
unsafe {
|
||||||
|
self.cursor_state = CursorState::Grab;
|
||||||
|
|
||||||
match ffi::XGrabPointer(
|
match ffi::XGrabPointer(
|
||||||
self.x.display, self.x.window, false,
|
self.x.display, self.x.window, false,
|
||||||
ffi::ButtonPressMask | ffi::ButtonReleaseMask | ffi::EnterWindowMask |
|
ffi::ButtonPressMask | ffi::ButtonReleaseMask | ffi::EnterWindowMask |
|
||||||
|
@ -801,11 +815,9 @@ impl Window {
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
|
||||||
pub fn ungrab_cursor(&self) {
|
_ => unimplemented!(),
|
||||||
unsafe {
|
|
||||||
ffi::XUngrabPointer(self.x.display, ffi::CurrentTime);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue