diff options
Diffstat (limited to 'src/osx')
| -rw-r--r-- | src/osx/mod.rs | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/src/osx/mod.rs b/src/osx/mod.rs index c69486a..3f9da82 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -74,6 +74,16 @@ impl Window {      }  } +#[cfg(feature = "window")] +#[deriving(Clone)] +pub struct WindowProxy; + +impl WindowProxy { +    pub fn wakeup_event_loop(&self) { +        // TODO +    } +} +  extern fn window_should_close(this: id, _: id) -> id {      unsafe {          let mut stored_value = ptr::null_mut(); @@ -278,6 +288,10 @@ impl Window {          unimplemented!()      } +    pub fn create_window_proxy(&self) -> WindowProxy { +        WindowProxy +    } +      pub fn poll_events(&self) -> Vec<Event> {          let mut events = Vec::new(); | 
