diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2014-08-02 10:48:17 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2014-08-02 10:48:17 +0200 |
commit | 13c73cce5edde5b2eab3c0a1ef01a34eadf2949b (patch) | |
tree | 12e4f394fbe50dbfeed74bbbb34a7a7a3692150a /src | |
parent | af756b9add1afb3c752ee2dec9e2d11fcbf5b2e0 (diff) | |
parent | 49b0a2017068925a658bb861b75efdf56dddda12 (diff) | |
download | glutin-13c73cce5edde5b2eab3c0a1ef01a34eadf2949b.tar.gz glutin-13c73cce5edde5b2eab3c0a1ef01a34eadf2949b.zip |
Merge pull request #9 from tomaka/pass-builder-to-impl-new
Now passing WindowBuilder to implwin::Window::new
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 7 | ||||
-rw-r--r-- | src/win32/init.rs | 28 | ||||
-rw-r--r-- | src/win32/mod.rs | 9 | ||||
-rw-r--r-- | src/x11/mod.rs | 10 |
4 files changed, 23 insertions, 31 deletions
@@ -62,12 +62,7 @@ impl WindowBuilder { /// Error should be very rare and only occur in case of permission denied, incompatible system, /// out of memory, etc. pub fn build(self) -> Result<Window, String> { - let win = try!(winimpl::Window::new(Some(self.dimensions), - self.title.as_slice(), self.monitor)); - - Ok(Window{ - window: win, - }) + winimpl::Window::new(self).map(|w| Window { window: w }) } } diff --git a/src/win32/init.rs b/src/win32/init.rs index ce558dc..c4d31da 100644 --- a/src/win32/init.rs +++ b/src/win32/init.rs @@ -5,8 +5,8 @@ use std::task::TaskBuilder; use std::sync::atomics::AtomicBool; use std::ptr; use super::{event, ffi}; -use super::{MonitorID, Window}; -use Event; +use super::Window; +use {Event, WindowBuilder}; /// Stores the current window and its events dispatcher. /// @@ -14,15 +14,13 @@ use Event; /// receive an event for another window. local_data_key!(WINDOW: (ffi::HWND, Sender<Event>)) -pub fn new_window(dimensions: Option<(uint, uint)>, title: &str, - monitor: Option<MonitorID>) - -> Result<Window, String> -{ +pub fn new_window(builder: WindowBuilder) -> Result<Window, String> { use std::mem; use std::os; // initializing variables to be sent to the task - let title = title.utf16_units().collect::<Vec<u16>>().append_one(0); // title to utf16 + let title = builder.title.as_slice().utf16_units() + .collect::<Vec<u16>>().append_one(0); // title to utf16 //let hints = hints.clone(); let (tx, rx) = channel(); @@ -61,15 +59,15 @@ pub fn new_window(dimensions: Option<(uint, uint)>, title: &str, // building a RECT object with coordinates let mut rect = ffi::RECT { - left: 0, right: dimensions.map(|(w, _)| w as ffi::LONG).unwrap_or(1024), - top: 0, bottom: dimensions.map(|(_, h)| h as ffi::LONG).unwrap_or(768), + left: 0, right: builder.dimensions.val0() as ffi::LONG, + top: 0, bottom: builder.dimensions.val1() as ffi::LONG, }; // switching to fullscreen if necessary // this means adjusting the window's position so that it overlaps the right monitor, // and change the monitor's resolution if necessary - if monitor.is_some() { - let monitor = monitor.as_ref().unwrap(); + if builder.monitor.is_some() { + let monitor = builder.monitor.as_ref().unwrap(); // adjusting the rect { @@ -97,7 +95,7 @@ pub fn new_window(dimensions: Option<(uint, uint)>, title: &str, } // computing the style and extended style of the window - let (ex_style, style) = if monitor.is_some() { + let (ex_style, style) = if builder.monitor.is_some() { (ffi::WS_EX_APPWINDOW, ffi::WS_POPUP | ffi::WS_CLIPSIBLINGS | ffi::WS_CLIPCHILDREN) } else { (ffi::WS_EX_APPWINDOW | ffi::WS_EX_WINDOWEDGE, @@ -212,8 +210,8 @@ pub fn new_window(dimensions: Option<(uint, uint)>, title: &str, let handle = ffi::CreateWindowExW(ex_style, class_name.as_ptr(), title.as_ptr() as ffi::LPCWSTR, style | ffi::WS_VISIBLE | ffi::WS_CLIPSIBLINGS | ffi::WS_CLIPCHILDREN, - if monitor.is_some() { 0 } else { ffi::CW_USEDEFAULT}, - if monitor.is_some() { 0 } else { ffi::CW_USEDEFAULT}, + if builder.monitor.is_some() { 0 } else { ffi::CW_USEDEFAULT}, + if builder.monitor.is_some() { 0 } else { ffi::CW_USEDEFAULT}, rect.right - rect.left, rect.bottom - rect.top, ptr::mut_null(), ptr::mut_null(), ffi::GetModuleHandleW(ptr::null()), ptr::mut_null()); @@ -273,7 +271,7 @@ pub fn new_window(dimensions: Option<(uint, uint)>, title: &str, }; // calling SetForegroundWindow if fullscreen - if monitor.is_some() { + if builder.monitor.is_some() { unsafe { ffi::SetForegroundWindow(real_window) }; } diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 0d44a75..891c783 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -1,6 +1,6 @@ use std::sync::atomics::AtomicBool; use std::ptr; -use Event; +use {Event, WindowBuilder}; pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor}; @@ -35,11 +35,8 @@ pub struct Window { impl Window { /// See the docs if the crate root file. - pub fn new(dimensions: Option<(uint, uint)>, title: &str, - monitor: Option<MonitorID>) - -> Result<Window, String> - { - init::new_window(dimensions, title, monitor) + pub fn new(builder: WindowBuilder) -> Result<Window, String> { + init::new_window(builder) } /// See the docs if the crate root file. diff --git a/src/x11/mod.rs b/src/x11/mod.rs index bc89aed..6e50903 100644 --- a/src/x11/mod.rs +++ b/src/x11/mod.rs @@ -1,4 +1,4 @@ -use Event; +use {Event, WindowBuilder}; use libc; use std::{mem, ptr}; use std::sync::atomics::AtomicBool; @@ -33,9 +33,11 @@ impl MonitorID { } impl Window { - pub fn new(dimensions: Option<(uint, uint)>, title: &str, _: Option<MonitorID>) - -> Result<Window, String> - { + pub fn new(builder: WindowBuilder) -> Result<Window, String> { + // TODO: temporary + let dimensions = Some(builder.dimensions); + let title = builder.title.as_slice(); + // calling XOpenDisplay let display = unsafe { let display = ffi::XOpenDisplay(ptr::null()); |