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;
|
|
|
|
|
|
2019-06-21 11:33:15 -04:00
|
|
|
use std::{
|
|
|
|
|
cell::RefCell,
|
|
|
|
|
collections::VecDeque,
|
|
|
|
|
fmt,
|
|
|
|
|
os::raw::c_void,
|
|
|
|
|
sync::mpsc::{channel, Receiver},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
|
error::{ExternalError, NotSupportedError},
|
|
|
|
|
events::{Touch, TouchPhase},
|
|
|
|
|
window::MonitorHandle as RootMonitorHandle,
|
|
|
|
|
CreationError, CursorIcon, Event, LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize,
|
|
|
|
|
WindowAttributes, WindowEvent, WindowId as RootWindowId,
|
2018-06-14 19:42:18 -04:00
|
|
|
};
|
2019-09-30 17:17:01 +02:00
|
|
|
use raw_window_handle::{android::AndroidHandle, RawWindowHandle};
|
2016-10-31 17:08:55 +01:00
|
|
|
use CreationError::OsError;
|
|
|
|
|
|
2019-05-29 21:29:54 -04:00
|
|
|
pub type OsError = std::io::Error;
|
|
|
|
|
|
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>,
|
2019-06-18 02:27:00 +08:00
|
|
|
suspend_callback: RefCell<Option<Box<dyn 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-05-29 21:29:54 -04:00
|
|
|
pub fn 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-05-29 21:29:54 -04:00
|
|
|
pub fn primary_monitor(&self) -> MonitorHandle {
|
2019-02-05 10:30:33 -05:00
|
|
|
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)
|
2019-06-21 11:33:15 -04:00
|
|
|
where
|
|
|
|
|
F: FnMut(::Event),
|
2017-09-04 12:41:02 +02:00
|
|
|
{
|
2017-10-29 02:02:57 -04:00
|
|
|
while let Ok(event) = self.event_rx.try_recv() {
|
2019-06-21 11:33:15 -04:00
|
|
|
let e = match event {
|
2017-10-29 02:02:57 -04:00
|
|
|
android_glue::Event::EventMotion(motion) => {
|
2019-05-29 21:29:54 -04:00
|
|
|
let dpi_factor = MonitorHandle.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,
|
2019-08-14 01:12:13 +03:00
|
|
|
force: None, // TODO
|
2017-10-29 02:02:57 -04:00
|
|
|
id: motion.pointer_id as u64,
|
|
|
|
|
device_id: DEVICE_ID,
|
|
|
|
|
}),
|
|
|
|
|
})
|
2019-06-24 12:14:55 -04:00
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2019-06-22 04:59:31 +02:00
|
|
|
Some(Event::Resumed)
|
2019-06-24 12:14:55 -04:00
|
|
|
}
|
2017-10-29 02:02:57 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2019-06-22 04:59:31 +02:00
|
|
|
Some(Event::Suspended)
|
2019-06-24 12:14:55 -04:00
|
|
|
}
|
2019-06-21 11:33:15 -04:00
|
|
|
android_glue::Event::WindowResized | android_glue::Event::ConfigChanged => {
|
2017-10-29 02:02:57 -04:00
|
|
|
// Activity Orientation changed or resized.
|
2019-05-29 21:29:54 -04:00
|
|
|
let native_window = unsafe { android_glue::native_window() };
|
2017-10-29 02:02:57 -04:00
|
|
|
if native_window.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
2019-05-29 21:29:54 -04:00
|
|
|
let dpi_factor = MonitorHandle.hidpi_factor();
|
2019-06-13 02:33:44 -04:00
|
|
|
let physical_size = MonitorHandle.size();
|
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
|
|
|
})
|
|
|
|
|
}
|
2019-06-24 12:14:55 -04:00
|
|
|
}
|
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
|
|
|
})
|
2019-06-24 12:14:55 -04:00
|
|
|
}
|
2019-06-21 11:33:15 -04:00
|
|
|
android_glue::Event::Wake => Some(Event::Awakened),
|
|
|
|
|
_ => None,
|
2017-10-29 02:02:57 -04:00
|
|
|
};
|
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
|
|
|
}
|
2019-06-21 11:33:15 -04:00
|
|
|
}
|
2017-09-04 12:41:02 +02:00
|
|
|
}
|
|
|
|
|
|
2019-06-18 02:27:00 +08:00
|
|
|
pub fn set_suspend_callback(&self, cb: Option<Box<dyn Fn(bool) -> ()>>) {
|
2018-02-15 14:09:14 +01:00
|
|
|
*self.suspend_callback.borrow_mut() = cb;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
pub fn run_forever<F>(&mut self, mut callback: F)
|
2019-06-21 11:33:15 -04:00
|
|
|
where
|
|
|
|
|
F: FnMut(::Event) -> ::ControlFlow,
|
2017-09-04 12:41:02 +02:00
|
|
|
{
|
|
|
|
|
// 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 {
|
2019-12-07 18:22:03 +01:00
|
|
|
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 {
|
2019-06-18 02:27:00 +08:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-06-14 19:42:18 -04:00
|
|
|
#[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 {
|
2019-05-29 21:29:54 -04:00
|
|
|
name: self.name(),
|
2019-06-13 02:33:44 -04:00
|
|
|
dimensions: self.size(),
|
2019-05-29 21:29:54 -04:00
|
|
|
position: self.outer_position(),
|
|
|
|
|
hidpi_factor: self.hidpi_factor(),
|
2018-06-14 19:42:18 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn name(&self) -> Option<String> {
|
2017-09-04 12:41:02 +02:00
|
|
|
Some("Primary".to_string())
|
|
|
|
|
}
|
2016-10-31 17:08:55 +01:00
|
|
|
|
2017-09-04 12:41:02 +02:00
|
|
|
#[inline]
|
2019-06-13 02:33:44 -04:00
|
|
|
pub fn size(&self) -> PhysicalSize {
|
2018-02-08 14:55:17 +01:00
|
|
|
unsafe {
|
2019-05-29 21:29:54 -04:00
|
|
|
let window = android_glue::native_window();
|
2018-06-14 19:42:18 -04:00
|
|
|
(
|
|
|
|
|
ffi::ANativeWindow_getWidth(window) as f64,
|
|
|
|
|
ffi::ANativeWindow_getHeight(window) as f64,
|
2019-06-21 11:33:15 -04:00
|
|
|
)
|
|
|
|
|
.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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn outer_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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn 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-06-21 11:33:15 -04:00
|
|
|
pub fn new(
|
|
|
|
|
_: &EventLoop,
|
|
|
|
|
win_attribs: WindowAttributes,
|
|
|
|
|
_: PlatformSpecificWindowBuilderAttributes,
|
|
|
|
|
) -> Result<Window, CreationError> {
|
2019-05-29 21:29:54 -04:00
|
|
|
let native_window = unsafe { android_glue::native_window() };
|
2016-10-31 17:08:55 +01:00
|
|
|
if native_window.is_null() {
|
|
|
|
|
return Err(OsError(format!("Android's native window is null")));
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 21:29:54 -04:00
|
|
|
android_glue::set_multitouch(true);
|
2016-10-31 17:08:55 +01:00
|
|
|
|
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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn native_window(&self) -> *const c_void {
|
2016-10-31 17:08:55 +01:00
|
|
|
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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn outer_position(&self) -> Option<LogicalPosition> {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-16 21:40:30 -04:00
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn inner_position(&self) -> Option<LogicalPosition> {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2018-04-16 21:40:30 -04:00
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-31 17:08:55 +01:00
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_outer_position(&self, _position: LogicalPosition) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
2018-03-23 05:35:35 -04:00
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_min_inner_size(&self, _dimensions: Option<LogicalSize>) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
|
|
|
|
}
|
2018-03-23 05:35:35 -04:00
|
|
|
|
|
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_max_inner_size(&self, _dimensions: Option<LogicalSize>) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// 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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn 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 {
|
2019-05-29 21:29:54 -04:00
|
|
|
let dpi_factor = self.hidpi_factor();
|
2019-06-13 02:33:44 -04:00
|
|
|
let physical_size = self.current_monitor().size();
|
2018-06-14 19:42:18 -04:00
|
|
|
Some(LogicalSize::from_physical(physical_size, dpi_factor))
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn outer_size(&self) -> Option<LogicalSize> {
|
|
|
|
|
self.inner_size()
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn hidpi_factor(&self) -> f64 {
|
|
|
|
|
self.current_monitor().hidpi_factor()
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_cursor_icon(&self, _: CursorIcon) {
|
2018-06-14 19:42:18 -04:00
|
|
|
// N/A
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_cursor_grab(&self, _grab: bool) -> Result<(), ExternalError> {
|
|
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
2018-06-18 12:32:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_cursor_position(&self, _position: LogicalPosition) -> Result<(), ExternalError> {
|
|
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
2016-10-31 17:08:55 +01:00
|
|
|
}
|
2017-08-28 00:22:26 +01:00
|
|
|
|
2019-12-22 01:04:11 -05:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_minimized(&self, _minimized: bool) {
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-26 03:09:32 +10:00
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn fullscreen(&self) -> Option<RootMonitorHandle> {
|
2019-04-26 03:09:32 +10:00
|
|
|
// N/A
|
|
|
|
|
// Android has single screen maximized apps so nothing to do
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-07 09:33:46 +01:00
|
|
|
#[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]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_ime_position(&self, _spot: LogicalPosition) {
|
2018-05-17 21:28:30 -04:00
|
|
|
// N/A
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 00:22:26 +01:00
|
|
|
#[inline]
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn current_monitor(&self) -> RootMonitorHandle {
|
2019-06-21 11:33:15 -04:00
|
|
|
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-05-29 21:29:54 -04:00
|
|
|
pub fn 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-05-29 21:29:54 -04:00
|
|
|
pub fn primary_monitor(&self) -> MonitorHandle {
|
2019-02-05 10:30:33 -05:00
|
|
|
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
|
|
|
}
|
2019-09-30 17:17:01 +02:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn raw_window_handle(&self) -> RawWindowHandle {
|
|
|
|
|
let handle = AndroidHandle {
|
|
|
|
|
a_native_window: self.native_window,
|
|
|
|
|
..WindowsHandle::empty()
|
|
|
|
|
};
|
|
|
|
|
RawWindowHandle::Android(handle)
|
|
|
|
|
}
|
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);
|