mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Merge pull request #300 from bjwbell/osx-cursors
Implement set_cursor for osx
This commit is contained in:
commit
77d8a11338
|
@ -620,7 +620,39 @@ impl Window {
|
|||
}
|
||||
|
||||
pub fn set_cursor(&self, cursor: MouseCursor) {
|
||||
unimplemented!()
|
||||
let cursor_name = match cursor {
|
||||
MouseCursor::Arrow => "arrowCursor",
|
||||
MouseCursor::Text => "IBeamCursor",
|
||||
MouseCursor::ContextMenu => "contextualMenuCursor",
|
||||
MouseCursor::Copy => "dragCopyCursor",
|
||||
MouseCursor::Crosshair => "crosshairCursor",
|
||||
MouseCursor::Default => "arrowCursor",
|
||||
MouseCursor::Grabbing => "openHandCursor",
|
||||
MouseCursor::Hand | MouseCursor::Grab => "pointingHandCursor",
|
||||
MouseCursor::NoDrop => "operationNotAllowedCursor",
|
||||
MouseCursor::NotAllowed => "operationNotAllowedCursor",
|
||||
MouseCursor::Alias => "dragLinkCursor",
|
||||
|
||||
|
||||
/// Resize cursors
|
||||
MouseCursor::EResize | MouseCursor::NResize |
|
||||
MouseCursor::NeResize | MouseCursor::NwResize |
|
||||
MouseCursor::SResize | MouseCursor::SeResize |
|
||||
MouseCursor::SwResize | MouseCursor::WResize |
|
||||
MouseCursor::EwResize | MouseCursor::ColResize |
|
||||
MouseCursor::NsResize | MouseCursor::RowResize |
|
||||
MouseCursor::NwseResize | MouseCursor::NeswResize => "arrowCursor",
|
||||
|
||||
/// TODO: Find appropriate OSX cursors
|
||||
MouseCursor::Cell | MouseCursor::VerticalText | MouseCursor::NoneCursor |
|
||||
MouseCursor::Wait | MouseCursor::Progress | MouseCursor::Help |
|
||||
MouseCursor::Move | MouseCursor::AllScroll | MouseCursor::ZoomIn |
|
||||
MouseCursor::ZoomOut => "arrowCursor",
|
||||
};
|
||||
unsafe {
|
||||
let cursor : id = msg_send()(class("NSCursor"), selector(cursor_name));
|
||||
let _ : id = msg_send()(cursor, selector("set"));
|
||||
}
|
||||
}
|
||||
|
||||
pub fn hidpi_factor(&self) -> f32 {
|
||||
|
|
Loading…
Reference in a new issue