2015-04-24 09:51:23 +02:00
|
|
|
#![cfg(target_os = "android")]
|
|
|
|
|
|
2016-10-31 17:08:55 +01:00
|
|
|
extern crate android_glue;
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
mod ffi;
|
|
|
|
|
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
|
use std::collections::VecDeque;
|
|
|
|
|
use std::fmt;
|
2016-10-31 17:08:55 +01:00
|
|
|
use std::os::raw::c_void;
|
2018-06-14 19:42:18 -04:00
|
|
|
use std::sync::mpsc::{Receiver, channel};
|
|
|
|
|
|
|
|
|
|
use {
|
|
|
|
|
CreationError,
|
|
|
|
|
Event,
|
|
|
|
|
LogicalPosition,
|
|
|
|
|
LogicalSize,
|
|
|
|
|
MouseCursor,
|
|
|
|
|
PhysicalPosition,
|
|
|
|
|
PhysicalSize,
|
|
|
|
|
WindowAttributes,
|
|
|
|
|
WindowEvent,
|
|
|
|
|
WindowId as RootWindowId,
|
|
|
|
|
};
|
2016-10-31 17:08:55 +01:00
|
|
|
use CreationError::OsError;
|
|
|
|
|
use events::{Touch, TouchPhase};
|
2019-02-05 10:30:33 -05:00
|
|
|
use window::MonitorHandle as RootMonitorHandle;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
pub struct EventLoop {
|
2016-10-31 17:08:55 +01:00
|
|
|
event_rx: Receiver<android_glue::Event>,
|
2018-06-14 19:42:18 -04:00
|
|
|
suspend_callback: RefCell<Option<Box<Fn(bool) -> ()>>>,
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-10-25 11:03:57 -07:00
|
|
|
#[derive(Clone)]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub struct EventLoopProxy;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
impl EventLoop {
|
|
|
|
|
pub fn new() -> EventLoop {
|
2017-09-04 12:41:02 +02:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
android_glue::add_sender(tx);
|
2019-02-05 10:30:33 -05:00
|
|
|
EventLoop {
|
2017-09-04 12:41:02 +02:00
|
|
|
event_rx: rx,
|
2018-06-14 19:42:18 -04:00
|
|
|
suspend_callback: Default::default(),
|
2017-09-04 12:41:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_available_monitors(&self) -> VecDeque<MonitorHandle> {
|
2018-06-14 19:42:18 -04:00
|
|
|
let mut rb = VecDeque::with_capacity(1);
|
2019-02-05 10:30:33 -05:00
|
|
|
rb.push_back(MonitorHandle);
|
2017-09-04 12:41:02 +02:00
|
|
|
rb
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorHandle {
|
|
|
|
|
MonitorHandle
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn poll_events<F>(&mut self, mut callback: F)
|
|
|
|
|
where F: FnMut(::Event)
|
|
|
|
|
{
|
2017-10-29 02:02:57 -04:00
|
|
|
while let Ok(event) = self.event_rx.try_recv() {
|
|
|
|
|
let e = match event{
|
|
|
|
|
android_glue::Event::EventMotion(motion) => {
|
2019-02-05 10:30:33 -05:00
|
|
|
let dpi_factor = MonitorHandle.get_hidpi_factor();
|
2018-06-14 19:42:18 -04:00
|
|
|
let location = LogicalPosition::from_physical(
|
|
|
|
|
(motion.x as f64, motion.y as f64),
|
|
|
|
|
dpi_factor,
|
|
|
|
|
);
|
2017-10-29 02:02:57 -04:00
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
|
|
|
|
event: WindowEvent::Touch(Touch {
|
|
|
|
|
phase: match motion.action {
|
|
|
|
|
android_glue::MotionAction::Down => TouchPhase::Started,
|
|
|
|
|
android_glue::MotionAction::Move => TouchPhase::Moved,
|
|
|
|
|
android_glue::MotionAction::Up => TouchPhase::Ended,
|
|
|
|
|
android_glue::MotionAction::Cancel => TouchPhase::Cancelled,
|
|
|
|
|
},
|
2018-06-14 19:42:18 -04:00
|
|
|
location,
|
2017-10-29 02:02:57 -04:00
|
|
|
id: motion.pointer_id as u64,
|
|
|
|
|
device_id: DEVICE_ID,
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::InitWindow => {
|
|
|
|
|
// The activity went to foreground.
|
2018-02-15 14:09:14 +01:00
|
|
|
if let Some(cb) = self.suspend_callback.borrow().as_ref() {
|
|
|
|
|
(*cb)(false);
|
|
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
Some(Event::Suspended(false))
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::TermWindow => {
|
|
|
|
|
// The activity went to background.
|
2018-02-15 14:09:14 +01:00
|
|
|
if let Some(cb) = self.suspend_callback.borrow().as_ref() {
|
|
|
|
|
(*cb)(true);
|
|
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
Some(Event::Suspended(true))
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::WindowResized |
|
|
|
|
|
android_glue::Event::ConfigChanged => {
|
|
|
|
|
// Activity Orientation changed or resized.
|
|
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
2019-02-05 10:30:33 -05:00
|
|
|
let dpi_factor = MonitorHandle.get_hidpi_factor();
|
|
|
|
|
let physical_size = MonitorHandle.get_dimensions();
|
2018-06-14 19:42:18 -04:00
|
|
|
let size = LogicalSize::from_physical(physical_size, dpi_factor);
|
2017-10-29 02:02:57 -04:00
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
2018-06-14 19:42:18 -04:00
|
|
|
event: WindowEvent::Resized(size),
|
2017-10-29 02:02:57 -04:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
android_glue::Event::WindowRedrawNeeded => {
|
|
|
|
|
// The activity needs to be redrawn.
|
2017-09-15 16:24:09 +02:00
|
|
|
Some(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(WindowId),
|
2019-02-05 10:30:33 -05:00
|
|
|
event: WindowEvent::Redraw,
|
2017-09-15 16:24:09 +02:00
|
|
|
})
|
2017-09-04 12:41:02 +02:00
|
|
|
}
|
2018-03-07 01:06:56 +08:00
|
|
|
android_glue::Event::Wake => {
|
|
|
|
|
Some(Event::Awakened)
|
|
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
_ => {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
};
|
2017-12-22 07:50:46 -05:00
|
|
|
|
2017-10-29 02:02:57 -04:00
|
|
|
if let Some(event) = e {
|
|
|
|
|
callback(event);
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-09-04 12:41:02 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-15 14:09:14 +01:00
|
|
|
pub fn set_suspend_callback(&self, cb: Option<Box<Fn(bool) -> ()>>) {
|
|
|
|
|
*self.suspend_callback.borrow_mut() = cb;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn run_forever<F>(&mut self, mut callback: F)
|
|
|
|
|
where F: FnMut(::Event) -> ::ControlFlow,
|
|
|
|
|
{
|
|
|
|
|
// Yeah that's a very bad implementation.
|
|
|
|
|
loop {
|
|
|
|
|
let mut control_flow = ::ControlFlow::Continue;
|
|
|
|
|
self.poll_events(|e| {
|
|
|
|
|
if let ::ControlFlow::Break = callback(e) {
|
|
|
|
|
control_flow = ::ControlFlow::Break;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if let ::ControlFlow::Break = control_flow {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
::std::thread::sleep(::std::time::Duration::from_millis(5));
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-09-04 12:41:02 +02:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn create_proxy(&self) -> EventLoopProxy {
|
|
|
|
|
EventLoopProxy
|
2017-09-04 12:41:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
impl EventLoopProxy {
|
|
|
|
|
pub fn wakeup(&self) -> Result<(), ::EventLoopClosed> {
|
2017-09-04 12:41:02 +02:00
|
|
|
android_glue::wake_event_loop();
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
|
pub struct WindowId;
|
|
|
|
|
|
2018-12-21 09:51:48 -07:00
|
|
|
impl WindowId {
|
|
|
|
|
pub unsafe fn dummy() -> Self {
|
|
|
|
|
WindowId
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
|
pub struct DeviceId;
|
|
|
|
|
|
2018-12-21 09:51:48 -07:00
|
|
|
impl DeviceId {
|
|
|
|
|
pub unsafe fn dummy() -> Self {
|
|
|
|
|
DeviceId
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
pub struct Window {
|
2017-09-04 12:41:02 +02:00
|
|
|
native_window: *const c_void,
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
#[derive(Clone)]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub struct MonitorHandle;
|
2017-09-04 12:41:02 +02:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
impl fmt::Debug for MonitorHandle {
|
2018-06-14 19:42:18 -04:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
#[derive(Debug)]
|
2019-02-05 10:30:33 -05:00
|
|
|
struct MonitorHandle {
|
2018-06-14 19:42:18 -04:00
|
|
|
name: Option<String>,
|
|
|
|
|
dimensions: PhysicalSize,
|
|
|
|
|
position: PhysicalPosition,
|
|
|
|
|
hidpi_factor: f64,
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
let monitor_id_proxy = MonitorHandle {
|
2018-06-14 19:42:18 -04:00
|
|
|
name: self.get_name(),
|
|
|
|
|
dimensions: self.get_dimensions(),
|
|
|
|
|
position: self.get_position(),
|
|
|
|
|
hidpi_factor: self.get_hidpi_factor(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
monitor_id_proxy.fmt(f)
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
impl MonitorHandle {
|
2016-10-31 17:08:55 +01:00
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn get_name(&self) -> Option<String> {
|
|
|
|
|
Some("Primary".to_string())
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_dimensions(&self) -> PhysicalSize {
|
2018-02-08 14:55:17 +01:00
|
|
|
unsafe {
|
|
|
|
|
let window = android_glue::get_native_window();
|
2018-06-14 19:42:18 -04:00
|
|
|
(
|
|
|
|
|
ffi::ANativeWindow_getWidth(window) as f64,
|
|
|
|
|
ffi::ANativeWindow_getHeight(window) as f64,
|
|
|
|
|
).into()
|
2018-02-08 14:55:17 +01:00
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-09-07 09:33:46 +01:00
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_position(&self) -> PhysicalPosition {
|
2017-09-07 09:33:46 +01:00
|
|
|
// Android assumes single screen
|
2018-06-14 19:42:18 -04:00
|
|
|
(0, 0).into()
|
2017-09-07 09:33:46 +01:00
|
|
|
}
|
2017-10-17 14:56:38 +03:00
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_hidpi_factor(&self) -> f64 {
|
2017-10-17 14:56:38 +03:00
|
|
|
1.0
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
|
pub struct PlatformSpecificWindowBuilderAttributes;
|
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
|
pub struct PlatformSpecificHeadlessBuilderAttributes;
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
impl Window {
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn new(_: &EventLoop, win_attribs: WindowAttributes,
|
2018-05-07 17:36:21 -04:00
|
|
|
_: PlatformSpecificWindowBuilderAttributes)
|
2017-09-06 17:32:24 +02:00
|
|
|
-> Result<Window, CreationError>
|
2017-09-04 12:41:02 +02:00
|
|
|
{
|
2016-10-31 17:08:55 +01:00
|
|
|
let native_window = unsafe { android_glue::get_native_window() };
|
|
|
|
|
if native_window.is_null() {
|
|
|
|
|
return Err(OsError(format!("Android's native window is null")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android_glue::set_multitouch(win_attribs.multitouch);
|
|
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
Ok(Window {
|
2016-10-31 17:08:55 +01:00
|
|
|
native_window: native_window as *const _,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn get_native_window(&self) -> *const c_void {
|
|
|
|
|
self.native_window
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_title(&self, _: &str) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn show(&self) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn hide(&self) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_position(&self) -> Option<LogicalPosition> {
|
|
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-16 21:40:30 -04:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_inner_position(&self) -> Option<LogicalPosition> {
|
|
|
|
|
// N/A
|
2018-04-16 21:40:30 -04:00
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-31 17:08:55 +01:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn set_position(&self, _position: LogicalPosition) {
|
|
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2018-03-23 05:35:35 -04:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn set_min_dimensions(&self, _dimensions: Option<LogicalSize>) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
2018-03-23 05:35:35 -04:00
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn set_max_dimensions(&self, _dimensions: Option<LogicalSize>) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
2018-03-23 05:35:35 -04:00
|
|
|
|
2018-06-11 16:47:50 -06:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_resizable(&self, _resizable: bool) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
2018-06-14 19:42:18 -04:00
|
|
|
|
2016-10-31 17:08:55 +01:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_inner_size(&self) -> Option<LogicalSize> {
|
2017-09-04 12:41:02 +02:00
|
|
|
if self.native_window.is_null() {
|
2016-10-31 17:08:55 +01:00
|
|
|
None
|
|
|
|
|
} else {
|
2018-06-14 19:42:18 -04:00
|
|
|
let dpi_factor = self.get_hidpi_factor();
|
|
|
|
|
let physical_size = self.get_current_monitor().get_dimensions();
|
|
|
|
|
Some(LogicalSize::from_physical(physical_size, dpi_factor))
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_outer_size(&self) -> Option<LogicalSize> {
|
2016-10-31 17:08:55 +01:00
|
|
|
self.get_inner_size()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn set_inner_size(&self, _size: LogicalSize) {
|
|
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_hidpi_factor(&self) -> f64 {
|
|
|
|
|
self.get_current_monitor().get_hidpi_factor()
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_cursor(&self, _: MouseCursor) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-18 12:32:18 -04:00
|
|
|
pub fn grab_cursor(&self, _grab: bool) -> Result<(), String> {
|
|
|
|
|
Err("Cursor grabbing is not possible on Android.".to_owned())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn hide_cursor(&self, _hide: bool) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-19 10:30:15 -04:00
|
|
|
pub fn set_cursor_position(&self, _position: LogicalPosition) -> Result<(), String> {
|
|
|
|
|
Err("Setting cursor position is not possible on Android.".to_owned())
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-08-28 00:22:26 +01:00
|
|
|
|
2017-08-28 01:43:34 +01:00
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn set_maximized(&self, _maximized: bool) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2017-09-07 09:33:46 +01:00
|
|
|
// Android has single screen maximized apps so nothing to do
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn set_fullscreen(&self, _monitor: Option<RootMonitorHandle>) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2017-09-07 09:33:46 +01:00
|
|
|
// Android has single screen maximized apps so nothing to do
|
2017-08-28 01:43:34 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-22 07:50:46 -05:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_decorations(&self, _decorations: bool) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-20 10:24:05 -04:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_always_on_top(&self, _always_on_top: bool) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 17:36:21 -04:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_window_icon(&self, _icon: Option<::Icon>) {
|
|
|
|
|
// N/A
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 21:28:30 -04:00
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn set_ime_spot(&self, _spot: LogicalPosition) {
|
2018-05-17 21:28:30 -04:00
|
|
|
// N/A
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:22:26 +01:00
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_current_monitor(&self) -> RootMonitorHandle {
|
|
|
|
|
RootMonitorHandle { inner: MonitorHandle }
|
2017-08-28 00:22:26 +01:00
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2018-06-16 10:14:12 -04:00
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_available_monitors(&self) -> VecDeque<MonitorHandle> {
|
2018-06-16 10:14:12 -04:00
|
|
|
let mut rb = VecDeque::with_capacity(1);
|
2019-02-05 10:30:33 -05:00
|
|
|
rb.push_back(MonitorHandle);
|
2018-06-16 10:14:12 -04:00
|
|
|
rb
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorHandle {
|
|
|
|
|
MonitorHandle
|
2018-06-16 10:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
#[inline]
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn id(&self) -> WindowId {
|
|
|
|
|
WindowId
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-07-06 23:33:42 +02:00
|
|
|
|
2017-09-06 17:32:24 +02:00
|
|
|
unsafe impl Send for Window {}
|
|
|
|
|
unsafe impl Sync for Window {}
|
2017-09-04 12:41:02 +02:00
|
|
|
|
2017-07-06 23:33:42 +02:00
|
|
|
// Constant device ID, to be removed when this backend is updated to report real device IDs.
|
|
|
|
|
const DEVICE_ID: ::DeviceId = ::DeviceId(DeviceId);
|