From 44c21c4bbb890400bf12cfb9e0d199e598eec0d1 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Mon, 26 Jan 2015 14:22:50 +1100 Subject: [PATCH 1/2] Implement some more osx stuff --- src/osx/mod.rs | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/src/osx/mod.rs b/src/osx/mod.rs index 990ceb02..94ac5b3a 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -8,7 +8,7 @@ use libc; use BuilderAttribs; use cocoa::base::{Class, id, YES, NO, NSUInteger, nil, objc_allocateClassPair, class, objc_registerClassPair}; -use cocoa::base::{selector, msg_send, class_addMethod, class_addIvar}; +use cocoa::base::{selector, msg_send, msg_send_stret, class_addMethod, class_addIvar}; use cocoa::base::{object_setInstanceVariable, object_getInstanceVariable}; use cocoa::appkit; use cocoa::appkit::*; @@ -180,16 +180,7 @@ impl WindowProxy { let pool = NSAutoreleasePool::new(nil); let event = NSEvent::otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2( - nil, - NSApplicationDefined, - NSPoint::new(0.0, 0.0), - 0, - 0.0, - 0, - ptr::null_mut(), - 0, - 0, - 0); + nil, NSApplicationDefined, NSPoint::new(0.0, 0.0), 0, 0.0, 0, ptr::null_mut(), 0, 0, 0); NSApp().postEvent_atStart_(event, YES); pool.drain(); } @@ -364,30 +355,49 @@ impl Window { } pub fn show(&self) { + unsafe { NSWindow::makeKeyAndOrderFront_(self.window, nil); } } pub fn hide(&self) { + unsafe { NSWindow::orderOut_(self.window, nil); } } pub fn get_position(&self) -> Option<(i32, i32)> { - unimplemented!() + unsafe { + // let content_rect = NSWindow::contentRectForFrameRect_(self.window, NSWindow::frame(self.window)); + let content_rect: NSRect = msg_send_stret()(self.window, + selector("contentRectForFrameRect:"), + NSWindow::frame(self.window)); + // NOTE: coordinate system might be inconsistent with other backends + Some((content_rect.origin.x as i32, content_rect.origin.y as i32)) + } } - pub fn set_position(&self, _x: i32, _y: i32) { - unimplemented!() + pub fn set_position(&self, x: i32, y: i32) { + unsafe { + // NOTE: coordinate system might be inconsistent with other backends + NSWindow::setFrameOrigin_(self.window, NSPoint::new(x as f64, y as f64)); + } } pub fn get_inner_size(&self) -> Option<(u32, u32)> { - let rect = unsafe { NSView::frame(self.view) }; - Some((rect.size.width as u32, rect.size.height as u32)) + unsafe { + let view_frame = NSView::frame(self.view); + Some((view_frame.size.width as u32, view_frame.size.height as u32)) + } } pub fn get_outer_size(&self) -> Option<(u32, u32)> { - unimplemented!() + unsafe { + let window_frame = NSWindow::frame(self.window); + Some((window_frame.size.width as u32, window_frame.size.height as u32)) + } } - pub fn set_inner_size(&self, _x: u32, _y: u32) { - unimplemented!() + pub fn set_inner_size(&self, width: u32, height: u32) { + unsafe { + NSWindow::setContentSize_(self.window, NSSize::new(width as f64, height as f64)); + } } pub fn create_window_proxy(&self) -> WindowProxy { From 73078e0569a9cadc51d64e98f4653e66e2985b8d Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Mon, 26 Jan 2015 14:28:12 +1100 Subject: [PATCH 2/2] Rename osx->cocoa --- src/{osx => cocoa}/event.rs | 0 src/{osx => cocoa}/headless.rs | 0 src/{osx => cocoa}/mod.rs | 0 src/{osx => cocoa}/monitor.rs | 0 src/lib.rs | 4 ++-- 5 files changed, 2 insertions(+), 2 deletions(-) rename src/{osx => cocoa}/event.rs (100%) rename src/{osx => cocoa}/headless.rs (100%) rename src/{osx => cocoa}/mod.rs (100%) rename src/{osx => cocoa}/monitor.rs (100%) diff --git a/src/osx/event.rs b/src/cocoa/event.rs similarity index 100% rename from src/osx/event.rs rename to src/cocoa/event.rs diff --git a/src/osx/headless.rs b/src/cocoa/headless.rs similarity index 100% rename from src/osx/headless.rs rename to src/cocoa/headless.rs diff --git a/src/osx/mod.rs b/src/cocoa/mod.rs similarity index 100% rename from src/osx/mod.rs rename to src/cocoa/mod.rs diff --git a/src/osx/monitor.rs b/src/cocoa/monitor.rs similarity index 100% rename from src/osx/monitor.rs rename to src/cocoa/monitor.rs diff --git a/src/lib.rs b/src/lib.rs index f31edfec..0c999860 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -54,7 +54,7 @@ mod winimpl; #[path="x11/mod.rs"] mod winimpl; #[cfg(target_os = "macos")] -#[path="osx/mod.rs"] +#[path="cocoa/mod.rs"] mod winimpl; #[cfg(target_os = "android")] #[path="android/mod.rs"] @@ -123,7 +123,7 @@ pub enum MouseCursor { Help, /// Progress indicator. Shows that processing is being done. But in contrast /// with "Wait" the user may still interact with the program. Often rendered - /// as a spinning beach ball, or an arrow with a watch or hourglass. + /// as a spinning beach ball, or an arrow with a watch or hourglass. Progress, /// Cursor showing that something cannot be done.