From 9dc5689eef87cace5e6ac6b5438928a1c99688c4 Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Wed, 17 Dec 2014 14:49:11 +1000 Subject: Introduce a WindowProxy for accessing a subset of functionality from other threads. This currently provides a way for other threads to wakeup a blocked event loop on X11. Other platforms have stub functions that need to be implemented. This is similar to the functionality of glfwPostEmptyEvent. --- src/android/mod.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/android/mod.rs') diff --git a/src/android/mod.rs b/src/android/mod.rs index 8093d50..fd0a857 100644 --- a/src/android/mod.rs +++ b/src/android/mod.rs @@ -207,6 +207,10 @@ impl Window { pub fn set_inner_size(&self, _x: uint, _y: uint) { } + pub fn create_window_proxy(&self) -> WindowProxy { + WindowProxy + } + pub fn poll_events(&self) -> Vec { use std::time::Duration; use std::io::timer; @@ -271,6 +275,16 @@ impl Window { } } +#[cfg(feature = "window")] +#[deriving(Clone)] +pub struct WindowProxy; + +impl WindowProxy { + pub fn wakeup_event_loop(&self) { + // TODO + } +} + #[unsafe_destructor] impl Drop for Window { fn drop(&mut self) { -- cgit v1.2.3