mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Add support for visible parameter on mac.
This commit is contained in:
parent
70f9f8cf43
commit
f8d3b232a5
|
@ -23,7 +23,7 @@ use std::c_str::CString;
|
||||||
use std::mem;
|
use std::mem;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
|
|
||||||
use events::Event::{MouseInput, MouseMoved, ReceivedCharacter, KeyboardInput, Resized, MouseWheel};
|
use events::Event::{MouseInput, MouseMoved, ReceivedCharacter, KeyboardInput, MouseWheel};
|
||||||
use events::ElementState::{Pressed, Released};
|
use events::ElementState::{Pressed, Released};
|
||||||
use events::MouseButton::{LeftMouseButton, RightMouseButton};
|
use events::MouseButton::{LeftMouseButton, RightMouseButton};
|
||||||
use events;
|
use events;
|
||||||
|
@ -130,7 +130,7 @@ extern fn window_did_resize(this: id, _: id) -> id {
|
||||||
|
|
||||||
impl Window {
|
impl Window {
|
||||||
fn new_impl(dimensions: Option<(uint, uint)>, title: &str, monitor: Option<MonitorID>,
|
fn new_impl(dimensions: Option<(uint, uint)>, title: &str, monitor: Option<MonitorID>,
|
||||||
vsync: bool, _visible: bool) -> Result<Window, CreationError> {
|
vsync: bool, visible: bool) -> Result<Window, CreationError> {
|
||||||
let app = match Window::create_app() {
|
let app = match Window::create_app() {
|
||||||
Some(app) => app,
|
Some(app) => app,
|
||||||
None => { return Err(OsError(format!("Couldn't create NSApplication"))); },
|
None => { return Err(OsError(format!("Couldn't create NSApplication"))); },
|
||||||
|
@ -151,7 +151,11 @@ impl Window {
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
app.activateIgnoringOtherApps_(true);
|
app.activateIgnoringOtherApps_(true);
|
||||||
|
if visible {
|
||||||
window.makeKeyAndOrderFront_(nil);
|
window.makeKeyAndOrderFront_(nil);
|
||||||
|
} else {
|
||||||
|
window.makeKeyWindow();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set up the window delegate to receive events
|
// Set up the window delegate to receive events
|
||||||
|
|
Loading…
Reference in a new issue