2021-04-11 01:09:09 +03:00
|
|
|
|
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2021-04-12 02:44:01 +03:00
|
|
|
|
//! The [`wry`] Tauri [`Runtime`].
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
use tauri_runtime::{
|
2021-08-24 17:40:10 +03:00
|
|
|
|
http::{
|
|
|
|
|
Request as HttpRequest, RequestParts as HttpRequestParts, Response as HttpResponse,
|
|
|
|
|
ResponseParts as HttpResponseParts,
|
|
|
|
|
},
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu::{CustomMenuItem, Menu, MenuEntry, MenuHash, MenuId, MenuItem, MenuUpdate},
|
2021-05-10 00:43:50 +03:00
|
|
|
|
monitor::Monitor,
|
2021-05-09 21:19:37 +03:00
|
|
|
|
webview::{
|
|
|
|
|
FileDropEvent, FileDropHandler, RpcRequest, WebviewRpcHandler, WindowBuilder, WindowBuilderBase,
|
|
|
|
|
},
|
|
|
|
|
window::{
|
|
|
|
|
dpi::{LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size},
|
2021-05-10 19:27:42 +03:00
|
|
|
|
DetachedWindow, PendingWindow, WindowEvent,
|
2021-04-04 03:41:04 +03:00
|
|
|
|
},
|
2021-08-09 03:12:32 +03:00
|
|
|
|
ClipboardManager, Dispatch, Error, ExitRequestedEventAction, GlobalShortcutManager, Icon, Result,
|
|
|
|
|
RunEvent, RunIteration, Runtime, RuntimeHandle, UserAttentionType,
|
2021-02-17 17:15:04 +03:00
|
|
|
|
};
|
2021-04-29 01:56:05 +03:00
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
|
use tauri_runtime::window::MenuEvent;
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
use tauri_runtime::{SystemTray, SystemTrayEvent};
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-12-29 13:07:08 +03:00
|
|
|
|
use webview2_com::FocusChangedEventHandler;
|
2021-11-12 00:38:41 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-12-30 17:28:41 +03:00
|
|
|
|
use windows::Win32::{Foundation::HWND, System::WinRT::EventRegistrationToken};
|
2021-07-29 22:29:59 +03:00
|
|
|
|
#[cfg(all(feature = "system-tray", target_os = "macos"))]
|
|
|
|
|
use wry::application::platform::macos::{SystemTrayBuilderExtMacOS, SystemTrayExtMacOS};
|
2021-07-15 18:47:19 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
use wry::application::platform::unix::{WindowBuilderExtUnix, WindowExtUnix};
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-07-15 18:47:19 +03:00
|
|
|
|
use wry::application::platform::windows::{WindowBuilderExtWindows, WindowExtWindows};
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
use wry::application::system_tray::{SystemTray as WrySystemTray, SystemTrayBuilder};
|
2021-05-10 19:27:42 +03:00
|
|
|
|
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
|
|
|
|
static EGUI_ID: once_cell::sync::Lazy<Mutex<Option<WindowId>>> =
|
|
|
|
|
once_cell::sync::Lazy::new(|| Mutex::new(None));
|
2022-01-05 12:56:55 +03:00
|
|
|
|
|
2021-05-09 21:19:37 +03:00
|
|
|
|
use tauri_utils::config::WindowConfig;
|
2021-05-06 06:43:02 +03:00
|
|
|
|
use uuid::Uuid;
|
2021-04-29 01:56:05 +03:00
|
|
|
|
use wry::{
|
|
|
|
|
application::{
|
2021-06-21 18:29:26 +03:00
|
|
|
|
accelerator::{Accelerator, AcceleratorId},
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard::Clipboard,
|
2021-05-06 02:15:08 +03:00
|
|
|
|
dpi::{
|
|
|
|
|
LogicalPosition as WryLogicalPosition, LogicalSize as WryLogicalSize,
|
|
|
|
|
PhysicalPosition as WryPhysicalPosition, PhysicalSize as WryPhysicalSize,
|
|
|
|
|
Position as WryPosition, Size as WrySize,
|
|
|
|
|
},
|
2021-08-15 23:10:22 +03:00
|
|
|
|
event::{Event, StartCause, WindowEvent as WryWindowEvent},
|
2021-04-29 01:56:05 +03:00
|
|
|
|
event_loop::{ControlFlow, EventLoop, EventLoopProxy, EventLoopWindowTarget},
|
2021-07-29 20:35:26 +03:00
|
|
|
|
global_shortcut::{GlobalShortcut, ShortcutManager as WryShortcutManager},
|
2021-08-13 16:23:32 +03:00
|
|
|
|
menu::{
|
|
|
|
|
CustomMenuItem as WryCustomMenuItem, MenuBar, MenuId as WryMenuId, MenuItem as WryMenuItem,
|
|
|
|
|
MenuItemAttributes as WryMenuItemAttributes, MenuType,
|
|
|
|
|
},
|
2021-05-06 02:15:08 +03:00
|
|
|
|
monitor::MonitorHandle,
|
2021-08-02 22:45:24 +03:00
|
|
|
|
window::{Fullscreen, Icon as WindowIcon, UserAttentionType as WryUserAttentionType},
|
2021-04-29 01:56:05 +03:00
|
|
|
|
},
|
2021-08-24 17:40:10 +03:00
|
|
|
|
http::{
|
|
|
|
|
Request as WryHttpRequest, RequestParts as WryRequestParts, Response as WryHttpResponse,
|
|
|
|
|
ResponseParts as WryResponseParts,
|
|
|
|
|
},
|
2021-04-29 01:56:05 +03:00
|
|
|
|
webview::{
|
2021-06-16 04:04:06 +03:00
|
|
|
|
FileDropEvent as WryFileDropEvent, RpcRequest as WryRpcRequest, RpcResponse, WebContext,
|
|
|
|
|
WebView, WebViewBuilder,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub use wry::application::window::{Window, WindowBuilder as WryWindowBuilder, WindowId};
|
2021-07-29 20:35:26 +03:00
|
|
|
|
|
2021-07-23 16:31:17 +03:00
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
|
use wry::webview::WebviewExtWindows;
|
|
|
|
|
|
2021-08-13 16:23:32 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
2021-08-13 19:25:31 +03:00
|
|
|
|
use tauri_runtime::{menu::NativeImage, ActivationPolicy};
|
2021-08-13 16:23:32 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
pub use wry::application::platform::macos::{
|
2021-08-13 19:25:31 +03:00
|
|
|
|
ActivationPolicy as WryActivationPolicy, CustomMenuItemExtMacOS, EventLoopExtMacOS,
|
|
|
|
|
NativeImage as WryNativeImage, WindowExtMacOS,
|
2021-08-13 16:23:32 +03:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-21 21:43:11 +03:00
|
|
|
|
use std::{
|
2021-08-02 05:54:10 +03:00
|
|
|
|
collections::{
|
|
|
|
|
hash_map::Entry::{Occupied, Vacant},
|
2021-12-09 18:22:12 +03:00
|
|
|
|
HashMap, HashSet,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
},
|
2021-08-11 08:07:39 +03:00
|
|
|
|
fmt,
|
2021-05-19 03:46:21 +03:00
|
|
|
|
fs::read,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
ops::Deref,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
path::PathBuf,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
sync::{
|
2021-06-05 04:23:03 +03:00
|
|
|
|
mpsc::{channel, Sender},
|
2021-08-31 21:50:40 +03:00
|
|
|
|
Arc, Mutex, MutexGuard, Weak,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
},
|
2021-06-16 17:07:41 +03:00
|
|
|
|
thread::{current as current_thread, ThreadId},
|
2021-04-21 21:43:11 +03:00
|
|
|
|
};
|
2021-02-08 17:19:22 +03:00
|
|
|
|
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
use glutin::platform::ContextTraitExt;
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
use gtk::prelude::*;
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
use std::{
|
|
|
|
|
cell::RefCell,
|
|
|
|
|
rc::Rc,
|
|
|
|
|
sync::atomic::{AtomicU8, Ordering},
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-13 16:23:32 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
mod system_tray;
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
use system_tray::*;
|
2021-05-10 19:27:42 +03:00
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
type WebContextStore = Arc<Mutex<HashMap<Option<PathBuf>, WebContext>>>;
|
2021-08-13 16:23:32 +03:00
|
|
|
|
// window
|
2021-05-06 06:43:02 +03:00
|
|
|
|
type WindowEventHandler = Box<dyn Fn(&WindowEvent) + Send>;
|
2021-06-23 22:20:09 +03:00
|
|
|
|
type WindowEventListenersMap = Arc<Mutex<HashMap<Uuid, WindowEventHandler>>>;
|
|
|
|
|
type WindowEventListeners = Arc<Mutex<HashMap<WindowId, WindowEventListenersMap>>>;
|
2021-08-13 16:23:32 +03:00
|
|
|
|
// global shortcut
|
2021-06-21 18:29:26 +03:00
|
|
|
|
type GlobalShortcutListeners = Arc<Mutex<HashMap<AcceleratorId, Box<dyn Fn() + Send>>>>;
|
2021-08-13 16:23:32 +03:00
|
|
|
|
// menu
|
|
|
|
|
pub type MenuEventHandler = Box<dyn Fn(&MenuEvent) + Send>;
|
|
|
|
|
pub type MenuEventListeners = Arc<Mutex<HashMap<WindowId, WindowMenuEventListeners>>>;
|
|
|
|
|
pub type WindowMenuEventListeners = Arc<Mutex<HashMap<Uuid, MenuEventHandler>>>;
|
2021-06-21 18:29:26 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
macro_rules! getter {
|
|
|
|
|
($self: ident, $rx: expr, $message: expr) => {{
|
|
|
|
|
send_user_message(&$self.context, $message)?;
|
|
|
|
|
$rx.recv().unwrap()
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}};
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
macro_rules! window_getter {
|
2021-06-21 18:29:26 +03:00
|
|
|
|
($self: ident, $message: expr) => {{
|
2021-09-28 02:18:06 +03:00
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
getter!($self, rx, Message::Window($self.window_id, $message(tx)))
|
2021-06-21 18:29:26 +03:00
|
|
|
|
}};
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
fn send_user_message(context: &Context, message: Message) -> Result<()> {
|
|
|
|
|
if current_thread().id() == context.main_thread_id {
|
|
|
|
|
handle_user_message(
|
|
|
|
|
&context.main_thread.window_target,
|
|
|
|
|
message,
|
|
|
|
|
UserMessageContext {
|
|
|
|
|
window_event_listeners: &context.window_event_listeners,
|
|
|
|
|
global_shortcut_manager: context.main_thread.global_shortcut_manager.clone(),
|
|
|
|
|
clipboard_manager: context.main_thread.clipboard_manager.clone(),
|
|
|
|
|
menu_event_listeners: &context.menu_event_listeners,
|
|
|
|
|
windows: context.main_thread.windows.clone(),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: &context.main_thread.tray_context,
|
|
|
|
|
},
|
|
|
|
|
&context.main_thread.web_context,
|
|
|
|
|
);
|
|
|
|
|
Ok(())
|
|
|
|
|
} else {
|
|
|
|
|
context
|
|
|
|
|
.proxy
|
|
|
|
|
.send_event(message)
|
|
|
|
|
.map_err(|_| Error::FailedToSendMessage)
|
|
|
|
|
}
|
2021-06-21 18:29:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
#[derive(Clone)]
|
2021-09-28 02:18:06 +03:00
|
|
|
|
struct Context {
|
2021-06-21 18:29:26 +03:00
|
|
|
|
main_thread_id: ThreadId,
|
|
|
|
|
proxy: EventLoopProxy<Message>,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_event_listeners: WindowEventListeners,
|
|
|
|
|
menu_event_listeners: MenuEventListeners,
|
|
|
|
|
main_thread: DispatcherMainThreadContext,
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
struct DispatcherMainThreadContext {
|
|
|
|
|
window_target: EventLoopWindowTarget<Message>,
|
|
|
|
|
web_context: WebContextStore,
|
|
|
|
|
global_shortcut_manager: Arc<Mutex<WryShortcutManager>>,
|
|
|
|
|
clipboard_manager: Arc<Mutex<Clipboard>>,
|
|
|
|
|
windows: Arc<Mutex<HashMap<WindowId, WindowWrapper>>>,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: TrayContext,
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: we ensure this type is only used on the main thread.
|
2021-11-10 17:12:05 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-09-28 02:18:06 +03:00
|
|
|
|
unsafe impl Send for DispatcherMainThreadContext {}
|
|
|
|
|
|
|
|
|
|
impl fmt::Debug for Context {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
f.debug_struct("Context")
|
2021-09-26 07:50:27 +03:00
|
|
|
|
.field("main_thread_id", &self.main_thread_id)
|
|
|
|
|
.field("proxy", &self.proxy)
|
|
|
|
|
.field("main_thread", &self.main_thread)
|
|
|
|
|
.finish()
|
|
|
|
|
}
|
2021-06-21 18:29:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 17:40:10 +03:00
|
|
|
|
struct HttpRequestPartsWrapper(HttpRequestParts);
|
|
|
|
|
|
|
|
|
|
impl From<HttpRequestPartsWrapper> for HttpRequestParts {
|
|
|
|
|
fn from(parts: HttpRequestPartsWrapper) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
method: parts.0.method,
|
|
|
|
|
uri: parts.0.uri,
|
|
|
|
|
headers: parts.0.headers,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<HttpRequestParts> for HttpRequestPartsWrapper {
|
|
|
|
|
fn from(request: HttpRequestParts) -> Self {
|
|
|
|
|
Self(HttpRequestParts {
|
|
|
|
|
method: request.method,
|
|
|
|
|
uri: request.uri,
|
|
|
|
|
headers: request.headers,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<WryRequestParts> for HttpRequestPartsWrapper {
|
|
|
|
|
fn from(request: WryRequestParts) -> Self {
|
|
|
|
|
Self(HttpRequestParts {
|
|
|
|
|
method: request.method,
|
|
|
|
|
uri: request.uri,
|
|
|
|
|
headers: request.headers,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct HttpRequestWrapper(HttpRequest);
|
|
|
|
|
|
|
|
|
|
impl From<&WryHttpRequest> for HttpRequestWrapper {
|
|
|
|
|
fn from(req: &WryHttpRequest) -> Self {
|
|
|
|
|
Self(HttpRequest {
|
|
|
|
|
body: req.body.clone(),
|
|
|
|
|
head: HttpRequestPartsWrapper::from(req.head.clone()).0,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// response
|
|
|
|
|
struct HttpResponsePartsWrapper(WryResponseParts);
|
|
|
|
|
impl From<HttpResponseParts> for HttpResponsePartsWrapper {
|
|
|
|
|
fn from(response: HttpResponseParts) -> Self {
|
|
|
|
|
Self(WryResponseParts {
|
|
|
|
|
mimetype: response.mimetype,
|
|
|
|
|
status: response.status,
|
|
|
|
|
version: response.version,
|
|
|
|
|
headers: response.headers,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct HttpResponseWrapper(WryHttpResponse);
|
|
|
|
|
impl From<HttpResponse> for HttpResponseWrapper {
|
|
|
|
|
fn from(response: HttpResponse) -> Self {
|
|
|
|
|
Self(WryHttpResponse {
|
|
|
|
|
body: response.body,
|
|
|
|
|
head: HttpResponsePartsWrapper::from(response.head).0,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 16:23:32 +03:00
|
|
|
|
pub struct MenuItemAttributesWrapper<'a>(pub WryMenuItemAttributes<'a>);
|
|
|
|
|
|
|
|
|
|
impl<'a> From<&'a CustomMenuItem> for MenuItemAttributesWrapper<'a> {
|
|
|
|
|
fn from(item: &'a CustomMenuItem) -> Self {
|
|
|
|
|
let mut attributes = WryMenuItemAttributes::new(&item.title)
|
|
|
|
|
.with_enabled(item.enabled)
|
|
|
|
|
.with_selected(item.selected)
|
|
|
|
|
.with_id(WryMenuId(item.id));
|
|
|
|
|
if let Some(accelerator) = item.keyboard_accelerator.as_ref() {
|
|
|
|
|
attributes = attributes.with_accelerators(&accelerator.parse().expect("invalid accelerator"));
|
|
|
|
|
}
|
|
|
|
|
Self(attributes)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct MenuItemWrapper(pub WryMenuItem);
|
|
|
|
|
|
|
|
|
|
impl From<MenuItem> for MenuItemWrapper {
|
|
|
|
|
fn from(item: MenuItem) -> Self {
|
|
|
|
|
match item {
|
|
|
|
|
MenuItem::About(v) => Self(WryMenuItem::About(v)),
|
|
|
|
|
MenuItem::Hide => Self(WryMenuItem::Hide),
|
|
|
|
|
MenuItem::Services => Self(WryMenuItem::Services),
|
|
|
|
|
MenuItem::HideOthers => Self(WryMenuItem::HideOthers),
|
|
|
|
|
MenuItem::ShowAll => Self(WryMenuItem::ShowAll),
|
|
|
|
|
MenuItem::CloseWindow => Self(WryMenuItem::CloseWindow),
|
|
|
|
|
MenuItem::Quit => Self(WryMenuItem::Quit),
|
|
|
|
|
MenuItem::Copy => Self(WryMenuItem::Copy),
|
|
|
|
|
MenuItem::Cut => Self(WryMenuItem::Cut),
|
|
|
|
|
MenuItem::Undo => Self(WryMenuItem::Undo),
|
|
|
|
|
MenuItem::Redo => Self(WryMenuItem::Redo),
|
|
|
|
|
MenuItem::SelectAll => Self(WryMenuItem::SelectAll),
|
|
|
|
|
MenuItem::Paste => Self(WryMenuItem::Paste),
|
|
|
|
|
MenuItem::EnterFullScreen => Self(WryMenuItem::EnterFullScreen),
|
|
|
|
|
MenuItem::Minimize => Self(WryMenuItem::Minimize),
|
|
|
|
|
MenuItem::Zoom => Self(WryMenuItem::Zoom),
|
|
|
|
|
MenuItem::Separator => Self(WryMenuItem::Separator),
|
|
|
|
|
_ => unimplemented!(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
pub struct NativeImageWrapper(pub WryNativeImage);
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
impl std::fmt::Debug for NativeImageWrapper {
|
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
|
f.debug_struct("NativeImageWrapper").finish()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
impl From<NativeImage> for NativeImageWrapper {
|
|
|
|
|
fn from(image: NativeImage) -> NativeImageWrapper {
|
|
|
|
|
let wry_image = match image {
|
|
|
|
|
NativeImage::Add => WryNativeImage::Add,
|
|
|
|
|
NativeImage::Advanced => WryNativeImage::Advanced,
|
|
|
|
|
NativeImage::Bluetooth => WryNativeImage::Bluetooth,
|
|
|
|
|
NativeImage::Bookmarks => WryNativeImage::Bookmarks,
|
|
|
|
|
NativeImage::Caution => WryNativeImage::Caution,
|
|
|
|
|
NativeImage::ColorPanel => WryNativeImage::ColorPanel,
|
|
|
|
|
NativeImage::ColumnView => WryNativeImage::ColumnView,
|
|
|
|
|
NativeImage::Computer => WryNativeImage::Computer,
|
|
|
|
|
NativeImage::EnterFullScreen => WryNativeImage::EnterFullScreen,
|
|
|
|
|
NativeImage::Everyone => WryNativeImage::Everyone,
|
|
|
|
|
NativeImage::ExitFullScreen => WryNativeImage::ExitFullScreen,
|
|
|
|
|
NativeImage::FlowView => WryNativeImage::FlowView,
|
|
|
|
|
NativeImage::Folder => WryNativeImage::Folder,
|
|
|
|
|
NativeImage::FolderBurnable => WryNativeImage::FolderBurnable,
|
|
|
|
|
NativeImage::FolderSmart => WryNativeImage::FolderSmart,
|
|
|
|
|
NativeImage::FollowLinkFreestanding => WryNativeImage::FollowLinkFreestanding,
|
|
|
|
|
NativeImage::FontPanel => WryNativeImage::FontPanel,
|
|
|
|
|
NativeImage::GoLeft => WryNativeImage::GoLeft,
|
|
|
|
|
NativeImage::GoRight => WryNativeImage::GoRight,
|
|
|
|
|
NativeImage::Home => WryNativeImage::Home,
|
|
|
|
|
NativeImage::IChatTheater => WryNativeImage::IChatTheater,
|
|
|
|
|
NativeImage::IconView => WryNativeImage::IconView,
|
|
|
|
|
NativeImage::Info => WryNativeImage::Info,
|
|
|
|
|
NativeImage::InvalidDataFreestanding => WryNativeImage::InvalidDataFreestanding,
|
|
|
|
|
NativeImage::LeftFacingTriangle => WryNativeImage::LeftFacingTriangle,
|
|
|
|
|
NativeImage::ListView => WryNativeImage::ListView,
|
|
|
|
|
NativeImage::LockLocked => WryNativeImage::LockLocked,
|
|
|
|
|
NativeImage::LockUnlocked => WryNativeImage::LockUnlocked,
|
|
|
|
|
NativeImage::MenuMixedState => WryNativeImage::MenuMixedState,
|
|
|
|
|
NativeImage::MenuOnState => WryNativeImage::MenuOnState,
|
|
|
|
|
NativeImage::MobileMe => WryNativeImage::MobileMe,
|
|
|
|
|
NativeImage::MultipleDocuments => WryNativeImage::MultipleDocuments,
|
|
|
|
|
NativeImage::Network => WryNativeImage::Network,
|
|
|
|
|
NativeImage::Path => WryNativeImage::Path,
|
|
|
|
|
NativeImage::PreferencesGeneral => WryNativeImage::PreferencesGeneral,
|
|
|
|
|
NativeImage::QuickLook => WryNativeImage::QuickLook,
|
|
|
|
|
NativeImage::RefreshFreestanding => WryNativeImage::RefreshFreestanding,
|
|
|
|
|
NativeImage::Refresh => WryNativeImage::Refresh,
|
|
|
|
|
NativeImage::Remove => WryNativeImage::Remove,
|
|
|
|
|
NativeImage::RevealFreestanding => WryNativeImage::RevealFreestanding,
|
|
|
|
|
NativeImage::RightFacingTriangle => WryNativeImage::RightFacingTriangle,
|
|
|
|
|
NativeImage::Share => WryNativeImage::Share,
|
|
|
|
|
NativeImage::Slideshow => WryNativeImage::Slideshow,
|
|
|
|
|
NativeImage::SmartBadge => WryNativeImage::SmartBadge,
|
|
|
|
|
NativeImage::StatusAvailable => WryNativeImage::StatusAvailable,
|
|
|
|
|
NativeImage::StatusNone => WryNativeImage::StatusNone,
|
|
|
|
|
NativeImage::StatusPartiallyAvailable => WryNativeImage::StatusPartiallyAvailable,
|
|
|
|
|
NativeImage::StatusUnavailable => WryNativeImage::StatusUnavailable,
|
|
|
|
|
NativeImage::StopProgressFreestanding => WryNativeImage::StopProgressFreestanding,
|
|
|
|
|
NativeImage::StopProgress => WryNativeImage::StopProgress,
|
|
|
|
|
|
|
|
|
|
NativeImage::TrashEmpty => WryNativeImage::TrashEmpty,
|
|
|
|
|
NativeImage::TrashFull => WryNativeImage::TrashFull,
|
|
|
|
|
NativeImage::User => WryNativeImage::User,
|
|
|
|
|
NativeImage::UserAccounts => WryNativeImage::UserAccounts,
|
|
|
|
|
NativeImage::UserGroup => WryNativeImage::UserGroup,
|
|
|
|
|
NativeImage::UserGuest => WryNativeImage::UserGuest,
|
|
|
|
|
};
|
|
|
|
|
Self(wry_image)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 19:32:22 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct GlobalShortcutWrapper(GlobalShortcut);
|
2021-06-21 19:32:22 +03:00
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: usage outside of main thread is guarded, we use the event loop on such cases.
|
2021-11-24 17:12:26 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-06-21 19:32:22 +03:00
|
|
|
|
unsafe impl Send for GlobalShortcutWrapper {}
|
|
|
|
|
|
2021-06-21 18:29:26 +03:00
|
|
|
|
/// Wrapper around [`WryShortcutManager`].
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct GlobalShortcutManagerHandle {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-06-30 16:38:22 +03:00
|
|
|
|
shortcuts: Arc<Mutex<HashMap<String, (AcceleratorId, GlobalShortcutWrapper)>>>,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
listeners: GlobalShortcutListeners,
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
|
|
|
|
unsafe impl Sync for GlobalShortcutManagerHandle {}
|
|
|
|
|
|
2021-08-11 08:07:39 +03:00
|
|
|
|
impl fmt::Debug for GlobalShortcutManagerHandle {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
f.debug_struct("GlobalShortcutManagerHandle")
|
|
|
|
|
.field("context", &self.context)
|
|
|
|
|
.field("shortcuts", &self.shortcuts)
|
|
|
|
|
.finish()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 18:29:26 +03:00
|
|
|
|
impl GlobalShortcutManager for GlobalShortcutManagerHandle {
|
|
|
|
|
fn is_registered(&self, accelerator: &str) -> Result<bool> {
|
|
|
|
|
let (tx, rx) = channel();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
Ok(getter!(
|
2021-06-21 18:29:26 +03:00
|
|
|
|
self,
|
|
|
|
|
rx,
|
|
|
|
|
Message::GlobalShortcut(GlobalShortcutMessage::IsRegistered(
|
|
|
|
|
accelerator.parse().expect("invalid accelerator"),
|
|
|
|
|
tx
|
|
|
|
|
))
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn register<F: Fn() + Send + 'static>(&mut self, accelerator: &str, handler: F) -> Result<()> {
|
|
|
|
|
let wry_accelerator: Accelerator = accelerator.parse().expect("invalid accelerator");
|
|
|
|
|
let id = wry_accelerator.clone().id();
|
|
|
|
|
let (tx, rx) = channel();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
let shortcut = getter!(
|
2021-06-21 18:29:26 +03:00
|
|
|
|
self,
|
|
|
|
|
rx,
|
|
|
|
|
Message::GlobalShortcut(GlobalShortcutMessage::Register(wry_accelerator, tx))
|
|
|
|
|
)?;
|
|
|
|
|
|
|
|
|
|
self.listeners.lock().unwrap().insert(id, Box::new(handler));
|
2021-06-30 16:38:22 +03:00
|
|
|
|
self
|
|
|
|
|
.shortcuts
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(accelerator.into(), (id, shortcut));
|
2021-06-21 18:29:26 +03:00
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn unregister_all(&mut self) -> Result<()> {
|
|
|
|
|
let (tx, rx) = channel();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
getter!(
|
2021-06-21 18:29:26 +03:00
|
|
|
|
self,
|
|
|
|
|
rx,
|
|
|
|
|
Message::GlobalShortcut(GlobalShortcutMessage::UnregisterAll(tx))
|
|
|
|
|
)?;
|
|
|
|
|
self.listeners.lock().unwrap().clear();
|
2021-06-30 16:38:22 +03:00
|
|
|
|
self.shortcuts.lock().unwrap().clear();
|
2021-06-21 18:29:26 +03:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn unregister(&mut self, accelerator: &str) -> Result<()> {
|
2021-06-30 16:38:22 +03:00
|
|
|
|
if let Some((accelerator_id, shortcut)) = self.shortcuts.lock().unwrap().remove(accelerator) {
|
2021-06-21 18:29:26 +03:00
|
|
|
|
let (tx, rx) = channel();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
getter!(
|
2021-06-21 18:29:26 +03:00
|
|
|
|
self,
|
|
|
|
|
rx,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
Message::GlobalShortcut(GlobalShortcutMessage::Unregister(shortcut, tx))
|
2021-06-21 18:29:26 +03:00
|
|
|
|
)?;
|
|
|
|
|
self.listeners.lock().unwrap().remove(&accelerator_id);
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-06-21 19:32:22 +03:00
|
|
|
|
pub struct ClipboardManagerWrapper {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
|
|
|
|
unsafe impl Sync for ClipboardManagerWrapper {}
|
|
|
|
|
|
2021-06-21 19:32:22 +03:00
|
|
|
|
impl ClipboardManager for ClipboardManagerWrapper {
|
|
|
|
|
fn read_text(&self) -> Result<Option<String>> {
|
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
Ok(getter!(
|
|
|
|
|
self,
|
|
|
|
|
rx,
|
|
|
|
|
Message::Clipboard(ClipboardMessage::ReadText(tx))
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn write_text<T: Into<String>>(&mut self, text: T) -> Result<()> {
|
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
getter!(
|
|
|
|
|
self,
|
|
|
|
|
rx,
|
|
|
|
|
Message::Clipboard(ClipboardMessage::WriteText(text.into(), tx))
|
|
|
|
|
);
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
/// Wrapper around a [`wry::application::window::Icon`] that can be created from an [`Icon`].
|
|
|
|
|
pub struct WryIcon(WindowIcon);
|
2021-02-14 03:35:55 +03:00
|
|
|
|
|
2021-05-19 03:46:21 +03:00
|
|
|
|
fn icon_err<E: std::error::Error + Send + 'static>(e: E) -> Error {
|
|
|
|
|
Error::InvalidIcon(Box::new(e))
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
impl TryFrom<Icon> for WryIcon {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
type Error = Error;
|
|
|
|
|
fn try_from(icon: Icon) -> std::result::Result<Self, Self::Error> {
|
2021-05-19 03:46:21 +03:00
|
|
|
|
let image_bytes = match icon {
|
|
|
|
|
Icon::File(path) => read(path).map_err(icon_err)?,
|
|
|
|
|
Icon::Raw(raw) => raw,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
_ => unimplemented!(),
|
2021-02-14 03:35:55 +03:00
|
|
|
|
};
|
2021-05-19 03:46:21 +03:00
|
|
|
|
let extension = infer::get(&image_bytes)
|
|
|
|
|
.expect("could not determine icon extension")
|
|
|
|
|
.extension();
|
|
|
|
|
match extension {
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
"ico" => {
|
|
|
|
|
let icon_dir = ico::IconDir::read(std::io::Cursor::new(image_bytes)).map_err(icon_err)?;
|
|
|
|
|
let entry = &icon_dir.entries()[0];
|
|
|
|
|
let icon = WindowIcon::from_rgba(
|
|
|
|
|
entry.decode().map_err(icon_err)?.rgba_data().to_vec(),
|
|
|
|
|
entry.width(),
|
|
|
|
|
entry.height(),
|
|
|
|
|
)
|
|
|
|
|
.map_err(icon_err)?;
|
|
|
|
|
Ok(Self(icon))
|
|
|
|
|
}
|
2021-06-01 19:07:48 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
"png" => {
|
|
|
|
|
let decoder = png::Decoder::new(std::io::Cursor::new(image_bytes));
|
|
|
|
|
let (info, mut reader) = decoder.read_info().map_err(icon_err)?;
|
|
|
|
|
let mut buffer = Vec::new();
|
|
|
|
|
while let Ok(Some(row)) = reader.next_row() {
|
|
|
|
|
buffer.extend(row);
|
|
|
|
|
}
|
|
|
|
|
let icon = WindowIcon::from_rgba(buffer, info.width, info.height).map_err(icon_err)?;
|
|
|
|
|
Ok(Self(icon))
|
|
|
|
|
}
|
2021-05-19 03:46:21 +03:00
|
|
|
|
_ => panic!(
|
|
|
|
|
"image `{}` extension not supported; please file a Tauri feature request",
|
|
|
|
|
extension
|
|
|
|
|
),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
2021-02-14 03:35:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-08 17:19:22 +03:00
|
|
|
|
|
2021-05-06 06:43:02 +03:00
|
|
|
|
struct WindowEventWrapper(Option<WindowEvent>);
|
|
|
|
|
|
2021-09-30 02:52:05 +03:00
|
|
|
|
impl WindowEventWrapper {
|
2021-10-22 16:04:42 +03:00
|
|
|
|
fn parse(webview: &WindowHandle, event: &WryWindowEvent<'_>) -> Self {
|
2021-09-30 02:52:05 +03:00
|
|
|
|
match event {
|
|
|
|
|
// resized event from tao doesn't include a reliable size on macOS
|
|
|
|
|
// because wry replaces the NSView
|
|
|
|
|
WryWindowEvent::Resized(_) => Self(Some(WindowEvent::Resized(
|
|
|
|
|
PhysicalSizeWrapper(webview.inner_size()).into(),
|
|
|
|
|
))),
|
|
|
|
|
e => e.into(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-06 06:43:02 +03:00
|
|
|
|
impl<'a> From<&WryWindowEvent<'a>> for WindowEventWrapper {
|
|
|
|
|
fn from(event: &WryWindowEvent<'a>) -> Self {
|
|
|
|
|
let event = match event {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
WryWindowEvent::Resized(size) => WindowEvent::Resized(PhysicalSizeWrapper(*size).into()),
|
|
|
|
|
WryWindowEvent::Moved(position) => {
|
|
|
|
|
WindowEvent::Moved(PhysicalPositionWrapper(*position).into())
|
|
|
|
|
}
|
2021-05-06 06:43:02 +03:00
|
|
|
|
WryWindowEvent::Destroyed => WindowEvent::Destroyed,
|
|
|
|
|
WryWindowEvent::ScaleFactorChanged {
|
|
|
|
|
scale_factor,
|
|
|
|
|
new_inner_size,
|
|
|
|
|
} => WindowEvent::ScaleFactorChanged {
|
|
|
|
|
scale_factor: *scale_factor,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
new_inner_size: PhysicalSizeWrapper(**new_inner_size).into(),
|
2021-05-06 06:43:02 +03:00
|
|
|
|
},
|
2021-08-24 17:47:54 +03:00
|
|
|
|
#[cfg(any(target_os = "linux", target_os = "macos"))]
|
|
|
|
|
WryWindowEvent::Focused(focused) => WindowEvent::Focused(*focused),
|
2021-05-06 06:43:02 +03:00
|
|
|
|
_ => return Self(None),
|
|
|
|
|
};
|
|
|
|
|
Self(Some(event))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 16:31:17 +03:00
|
|
|
|
impl From<&WebviewEvent> for WindowEventWrapper {
|
|
|
|
|
fn from(event: &WebviewEvent) -> Self {
|
|
|
|
|
let event = match event {
|
|
|
|
|
WebviewEvent::Focused(focused) => WindowEvent::Focused(*focused),
|
|
|
|
|
};
|
|
|
|
|
Self(Some(event))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
pub struct MonitorHandleWrapper(MonitorHandle);
|
|
|
|
|
|
|
|
|
|
impl From<MonitorHandleWrapper> for Monitor {
|
|
|
|
|
fn from(monitor: MonitorHandleWrapper) -> Monitor {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
name: monitor.0.name(),
|
|
|
|
|
position: PhysicalPositionWrapper(monitor.0.position()).into(),
|
|
|
|
|
size: PhysicalSizeWrapper(monitor.0.size()).into(),
|
|
|
|
|
scale_factor: monitor.0.scale_factor(),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct PhysicalPositionWrapper<T>(WryPhysicalPosition<T>);
|
|
|
|
|
|
|
|
|
|
impl<T> From<PhysicalPositionWrapper<T>> for PhysicalPosition<T> {
|
|
|
|
|
fn from(position: PhysicalPositionWrapper<T>) -> Self {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
x: position.0.x,
|
|
|
|
|
y: position.0.y,
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
impl<T> From<PhysicalPosition<T>> for PhysicalPositionWrapper<T> {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(position: PhysicalPosition<T>) -> Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Self(WryPhysicalPosition {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
x: position.x,
|
|
|
|
|
y: position.y,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
})
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct LogicalPositionWrapper<T>(WryLogicalPosition<T>);
|
|
|
|
|
|
|
|
|
|
impl<T> From<LogicalPosition<T>> for LogicalPositionWrapper<T> {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(position: LogicalPosition<T>) -> Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Self(WryLogicalPosition {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
x: position.x,
|
|
|
|
|
y: position.y,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
})
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct PhysicalSizeWrapper<T>(WryPhysicalSize<T>);
|
|
|
|
|
|
|
|
|
|
impl<T> From<PhysicalSizeWrapper<T>> for PhysicalSize<T> {
|
|
|
|
|
fn from(size: PhysicalSizeWrapper<T>) -> Self {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
width: size.0.width,
|
|
|
|
|
height: size.0.height,
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
impl<T> From<PhysicalSize<T>> for PhysicalSizeWrapper<T> {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(size: PhysicalSize<T>) -> Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Self(WryPhysicalSize {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
width: size.width,
|
|
|
|
|
height: size.height,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
})
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct LogicalSizeWrapper<T>(WryLogicalSize<T>);
|
|
|
|
|
|
|
|
|
|
impl<T> From<LogicalSize<T>> for LogicalSizeWrapper<T> {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(size: LogicalSize<T>) -> Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Self(WryLogicalSize {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
width: size.width,
|
|
|
|
|
height: size.height,
|
2021-05-10 00:43:50 +03:00
|
|
|
|
})
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct SizeWrapper(WrySize);
|
|
|
|
|
|
|
|
|
|
impl From<Size> for SizeWrapper {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(size: Size) -> Self {
|
|
|
|
|
match size {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Size::Logical(s) => Self(WrySize::Logical(LogicalSizeWrapper::from(s).0)),
|
|
|
|
|
Size::Physical(s) => Self(WrySize::Physical(PhysicalSizeWrapper::from(s).0)),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
struct PositionWrapper(WryPosition);
|
|
|
|
|
|
|
|
|
|
impl From<Position> for PositionWrapper {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
fn from(position: Position) -> Self {
|
|
|
|
|
match position {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
Position::Logical(s) => Self(WryPosition::Logical(LogicalPositionWrapper::from(s).0)),
|
|
|
|
|
Position::Physical(s) => Self(WryPosition::Physical(PhysicalPositionWrapper::from(s).0)),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 05:42:38 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct UserAttentionTypeWrapper(WryUserAttentionType);
|
2021-06-21 05:42:38 +03:00
|
|
|
|
|
|
|
|
|
impl From<UserAttentionType> for UserAttentionTypeWrapper {
|
|
|
|
|
fn from(request_type: UserAttentionType) -> UserAttentionTypeWrapper {
|
|
|
|
|
let o = match request_type {
|
|
|
|
|
UserAttentionType::Critical => WryUserAttentionType::Critical,
|
|
|
|
|
UserAttentionType::Informational => WryUserAttentionType::Informational,
|
|
|
|
|
};
|
|
|
|
|
Self(o)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
#[derive(Debug, Clone, Default)]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
pub struct WindowBuilderWrapper {
|
|
|
|
|
inner: WryWindowBuilder,
|
2021-06-06 00:20:16 +03:00
|
|
|
|
center: bool,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu: Option<Menu>,
|
2021-06-04 19:51:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: this type is `Send` since `menu_items` are read only here
|
2021-11-24 17:12:26 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
unsafe impl Send for WindowBuilderWrapper {}
|
2021-05-10 00:43:50 +03:00
|
|
|
|
|
|
|
|
|
impl WindowBuilderBase for WindowBuilderWrapper {}
|
|
|
|
|
impl WindowBuilder for WindowBuilderWrapper {
|
2021-04-12 02:44:01 +03:00
|
|
|
|
fn new() -> Self {
|
|
|
|
|
Default::default()
|
2021-02-17 17:15:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-12 02:44:01 +03:00
|
|
|
|
fn with_config(config: WindowConfig) -> Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
let mut window = WindowBuilderWrapper::new()
|
2021-04-12 02:44:01 +03:00
|
|
|
|
.title(config.title.to_string())
|
2021-04-29 01:56:05 +03:00
|
|
|
|
.inner_size(config.width, config.height)
|
2021-04-12 02:44:01 +03:00
|
|
|
|
.visible(config.visible)
|
|
|
|
|
.resizable(config.resizable)
|
|
|
|
|
.decorations(config.decorations)
|
|
|
|
|
.maximized(config.maximized)
|
|
|
|
|
.fullscreen(config.fullscreen)
|
|
|
|
|
.transparent(config.transparent)
|
2021-05-31 00:43:28 +03:00
|
|
|
|
.always_on_top(config.always_on_top)
|
|
|
|
|
.skip_taskbar(config.skip_taskbar);
|
2021-04-12 02:44:01 +03:00
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
if let (Some(min_width), Some(min_height)) = (config.min_width, config.min_height) {
|
|
|
|
|
window = window.min_inner_size(min_width, min_height);
|
2021-02-17 17:15:04 +03:00
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
if let (Some(max_width), Some(max_height)) = (config.max_width, config.max_height) {
|
|
|
|
|
window = window.max_inner_size(max_width, max_height);
|
2021-02-17 17:15:04 +03:00
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
if let (Some(x), Some(y)) = (config.x, config.y) {
|
|
|
|
|
window = window.position(x, y);
|
2021-02-17 17:15:04 +03:00
|
|
|
|
}
|
2021-03-18 03:17:37 +03:00
|
|
|
|
|
2021-07-12 17:59:32 +03:00
|
|
|
|
if config.center {
|
|
|
|
|
window = window.center();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
window
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn menu(mut self, menu: Menu) -> Self {
|
2021-10-08 17:38:24 +03:00
|
|
|
|
self.menu.replace(menu);
|
2021-06-04 19:51:15 +03:00
|
|
|
|
self
|
2021-05-08 18:11:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 00:20:16 +03:00
|
|
|
|
fn center(mut self) -> Self {
|
|
|
|
|
self.center = true;
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn position(mut self, x: f64, y: f64) -> Self {
|
|
|
|
|
self.inner = self.inner.with_position(WryLogicalPosition::new(x, y));
|
|
|
|
|
self
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn inner_size(mut self, width: f64, height: f64) -> Self {
|
|
|
|
|
self.inner = self
|
|
|
|
|
.inner
|
|
|
|
|
.with_inner_size(WryLogicalSize::new(width, height));
|
|
|
|
|
self
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn min_inner_size(mut self, min_width: f64, min_height: f64) -> Self {
|
|
|
|
|
self.inner = self
|
|
|
|
|
.inner
|
|
|
|
|
.with_min_inner_size(WryLogicalSize::new(min_width, min_height));
|
|
|
|
|
self
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn max_inner_size(mut self, max_width: f64, max_height: f64) -> Self {
|
|
|
|
|
self.inner = self
|
|
|
|
|
.inner
|
|
|
|
|
.with_max_inner_size(WryLogicalSize::new(max_width, max_height));
|
|
|
|
|
self
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn resizable(mut self, resizable: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_resizable(resizable);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn title<S: Into<String>>(mut self, title: S) -> Self {
|
|
|
|
|
self.inner = self.inner.with_title(title.into());
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn fullscreen(mut self, fullscreen: bool) -> Self {
|
|
|
|
|
self.inner = if fullscreen {
|
|
|
|
|
self
|
|
|
|
|
.inner
|
|
|
|
|
.with_fullscreen(Some(Fullscreen::Borderless(None)))
|
2021-04-29 01:56:05 +03:00
|
|
|
|
} else {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
self.inner.with_fullscreen(None)
|
|
|
|
|
};
|
|
|
|
|
self
|
2021-02-12 03:50:39 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 18:47:19 +03:00
|
|
|
|
/// Deprecated since 0.1.4 (noop)
|
|
|
|
|
/// Windows is automatically focused when created.
|
|
|
|
|
fn focus(self) -> Self {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
self
|
2021-05-30 23:41:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn maximized(mut self, maximized: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_maximized(maximized);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn visible(mut self, visible: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_visible(visible);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn transparent(mut self, transparent: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_transparent(transparent);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn decorations(mut self, decorations: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_decorations(decorations);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn always_on_top(mut self, always_on_top: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_always_on_top(always_on_top);
|
|
|
|
|
self
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
2021-02-16 20:42:08 +03:00
|
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn parent_window(mut self, parent: HWND) -> Self {
|
|
|
|
|
self.inner = self.inner.with_parent_window(parent);
|
|
|
|
|
self
|
2021-05-21 22:16:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn owner_window(mut self, owner: HWND) -> Self {
|
|
|
|
|
self.inner = self.inner.with_owner_window(owner);
|
|
|
|
|
self
|
2021-05-21 22:16:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn icon(mut self, icon: Icon) -> Result<Self> {
|
|
|
|
|
self.inner = self
|
|
|
|
|
.inner
|
|
|
|
|
.with_window_icon(Some(WryIcon::try_from(icon)?.0));
|
|
|
|
|
Ok(self)
|
2021-02-23 17:57:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 18:47:19 +03:00
|
|
|
|
#[cfg(any(target_os = "windows", target_os = "linux"))]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn skip_taskbar(mut self, skip: bool) -> Self {
|
|
|
|
|
self.inner = self.inner.with_skip_taskbar(skip);
|
|
|
|
|
self
|
2021-05-31 00:43:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 18:47:19 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
fn skip_taskbar(self, _skip: bool) -> Self {
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-23 17:57:58 +03:00
|
|
|
|
fn has_icon(&self) -> bool {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
self.inner.window.window_icon.is_some()
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
2021-05-08 18:11:40 +03:00
|
|
|
|
|
2021-10-08 17:38:24 +03:00
|
|
|
|
fn get_menu(&self) -> Option<&Menu> {
|
|
|
|
|
self.menu.as_ref()
|
2021-05-08 18:11:40 +03:00
|
|
|
|
}
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
pub struct RpcRequestWrapper(WryRpcRequest);
|
|
|
|
|
|
|
|
|
|
impl From<RpcRequestWrapper> for RpcRequest {
|
|
|
|
|
fn from(request: RpcRequestWrapper) -> Self {
|
2021-03-07 05:19:12 +03:00
|
|
|
|
Self {
|
2021-05-10 00:43:50 +03:00
|
|
|
|
command: request.0.method,
|
|
|
|
|
params: request.0.params,
|
2021-03-07 05:19:12 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
pub struct FileDropEventWrapper(WryFileDropEvent);
|
|
|
|
|
|
|
|
|
|
impl From<FileDropEventWrapper> for FileDropEvent {
|
|
|
|
|
fn from(event: FileDropEventWrapper) -> Self {
|
|
|
|
|
match event.0 {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
WryFileDropEvent::Hovered(paths) => FileDropEvent::Hovered(paths),
|
|
|
|
|
WryFileDropEvent::Dropped(paths) => FileDropEvent::Dropped(paths),
|
2021-07-15 18:47:19 +03:00
|
|
|
|
// default to cancelled
|
|
|
|
|
// FIXME(maybe): Add `FileDropEvent::Unknown` event?
|
|
|
|
|
_ => FileDropEvent::Cancelled,
|
2021-03-13 03:02:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct NSWindow(*mut std::ffi::c_void);
|
2021-07-29 20:35:26 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
2021-11-10 17:12:05 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-07-29 20:35:26 +03:00
|
|
|
|
unsafe impl Send for NSWindow {}
|
|
|
|
|
|
2021-05-21 22:53:46 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct Hwnd(HWND);
|
2021-05-21 22:53:46 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-11-10 17:12:05 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-05-21 22:53:46 +03:00
|
|
|
|
unsafe impl Send for Hwnd {}
|
|
|
|
|
|
2021-07-02 19:08:51 +03:00
|
|
|
|
#[cfg(any(
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
target_os = "dragonfly",
|
|
|
|
|
target_os = "freebsd",
|
|
|
|
|
target_os = "netbsd",
|
|
|
|
|
target_os = "openbsd"
|
|
|
|
|
))]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct GtkWindow(gtk::ApplicationWindow);
|
2021-07-02 19:08:51 +03:00
|
|
|
|
#[cfg(any(
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
target_os = "dragonfly",
|
|
|
|
|
target_os = "freebsd",
|
|
|
|
|
target_os = "netbsd",
|
|
|
|
|
target_os = "openbsd"
|
|
|
|
|
))]
|
2021-11-10 17:12:05 +03:00
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
2021-07-02 19:08:51 +03:00
|
|
|
|
unsafe impl Send for GtkWindow {}
|
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum WindowMessage {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
// Getters
|
|
|
|
|
ScaleFactor(Sender<f64>),
|
2021-05-10 00:43:50 +03:00
|
|
|
|
InnerPosition(Sender<Result<PhysicalPosition<i32>>>),
|
|
|
|
|
OuterPosition(Sender<Result<PhysicalPosition<i32>>>),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
InnerSize(Sender<PhysicalSize<u32>>),
|
|
|
|
|
OuterSize(Sender<PhysicalSize<u32>>),
|
|
|
|
|
IsFullscreen(Sender<bool>),
|
|
|
|
|
IsMaximized(Sender<bool>),
|
2021-05-30 23:16:07 +03:00
|
|
|
|
IsDecorated(Sender<bool>),
|
2021-05-30 23:23:52 +03:00
|
|
|
|
IsResizable(Sender<bool>),
|
2021-05-31 00:06:24 +03:00
|
|
|
|
IsVisible(Sender<bool>),
|
2021-06-16 04:04:44 +03:00
|
|
|
|
IsMenuVisible(Sender<bool>),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
CurrentMonitor(Sender<Option<MonitorHandle>>),
|
|
|
|
|
PrimaryMonitor(Sender<Option<MonitorHandle>>),
|
|
|
|
|
AvailableMonitors(Sender<Vec<MonitorHandle>>),
|
2021-07-29 20:35:26 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
NSWindow(Sender<NSWindow>),
|
2021-05-21 22:53:46 +03:00
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
Hwnd(Sender<Hwnd>),
|
2021-07-02 19:08:51 +03:00
|
|
|
|
#[cfg(any(
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
target_os = "dragonfly",
|
|
|
|
|
target_os = "freebsd",
|
|
|
|
|
target_os = "netbsd",
|
|
|
|
|
target_os = "openbsd"
|
|
|
|
|
))]
|
|
|
|
|
GtkWindow(Sender<GtkWindow>),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
// Setters
|
2021-06-06 00:20:16 +03:00
|
|
|
|
Center(Sender<Result<()>>),
|
2021-06-21 05:42:38 +03:00
|
|
|
|
RequestUserAttention(Option<UserAttentionTypeWrapper>),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
SetResizable(bool),
|
|
|
|
|
SetTitle(String),
|
|
|
|
|
Maximize,
|
|
|
|
|
Unmaximize,
|
|
|
|
|
Minimize,
|
|
|
|
|
Unminimize,
|
2021-06-16 04:04:44 +03:00
|
|
|
|
ShowMenu,
|
|
|
|
|
HideMenu,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
Show,
|
|
|
|
|
Hide,
|
|
|
|
|
Close,
|
|
|
|
|
SetDecorations(bool),
|
|
|
|
|
SetAlwaysOnTop(bool),
|
2021-05-06 02:15:08 +03:00
|
|
|
|
SetSize(Size),
|
|
|
|
|
SetMinSize(Option<Size>),
|
|
|
|
|
SetMaxSize(Option<Size>),
|
|
|
|
|
SetPosition(Position),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
SetFullscreen(bool),
|
2021-05-30 23:29:04 +03:00
|
|
|
|
SetFocus,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
SetIcon(WindowIcon),
|
2021-05-31 02:48:21 +03:00
|
|
|
|
SetSkipTaskbar(bool),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
DragWindow,
|
2021-08-13 16:23:32 +03:00
|
|
|
|
UpdateMenuItem(u16, MenuUpdate),
|
2022-01-05 12:56:55 +03:00
|
|
|
|
RequestRedraw,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum WebviewMessage {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
EvaluateScript(String),
|
2021-07-23 16:31:17 +03:00
|
|
|
|
#[allow(dead_code)]
|
|
|
|
|
WebviewEvent(WebviewEvent),
|
2021-05-07 16:58:44 +03:00
|
|
|
|
Print,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 16:31:17 +03:00
|
|
|
|
#[allow(dead_code)]
|
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum WebviewEvent {
|
2021-07-23 16:31:17 +03:00
|
|
|
|
Focused(bool),
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum TrayMessage {
|
2021-08-13 16:23:32 +03:00
|
|
|
|
UpdateItem(u16, MenuUpdate),
|
2021-10-02 21:57:53 +03:00
|
|
|
|
UpdateMenu(SystemTrayMenu),
|
2021-06-04 19:51:15 +03:00
|
|
|
|
UpdateIcon(Icon),
|
2021-07-29 22:29:59 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
UpdateIconAsTemplate(bool),
|
2021-06-04 19:51:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum GlobalShortcutMessage {
|
2021-06-21 18:29:26 +03:00
|
|
|
|
IsRegistered(Accelerator, Sender<bool>),
|
|
|
|
|
Register(Accelerator, Sender<Result<GlobalShortcutWrapper>>),
|
|
|
|
|
Unregister(GlobalShortcutWrapper, Sender<Result<()>>),
|
|
|
|
|
UnregisterAll(Sender<Result<()>>),
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum ClipboardMessage {
|
2021-06-21 19:32:22 +03:00
|
|
|
|
WriteText(String, Sender<()>),
|
|
|
|
|
ReadText(Sender<Option<String>>),
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub enum Message {
|
2021-07-02 06:06:58 +03:00
|
|
|
|
Task(Box<dyn FnOnce() + Send>),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
Window(WindowId, WindowMessage),
|
|
|
|
|
Webview(WindowId, WebviewMessage),
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
Tray(TrayMessage),
|
2021-07-02 06:06:58 +03:00
|
|
|
|
CreateWebview(
|
2021-08-02 05:54:10 +03:00
|
|
|
|
Box<
|
|
|
|
|
dyn FnOnce(&EventLoopWindowTarget<Message>, &WebContextStore) -> Result<WindowWrapper> + Send,
|
|
|
|
|
>,
|
2021-07-02 06:06:58 +03:00
|
|
|
|
Sender<WindowId>,
|
|
|
|
|
),
|
2021-07-29 20:35:26 +03:00
|
|
|
|
CreateWindow(
|
|
|
|
|
Box<dyn FnOnce() -> (String, WryWindowBuilder) + Send>,
|
2021-08-31 21:50:40 +03:00
|
|
|
|
Sender<Result<Weak<Window>>>,
|
2021-07-29 20:35:26 +03:00
|
|
|
|
),
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
CreateGLWindow(
|
|
|
|
|
String,
|
|
|
|
|
Box<dyn epi::App + Send>,
|
|
|
|
|
epi::NativeOptions,
|
|
|
|
|
EventLoopProxy<Message>,
|
|
|
|
|
),
|
2021-06-21 18:29:26 +03:00
|
|
|
|
GlobalShortcut(GlobalShortcutMessage),
|
2021-06-21 19:32:22 +03:00
|
|
|
|
Clipboard(ClipboardMessage),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
impl Clone for Message {
|
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
|
match self {
|
|
|
|
|
Self::Window(i, m) => Self::Window(*i, m.clone()),
|
|
|
|
|
Self::Webview(i, m) => Self::Webview(*i, m.clone()),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
Self::Tray(m) => Self::Tray(m.clone()),
|
|
|
|
|
Self::GlobalShortcut(m) => Self::GlobalShortcut(m.clone()),
|
|
|
|
|
Self::Clipboard(m) => Self::Clipboard(m.clone()),
|
|
|
|
|
_ => unimplemented!(),
|
|
|
|
|
}
|
2021-08-11 08:07:39 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-08 18:11:40 +03:00
|
|
|
|
/// The Tauri [`Dispatch`] for [`Wry`].
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-05-08 18:11:40 +03:00
|
|
|
|
pub struct WryDispatcher {
|
|
|
|
|
window_id: WindowId,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-04-04 03:41:04 +03:00
|
|
|
|
}
|
2021-02-17 17:15:04 +03:00
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
|
|
|
|
unsafe impl Sync for WryDispatcher {}
|
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
impl Dispatch for WryDispatcher {
|
|
|
|
|
type Runtime = Wry;
|
2021-05-10 00:43:50 +03:00
|
|
|
|
type WindowBuilder = WindowBuilderWrapper;
|
2021-03-13 03:02:36 +03:00
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(&self.context, Message::Task(Box::new(f)))
|
2021-05-04 04:06:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-06 06:43:02 +03:00
|
|
|
|
fn on_window_event<F: Fn(&WindowEvent) + Send + 'static>(&self, f: F) -> Uuid {
|
|
|
|
|
let id = Uuid::new_v4();
|
|
|
|
|
self
|
2021-05-08 18:11:40 +03:00
|
|
|
|
.context
|
2021-05-06 06:43:02 +03:00
|
|
|
|
.window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
2021-06-23 22:20:09 +03:00
|
|
|
|
.get(&self.window_id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
2021-05-06 06:43:02 +03:00
|
|
|
|
.insert(id, Box::new(f));
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-08 18:11:40 +03:00
|
|
|
|
fn on_menu_event<F: Fn(&MenuEvent) + Send + 'static>(&self, f: F) -> Uuid {
|
|
|
|
|
let id = Uuid::new_v4();
|
|
|
|
|
self
|
|
|
|
|
.context
|
|
|
|
|
.menu_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
2021-06-23 17:29:30 +03:00
|
|
|
|
.get(&self.window_id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
2021-05-08 18:11:40 +03:00
|
|
|
|
.insert(id, Box::new(f));
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 16:58:44 +03:00
|
|
|
|
// Getters
|
2021-05-06 02:15:08 +03:00
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn scale_factor(&self) -> Result<f64> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::ScaleFactor))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn inner_position(&self) -> Result<PhysicalPosition<i32>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_getter!(self, WindowMessage::InnerPosition)
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn outer_position(&self) -> Result<PhysicalPosition<i32>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_getter!(self, WindowMessage::OuterPosition)
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn inner_size(&self) -> Result<PhysicalSize<u32>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::InnerSize))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn outer_size(&self) -> Result<PhysicalSize<u32>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::OuterSize))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn is_fullscreen(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsFullscreen))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn is_maximized(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsMaximized))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-30 23:16:07 +03:00
|
|
|
|
/// Gets the window’s current decoration state.
|
|
|
|
|
fn is_decorated(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsDecorated))
|
2021-05-30 23:16:07 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-30 23:23:52 +03:00
|
|
|
|
/// Gets the window’s current resizable state.
|
|
|
|
|
fn is_resizable(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsResizable))
|
2021-05-30 23:23:52 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 00:06:24 +03:00
|
|
|
|
fn is_visible(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsVisible))
|
2021-05-31 00:06:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-16 04:04:44 +03:00
|
|
|
|
fn is_menu_visible(&self) -> Result<bool> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::IsMenuVisible))
|
2021-06-16 04:04:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn current_monitor(&self) -> Result<Option<Monitor>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::CurrentMonitor).map(|m| MonitorHandleWrapper(m).into()))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn primary_monitor(&self) -> Result<Option<Monitor>> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::PrimaryMonitor).map(|m| MonitorHandleWrapper(m).into()))
|
2021-05-06 02:15:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn available_monitors(&self) -> Result<Vec<Monitor>> {
|
2021-05-06 02:15:08 +03:00
|
|
|
|
Ok(
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_getter!(self, WindowMessage::AvailableMonitors)
|
2021-05-06 02:15:08 +03:00
|
|
|
|
.into_iter()
|
2021-05-10 00:43:50 +03:00
|
|
|
|
.map(|m| MonitorHandleWrapper(m).into())
|
2021-05-06 02:15:08 +03:00
|
|
|
|
.collect(),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
fn ns_window(&self) -> Result<*mut std::ffi::c_void> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::NSWindow).0)
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 22:53:46 +03:00
|
|
|
|
#[cfg(windows)]
|
2021-06-27 17:02:17 +03:00
|
|
|
|
fn hwnd(&self) -> Result<HWND> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::Hwnd).0)
|
2021-05-21 22:53:46 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-02 19:08:51 +03:00
|
|
|
|
/// Returns the `ApplicatonWindow` from gtk crate that is used by this window.
|
|
|
|
|
#[cfg(any(
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
target_os = "dragonfly",
|
|
|
|
|
target_os = "freebsd",
|
|
|
|
|
target_os = "netbsd",
|
|
|
|
|
target_os = "openbsd"
|
|
|
|
|
))]
|
|
|
|
|
fn gtk_window(&self) -> Result<gtk::ApplicationWindow> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Ok(window_getter!(self, WindowMessage::GtkWindow).0)
|
2021-07-02 19:08:51 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 16:58:44 +03:00
|
|
|
|
// Setters
|
|
|
|
|
|
2021-06-06 00:20:16 +03:00
|
|
|
|
fn center(&self) -> Result<()> {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_getter!(self, WindowMessage::Center)
|
2021-06-06 00:20:16 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn print(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Webview(self.window_id, WebviewMessage::Print),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-05-07 16:58:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 05:42:38 +03:00
|
|
|
|
fn request_user_attention(&self, request_type: Option<UserAttentionType>) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Message::Window(
|
2021-06-21 05:42:38 +03:00
|
|
|
|
self.window_id,
|
|
|
|
|
WindowMessage::RequestUserAttention(request_type.map(Into::into)),
|
2021-09-28 02:18:06 +03:00
|
|
|
|
),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-06-21 05:42:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 22:49:01 +03:00
|
|
|
|
// Creates a window by dispatching a message to the event loop.
|
|
|
|
|
// Note that this must be called from a separate thread, otherwise the channel will introduce a deadlock.
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_window(
|
2021-04-04 03:41:04 +03:00
|
|
|
|
&mut self,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
pending: PendingWindow<Self::Runtime>,
|
|
|
|
|
) -> Result<DetachedWindow<Self::Runtime>> {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
let label = pending.label.clone();
|
2021-10-08 17:38:24 +03:00
|
|
|
|
let menu_ids = pending.menu_ids.clone();
|
2021-12-09 18:22:12 +03:00
|
|
|
|
let js_event_listeners = pending.js_event_listeners.clone();
|
2021-05-08 18:11:40 +03:00
|
|
|
|
let context = self.context.clone();
|
2021-06-23 17:29:30 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::CreateWebview(
|
2021-08-02 05:54:10 +03:00
|
|
|
|
Box::new(move |event_loop, web_context| {
|
|
|
|
|
create_webview(event_loop, web_context, context, pending)
|
|
|
|
|
}),
|
2021-04-29 01:56:05 +03:00
|
|
|
|
tx,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
),
|
|
|
|
|
)?;
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let window_id = rx.recv().unwrap();
|
2021-06-23 17:29:30 +03:00
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
let dispatcher = WryDispatcher {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
window_id,
|
2021-05-08 18:11:40 +03:00
|
|
|
|
context: self.context.clone(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
};
|
2021-10-08 17:38:24 +03:00
|
|
|
|
Ok(DetachedWindow {
|
|
|
|
|
label,
|
|
|
|
|
dispatcher,
|
|
|
|
|
menu_ids,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
})
|
2021-02-17 17:15:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_resizable(&self, resizable: bool) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetResizable(resizable)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_title<S: Into<String>>(&self, title: S) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetTitle(title.into())),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn maximize(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Maximize),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn unmaximize(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Unmaximize),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn minimize(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Minimize),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
2021-02-08 17:19:22 +03:00
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn unminimize(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Unminimize),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
2021-02-08 17:19:22 +03:00
|
|
|
|
|
2021-06-16 04:04:44 +03:00
|
|
|
|
fn show_menu(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::ShowMenu),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-06-16 04:04:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn hide_menu(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::HideMenu),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-06-16 04:04:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn show(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Show),
|
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn hide(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::Hide),
|
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn close(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
// NOTE: close cannot use the `send_user_message` function because it accesses the event loop callback
|
2021-03-06 03:59:10 +03:00
|
|
|
|
self
|
2021-05-08 18:11:40 +03:00
|
|
|
|
.context
|
2021-04-29 01:56:05 +03:00
|
|
|
|
.proxy
|
|
|
|
|
.send_event(Message::Window(self.window_id, WindowMessage::Close))
|
2021-05-10 00:43:50 +03:00
|
|
|
|
.map_err(|_| Error::FailedToSendMessage)
|
2021-03-06 03:59:10 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_decorations(&self, decorations: bool) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetDecorations(decorations)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_always_on_top(&self, always_on_top: bool) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetAlwaysOnTop(always_on_top)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_size(&self, size: Size) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetSize(size)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_min_size(&self, size: Option<Size>) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetMinSize(size)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_max_size(&self, size: Option<Size>) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetMaxSize(size)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_position(&self, position: Position) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetPosition(position)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_fullscreen(&self, fullscreen: bool) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetFullscreen(fullscreen)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-30 23:29:04 +03:00
|
|
|
|
fn set_focus(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetFocus),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-05-30 23:29:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn set_icon(&self, icon: Icon) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Message::Window(
|
2021-04-29 01:56:05 +03:00
|
|
|
|
self.window_id,
|
|
|
|
|
WindowMessage::SetIcon(WryIcon::try_from(icon)?.0),
|
2021-09-28 02:18:06 +03:00
|
|
|
|
),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 02:48:21 +03:00
|
|
|
|
fn set_skip_taskbar(&self, skip: bool) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::SetSkipTaskbar(skip)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-05-31 02:48:21 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn start_dragging(&self) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::DragWindow),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-16 20:42:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn eval_script<S: Into<String>>(&self, script: S) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Message::Webview(
|
2021-04-29 01:56:05 +03:00
|
|
|
|
self.window_id,
|
|
|
|
|
WebviewMessage::EvaluateScript(script.into()),
|
2021-09-28 02:18:06 +03:00
|
|
|
|
),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
2021-06-04 19:51:15 +03:00
|
|
|
|
|
2021-08-13 16:23:32 +03:00
|
|
|
|
fn update_menu_item(&self, id: u16, update: MenuUpdate) -> Result<()> {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::Window(self.window_id, WindowMessage::UpdateMenuItem(id, update)),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
)
|
2021-06-04 19:51:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
|
struct TrayContext {
|
|
|
|
|
tray: Arc<Mutex<Option<Arc<Mutex<WrySystemTray>>>>>,
|
|
|
|
|
listeners: SystemTrayEventListeners,
|
|
|
|
|
items: SystemTrayItems,
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
impl fmt::Debug for TrayContext {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
f.debug_struct("TrayContext")
|
|
|
|
|
.field("items", &self.items)
|
|
|
|
|
.finish()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
enum WindowHandle {
|
|
|
|
|
Webview(WebView),
|
|
|
|
|
Window(Arc<Window>),
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
|
GLWindow(
|
|
|
|
|
glutin::ContextWrapper<glutin::PossiblyCurrent, glutin::window::Window>,
|
|
|
|
|
glow::Context,
|
|
|
|
|
egui_glow::Painter,
|
|
|
|
|
egui_tao::epi::EpiIntegration,
|
|
|
|
|
),
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
GLWindow(
|
|
|
|
|
Rc<glutin::ContextWrapper<glutin::PossiblyCurrent, glutin::window::Window>>,
|
|
|
|
|
Rc<glow::Context>,
|
|
|
|
|
Rc<RefCell<egui_glow::Painter>>,
|
|
|
|
|
Rc<RefCell<egui_tao::epi::EpiIntegration>>,
|
|
|
|
|
Rc<AtomicU8>,
|
|
|
|
|
),
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
impl fmt::Debug for WindowHandle {
|
|
|
|
|
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
impl WindowHandle {
|
|
|
|
|
fn window(&self) -> &Window {
|
|
|
|
|
match self {
|
|
|
|
|
Self::Webview(w) => w.window(),
|
|
|
|
|
Self::Window(w) => w,
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
Self::GLWindow(w, ..) => w.window(),
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-30 02:52:05 +03:00
|
|
|
|
|
|
|
|
|
fn inner_size(&self) -> WryPhysicalSize<u32> {
|
|
|
|
|
match self {
|
|
|
|
|
WindowHandle::Window(w) => w.inner_size(),
|
|
|
|
|
WindowHandle::Webview(w) => w.inner_size(),
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
WindowHandle::GLWindow(w, ..) => w.window().inner_size(),
|
2021-09-30 02:52:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
#[derive(Debug)]
|
2021-08-02 22:45:24 +03:00
|
|
|
|
pub struct WindowWrapper {
|
2021-06-20 20:12:28 +03:00
|
|
|
|
label: String,
|
2021-07-29 20:35:26 +03:00
|
|
|
|
inner: WindowHandle,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu_items: Option<HashMap<u16, WryCustomMenuItem>>,
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
/// A Tauri [`Runtime`] wrapper around wry.
|
2021-04-04 03:41:04 +03:00
|
|
|
|
pub struct Wry {
|
2021-06-16 17:07:41 +03:00
|
|
|
|
main_thread_id: ThreadId,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager: Arc<Mutex<WryShortcutManager>>,
|
|
|
|
|
global_shortcut_manager_handle: GlobalShortcutManagerHandle,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager: Arc<Mutex<Clipboard>>,
|
|
|
|
|
clipboard_manager_handle: ClipboardManagerWrapper,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
event_loop: EventLoop<Message>,
|
2021-07-29 20:35:26 +03:00
|
|
|
|
windows: Arc<Mutex<HashMap<WindowId, WindowWrapper>>>,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
web_context: WebContextStore,
|
2021-05-06 06:43:02 +03:00
|
|
|
|
window_event_listeners: WindowEventListeners,
|
2021-05-08 18:11:40 +03:00
|
|
|
|
menu_event_listeners: MenuEventListeners,
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: TrayContext,
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 22:49:01 +03:00
|
|
|
|
/// A handle to the Wry runtime.
|
2021-08-11 08:07:39 +03:00
|
|
|
|
#[derive(Debug, Clone)]
|
2021-05-18 22:49:01 +03:00
|
|
|
|
pub struct WryHandle {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-05-18 22:49:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 19:46:05 +03:00
|
|
|
|
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
|
|
|
|
#[allow(clippy::non_send_fields_in_send_ty)]
|
|
|
|
|
unsafe impl Sync for WryHandle {}
|
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
impl WryHandle {
|
|
|
|
|
/// Creates a new tao window using a callback, and returns its window id.
|
|
|
|
|
pub fn create_tao_window<F: FnOnce() -> (String, WryWindowBuilder) + Send + 'static>(
|
|
|
|
|
&self,
|
|
|
|
|
f: F,
|
2021-08-31 21:50:40 +03:00
|
|
|
|
) -> Result<Weak<Window>> {
|
2021-07-29 20:35:26 +03:00
|
|
|
|
let (tx, rx) = channel();
|
2021-09-28 02:18:06 +03:00
|
|
|
|
send_user_message(&self.context, Message::CreateWindow(Box::new(f), tx))?;
|
2021-07-29 20:35:26 +03:00
|
|
|
|
rx.recv().unwrap()
|
|
|
|
|
}
|
2021-08-02 22:45:24 +03:00
|
|
|
|
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
/// Creates a new egui window.
|
|
|
|
|
pub fn create_egui_window(
|
|
|
|
|
&self,
|
|
|
|
|
label: String,
|
|
|
|
|
app: Box<dyn epi::App + Send>,
|
|
|
|
|
native_options: epi::NativeOptions,
|
|
|
|
|
) -> Result<()> {
|
|
|
|
|
let proxy = self.context.proxy.clone();
|
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::CreateGLWindow(label, app, native_options, proxy),
|
|
|
|
|
)?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 22:45:24 +03:00
|
|
|
|
/// Send a message to the event loop.
|
|
|
|
|
pub fn send_event(&self, message: Message) -> Result<()> {
|
|
|
|
|
self
|
2021-09-28 02:18:06 +03:00
|
|
|
|
.context
|
2021-08-02 22:45:24 +03:00
|
|
|
|
.proxy
|
|
|
|
|
.send_event(message)
|
|
|
|
|
.map_err(|_| Error::FailedToSendMessage)?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 22:49:01 +03:00
|
|
|
|
impl RuntimeHandle for WryHandle {
|
|
|
|
|
type Runtime = Wry;
|
|
|
|
|
|
|
|
|
|
// Creates a window by dispatching a message to the event loop.
|
|
|
|
|
// Note that this must be called from a separate thread, otherwise the channel will introduce a deadlock.
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_window(
|
2021-05-18 22:49:01 +03:00
|
|
|
|
&self,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
pending: PendingWindow<Self::Runtime>,
|
|
|
|
|
) -> Result<DetachedWindow<Self::Runtime>> {
|
2021-05-18 22:49:01 +03:00
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
let label = pending.label.clone();
|
2021-10-08 17:38:24 +03:00
|
|
|
|
let menu_ids = pending.menu_ids.clone();
|
2021-12-09 18:22:12 +03:00
|
|
|
|
let js_event_listeners = pending.js_event_listeners.clone();
|
2021-09-28 02:18:06 +03:00
|
|
|
|
let context = self.context.clone();
|
|
|
|
|
send_user_message(
|
|
|
|
|
&self.context,
|
|
|
|
|
Message::CreateWebview(
|
2021-08-02 05:54:10 +03:00
|
|
|
|
Box::new(move |event_loop, web_context| {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
create_webview(event_loop, web_context, context, pending)
|
2021-08-02 05:54:10 +03:00
|
|
|
|
}),
|
2021-05-18 22:49:01 +03:00
|
|
|
|
tx,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
),
|
|
|
|
|
)?;
|
2021-05-18 22:49:01 +03:00
|
|
|
|
let window_id = rx.recv().unwrap();
|
2021-06-23 17:29:30 +03:00
|
|
|
|
|
2021-05-18 22:49:01 +03:00
|
|
|
|
let dispatcher = WryDispatcher {
|
|
|
|
|
window_id,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: self.context.clone(),
|
2021-05-18 22:49:01 +03:00
|
|
|
|
};
|
2021-10-08 17:38:24 +03:00
|
|
|
|
Ok(DetachedWindow {
|
|
|
|
|
label,
|
|
|
|
|
dispatcher,
|
|
|
|
|
menu_ids,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
})
|
2021-05-18 22:49:01 +03:00
|
|
|
|
}
|
2021-06-04 19:51:15 +03:00
|
|
|
|
|
2021-10-04 18:54:38 +03:00
|
|
|
|
fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()> {
|
|
|
|
|
send_user_message(&self.context, Message::Task(Box::new(f)))
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(all(windows, feature = "system-tray"))]
|
2021-07-29 20:35:26 +03:00
|
|
|
|
/// Deprecated. (not needed anymore)
|
2021-06-04 19:51:15 +03:00
|
|
|
|
fn remove_system_tray(&self) -> Result<()> {
|
2021-07-29 20:35:26 +03:00
|
|
|
|
Ok(())
|
2021-06-04 19:51:15 +03:00
|
|
|
|
}
|
2021-05-18 22:49:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
impl Runtime for Wry {
|
2021-02-08 17:19:22 +03:00
|
|
|
|
type Dispatcher = WryDispatcher;
|
2021-05-18 22:49:01 +03:00
|
|
|
|
type Handle = WryHandle;
|
2021-06-21 18:29:26 +03:00
|
|
|
|
type GlobalShortcutManager = GlobalShortcutManagerHandle;
|
2021-06-21 19:32:22 +03:00
|
|
|
|
type ClipboardManager = ClipboardManagerWrapper;
|
2021-06-04 19:51:15 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
type TrayHandler = SystemTrayHandle;
|
2021-02-08 17:19:22 +03:00
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
|
fn new() -> Result<Self> {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let event_loop = EventLoop::<Message>::with_user_event();
|
2021-06-21 18:29:26 +03:00
|
|
|
|
let proxy = event_loop.create_proxy();
|
|
|
|
|
let main_thread_id = current_thread().id();
|
2021-09-26 07:50:27 +03:00
|
|
|
|
let web_context = WebContextStore::default();
|
|
|
|
|
let global_shortcut_manager = Arc::new(Mutex::new(WryShortcutManager::new(&event_loop)));
|
|
|
|
|
let clipboard_manager = Arc::new(Mutex::new(Clipboard::new()));
|
|
|
|
|
let windows = Arc::new(Mutex::new(HashMap::default()));
|
|
|
|
|
let window_event_listeners = WindowEventListeners::default();
|
|
|
|
|
let menu_event_listeners = MenuEventListeners::default();
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
let tray_context = TrayContext::default();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
let event_loop_context = Context {
|
2021-06-21 19:32:22 +03:00
|
|
|
|
main_thread_id,
|
|
|
|
|
proxy,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_event_listeners: window_event_listeners.clone(),
|
|
|
|
|
menu_event_listeners: menu_event_listeners.clone(),
|
|
|
|
|
main_thread: DispatcherMainThreadContext {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
window_target: event_loop.deref().clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
web_context: web_context.clone(),
|
|
|
|
|
global_shortcut_manager: global_shortcut_manager.clone(),
|
|
|
|
|
clipboard_manager: clipboard_manager.clone(),
|
|
|
|
|
windows: windows.clone(),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: tray_context.clone(),
|
|
|
|
|
},
|
2021-06-21 19:32:22 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let global_shortcut_listeners = GlobalShortcutListeners::default();
|
|
|
|
|
let clipboard_manager_handle = ClipboardManagerWrapper {
|
|
|
|
|
context: event_loop_context.clone(),
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
Ok(Self {
|
2021-06-21 18:29:26 +03:00
|
|
|
|
main_thread_id,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
global_shortcut_manager,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager_handle: GlobalShortcutManagerHandle {
|
2021-06-21 19:32:22 +03:00
|
|
|
|
context: event_loop_context,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
shortcuts: Default::default(),
|
|
|
|
|
listeners: global_shortcut_listeners,
|
|
|
|
|
},
|
2021-09-26 07:50:27 +03:00
|
|
|
|
clipboard_manager,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager_handle,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
event_loop,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
windows,
|
|
|
|
|
web_context,
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
menu_event_listeners,
|
2021-05-10 19:27:42 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-09-26 07:50:27 +03:00
|
|
|
|
tray_context,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
})
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 22:49:01 +03:00
|
|
|
|
fn handle(&self) -> Self::Handle {
|
|
|
|
|
WryHandle {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context {
|
2021-06-16 17:07:41 +03:00
|
|
|
|
main_thread_id: self.main_thread_id,
|
2021-05-18 22:49:01 +03:00
|
|
|
|
proxy: self.event_loop.create_proxy(),
|
|
|
|
|
window_event_listeners: self.window_event_listeners.clone(),
|
|
|
|
|
menu_event_listeners: self.menu_event_listeners.clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
main_thread: DispatcherMainThreadContext {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
window_target: self.event_loop.deref().clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
web_context: self.web_context.clone(),
|
|
|
|
|
global_shortcut_manager: self.global_shortcut_manager.clone(),
|
|
|
|
|
clipboard_manager: self.clipboard_manager.clone(),
|
|
|
|
|
windows: self.windows.clone(),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: self.tray_context.clone(),
|
|
|
|
|
},
|
2021-05-18 22:49:01 +03:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 18:29:26 +03:00
|
|
|
|
fn global_shortcut_manager(&self) -> Self::GlobalShortcutManager {
|
|
|
|
|
self.global_shortcut_manager_handle.clone()
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 19:32:22 +03:00
|
|
|
|
fn clipboard_manager(&self) -> Self::ClipboardManager {
|
|
|
|
|
self.clipboard_manager_handle.clone()
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_window(&self, pending: PendingWindow<Self>) -> Result<DetachedWindow<Self>> {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let label = pending.label.clone();
|
2021-10-08 17:38:24 +03:00
|
|
|
|
let menu_ids = pending.menu_ids.clone();
|
2021-12-09 18:22:12 +03:00
|
|
|
|
let js_event_listeners = pending.js_event_listeners.clone();
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let proxy = self.event_loop.create_proxy();
|
2021-05-04 04:06:50 +03:00
|
|
|
|
let webview = create_webview(
|
|
|
|
|
&self.event_loop,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
&self.web_context,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
Context {
|
2021-06-16 17:07:41 +03:00
|
|
|
|
main_thread_id: self.main_thread_id,
|
2021-05-08 18:11:40 +03:00
|
|
|
|
proxy: proxy.clone(),
|
|
|
|
|
window_event_listeners: self.window_event_listeners.clone(),
|
|
|
|
|
menu_event_listeners: self.menu_event_listeners.clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
main_thread: DispatcherMainThreadContext {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
window_target: self.event_loop.deref().clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
web_context: self.web_context.clone(),
|
|
|
|
|
global_shortcut_manager: self.global_shortcut_manager.clone(),
|
|
|
|
|
clipboard_manager: self.clipboard_manager.clone(),
|
|
|
|
|
windows: self.windows.clone(),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: self.tray_context.clone(),
|
|
|
|
|
},
|
2021-05-08 18:11:40 +03:00
|
|
|
|
},
|
2021-05-04 04:06:50 +03:00
|
|
|
|
pending,
|
|
|
|
|
)?;
|
2021-04-04 03:41:04 +03:00
|
|
|
|
|
2021-07-23 16:31:17 +03:00
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
|
{
|
|
|
|
|
let id = webview.inner.window().id();
|
2021-07-29 20:35:26 +03:00
|
|
|
|
if let WindowHandle::Webview(ref webview) = webview.inner {
|
|
|
|
|
if let Some(controller) = webview.controller() {
|
|
|
|
|
let proxy = self.event_loop.create_proxy();
|
2021-09-24 12:40:22 +03:00
|
|
|
|
let mut token = EventRegistrationToken::default();
|
|
|
|
|
unsafe {
|
2021-11-12 00:38:41 +03:00
|
|
|
|
controller.GotFocus(
|
2021-09-24 12:40:22 +03:00
|
|
|
|
FocusChangedEventHandler::create(Box::new(move |_, _| {
|
|
|
|
|
let _ = proxy.send_event(Message::Webview(
|
|
|
|
|
id,
|
|
|
|
|
WebviewMessage::WebviewEvent(WebviewEvent::Focused(true)),
|
|
|
|
|
));
|
|
|
|
|
Ok(())
|
|
|
|
|
})),
|
|
|
|
|
&mut token,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.unwrap();
|
2021-07-29 20:35:26 +03:00
|
|
|
|
let proxy = self.event_loop.create_proxy();
|
2021-09-24 12:40:22 +03:00
|
|
|
|
unsafe {
|
2021-11-12 00:38:41 +03:00
|
|
|
|
controller.LostFocus(
|
2021-09-24 12:40:22 +03:00
|
|
|
|
FocusChangedEventHandler::create(Box::new(move |_, _| {
|
|
|
|
|
let _ = proxy.send_event(Message::Webview(
|
|
|
|
|
id,
|
|
|
|
|
WebviewMessage::WebviewEvent(WebviewEvent::Focused(false)),
|
|
|
|
|
));
|
|
|
|
|
Ok(())
|
|
|
|
|
})),
|
|
|
|
|
&mut token,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.unwrap();
|
2021-07-29 20:35:26 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-23 16:31:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
let dispatcher = WryDispatcher {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
window_id: webview.inner.window().id(),
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context {
|
2021-06-16 17:07:41 +03:00
|
|
|
|
main_thread_id: self.main_thread_id,
|
2021-05-08 18:11:40 +03:00
|
|
|
|
proxy,
|
|
|
|
|
window_event_listeners: self.window_event_listeners.clone(),
|
|
|
|
|
menu_event_listeners: self.menu_event_listeners.clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
main_thread: DispatcherMainThreadContext {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
window_target: self.event_loop.deref().clone(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
web_context: self.web_context.clone(),
|
|
|
|
|
global_shortcut_manager: self.global_shortcut_manager.clone(),
|
|
|
|
|
clipboard_manager: self.clipboard_manager.clone(),
|
|
|
|
|
windows: self.windows.clone(),
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: self.tray_context.clone(),
|
|
|
|
|
},
|
2021-05-08 18:11:40 +03:00
|
|
|
|
},
|
2021-04-04 03:41:04 +03:00
|
|
|
|
};
|
|
|
|
|
|
2021-05-09 14:15:37 +03:00
|
|
|
|
self
|
2021-07-29 20:35:26 +03:00
|
|
|
|
.windows
|
2021-05-09 14:15:37 +03:00
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
2021-06-04 19:51:15 +03:00
|
|
|
|
.insert(webview.inner.window().id(), webview);
|
2021-04-29 01:56:05 +03:00
|
|
|
|
|
2021-10-08 17:38:24 +03:00
|
|
|
|
Ok(DetachedWindow {
|
|
|
|
|
label,
|
|
|
|
|
dispatcher,
|
|
|
|
|
menu_ids,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
})
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-11 14:38:08 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn system_tray(&self, system_tray: SystemTray) -> Result<Self::TrayHandler> {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let icon = system_tray
|
|
|
|
|
.icon
|
|
|
|
|
.expect("tray icon not set")
|
|
|
|
|
.into_tray_icon();
|
2021-05-11 14:38:08 +03:00
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let mut items = HashMap::new();
|
2021-05-09 14:15:37 +03:00
|
|
|
|
|
2021-07-29 22:29:59 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
let tray = SystemTrayBuilder::new(
|
|
|
|
|
icon,
|
|
|
|
|
system_tray
|
|
|
|
|
.menu
|
|
|
|
|
.map(|menu| to_wry_context_menu(&mut items, menu)),
|
|
|
|
|
)
|
|
|
|
|
.with_icon_as_template(system_tray.icon_as_template)
|
|
|
|
|
.build(&self.event_loop)
|
|
|
|
|
.map_err(|e| Error::SystemTray(Box::new(e)))?;
|
|
|
|
|
|
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let tray = SystemTrayBuilder::new(
|
2021-05-10 00:43:50 +03:00
|
|
|
|
icon,
|
2021-06-04 19:51:15 +03:00
|
|
|
|
system_tray
|
|
|
|
|
.menu
|
|
|
|
|
.map(|menu| to_wry_context_menu(&mut items, menu)),
|
2021-05-10 00:43:50 +03:00
|
|
|
|
)
|
|
|
|
|
.build(&self.event_loop)
|
|
|
|
|
.map_err(|e| Error::SystemTray(Box::new(e)))?;
|
2021-06-04 19:51:15 +03:00
|
|
|
|
|
|
|
|
|
*self.tray_context.items.lock().unwrap() = items;
|
|
|
|
|
*self.tray_context.tray.lock().unwrap() = Some(Arc::new(Mutex::new(tray)));
|
|
|
|
|
|
|
|
|
|
Ok(SystemTrayHandle {
|
|
|
|
|
proxy: self.event_loop.create_proxy(),
|
|
|
|
|
})
|
2021-05-09 14:15:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-05-09 14:15:37 +03:00
|
|
|
|
fn on_system_tray_event<F: Fn(&SystemTrayEvent) + Send + 'static>(&mut self, f: F) -> Uuid {
|
|
|
|
|
let id = Uuid::new_v4();
|
2021-05-21 22:16:05 +03:00
|
|
|
|
self
|
2021-06-04 19:51:15 +03:00
|
|
|
|
.tray_context
|
|
|
|
|
.listeners
|
2021-05-21 22:16:05 +03:00
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(id, Box::new(f));
|
2021-05-09 14:15:37 +03:00
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 19:25:31 +03:00
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
fn set_activation_policy(&mut self, activation_policy: ActivationPolicy) {
|
|
|
|
|
self
|
|
|
|
|
.event_loop
|
|
|
|
|
.set_activation_policy(match activation_policy {
|
|
|
|
|
ActivationPolicy::Regular => WryActivationPolicy::Regular,
|
|
|
|
|
ActivationPolicy::Accessory => WryActivationPolicy::Accessory,
|
|
|
|
|
ActivationPolicy::Prohibited => WryActivationPolicy::Prohibited,
|
|
|
|
|
_ => unimplemented!(),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(any(target_os = "windows", target_os = "macos"))]
|
2021-09-27 22:27:37 +03:00
|
|
|
|
fn run_iteration<F: FnMut(RunEvent) + 'static>(&mut self, mut callback: F) -> RunIteration {
|
2021-05-21 22:16:05 +03:00
|
|
|
|
use wry::application::platform::run_return::EventLoopExtRunReturn;
|
2021-07-29 20:35:26 +03:00
|
|
|
|
let windows = self.windows.clone();
|
2021-08-02 05:54:10 +03:00
|
|
|
|
let web_context = &self.web_context;
|
2021-05-21 22:16:05 +03:00
|
|
|
|
let window_event_listeners = self.window_event_listeners.clone();
|
|
|
|
|
let menu_event_listeners = self.menu_event_listeners.clone();
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let tray_context = self.tray_context.clone();
|
2021-06-21 18:29:26 +03:00
|
|
|
|
let global_shortcut_manager = self.global_shortcut_manager.clone();
|
|
|
|
|
let global_shortcut_manager_handle = self.global_shortcut_manager_handle.clone();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
let clipboard_manager = self.clipboard_manager.clone();
|
2021-05-21 22:16:05 +03:00
|
|
|
|
let mut iteration = RunIteration::default();
|
2022-01-05 17:39:43 +03:00
|
|
|
|
|
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
let mut is_focused = true;
|
2021-05-21 22:16:05 +03:00
|
|
|
|
|
|
|
|
|
self
|
|
|
|
|
.event_loop
|
|
|
|
|
.run_return(|event, event_loop, control_flow| {
|
2021-10-18 19:34:06 +03:00
|
|
|
|
*control_flow = ControlFlow::Wait;
|
2021-05-21 22:16:05 +03:00
|
|
|
|
if let Event::MainEventsCleared = &event {
|
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
|
}
|
2022-01-05 17:39:43 +03:00
|
|
|
|
|
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
handle_gl_loop(
|
|
|
|
|
&event,
|
|
|
|
|
event_loop,
|
|
|
|
|
control_flow,
|
|
|
|
|
EventLoopIterationContext {
|
|
|
|
|
callback: &mut callback,
|
|
|
|
|
windows: windows.clone(),
|
|
|
|
|
window_event_listeners: &window_event_listeners,
|
|
|
|
|
global_shortcut_manager: global_shortcut_manager.clone(),
|
|
|
|
|
global_shortcut_manager_handle: &global_shortcut_manager_handle,
|
|
|
|
|
clipboard_manager: clipboard_manager.clone(),
|
|
|
|
|
menu_event_listeners: &menu_event_listeners,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: &tray_context,
|
|
|
|
|
},
|
|
|
|
|
&web_context,
|
|
|
|
|
&mut is_focused,
|
|
|
|
|
);
|
2021-05-21 22:16:05 +03:00
|
|
|
|
iteration = handle_event_loop(
|
|
|
|
|
event,
|
|
|
|
|
event_loop,
|
|
|
|
|
control_flow,
|
|
|
|
|
EventLoopIterationContext {
|
2021-09-27 22:27:37 +03:00
|
|
|
|
callback: &mut callback,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
windows: windows.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
window_event_listeners: &window_event_listeners,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager: global_shortcut_manager.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
global_shortcut_manager_handle: &global_shortcut_manager_handle,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager: clipboard_manager.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
menu_event_listeners: &menu_event_listeners,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-30 16:38:22 +03:00
|
|
|
|
tray_context: &tray_context,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
},
|
2021-08-02 05:54:10 +03:00
|
|
|
|
web_context,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
iteration
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 22:27:37 +03:00
|
|
|
|
fn run<F: FnMut(RunEvent) + 'static>(self, mut callback: F) {
|
2021-07-29 20:35:26 +03:00
|
|
|
|
let windows = self.windows.clone();
|
2021-08-02 05:54:10 +03:00
|
|
|
|
let web_context = self.web_context;
|
2021-05-06 06:43:02 +03:00
|
|
|
|
let window_event_listeners = self.window_event_listeners.clone();
|
2021-05-08 18:11:40 +03:00
|
|
|
|
let menu_event_listeners = self.menu_event_listeners.clone();
|
2021-05-10 19:27:42 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let tray_context = self.tray_context;
|
2021-06-21 18:29:26 +03:00
|
|
|
|
let global_shortcut_manager = self.global_shortcut_manager.clone();
|
|
|
|
|
let global_shortcut_manager_handle = self.global_shortcut_manager_handle.clone();
|
2021-06-21 19:32:22 +03:00
|
|
|
|
let clipboard_manager = self.clipboard_manager.clone();
|
2021-05-10 19:27:42 +03:00
|
|
|
|
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
let mut is_focused = true;
|
2022-01-05 17:39:43 +03:00
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
self.event_loop.run(move |event, event_loop, control_flow| {
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
handle_gl_loop(
|
|
|
|
|
&event,
|
|
|
|
|
event_loop,
|
|
|
|
|
control_flow,
|
|
|
|
|
EventLoopIterationContext {
|
|
|
|
|
callback: &mut callback,
|
|
|
|
|
windows: windows.clone(),
|
|
|
|
|
window_event_listeners: &window_event_listeners,
|
|
|
|
|
global_shortcut_manager: global_shortcut_manager.clone(),
|
|
|
|
|
global_shortcut_manager_handle: &global_shortcut_manager_handle,
|
|
|
|
|
clipboard_manager: clipboard_manager.clone(),
|
|
|
|
|
menu_event_listeners: &menu_event_listeners,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: &tray_context,
|
|
|
|
|
},
|
|
|
|
|
&web_context,
|
|
|
|
|
&mut is_focused,
|
|
|
|
|
);
|
2021-05-21 22:16:05 +03:00
|
|
|
|
handle_event_loop(
|
|
|
|
|
event,
|
|
|
|
|
event_loop,
|
|
|
|
|
control_flow,
|
|
|
|
|
EventLoopIterationContext {
|
2021-09-27 22:27:37 +03:00
|
|
|
|
callback: &mut callback,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
windows: windows.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
window_event_listeners: &window_event_listeners,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager: global_shortcut_manager.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
global_shortcut_manager_handle: &global_shortcut_manager_handle,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager: clipboard_manager.clone(),
|
2021-06-30 16:38:22 +03:00
|
|
|
|
menu_event_listeners: &menu_event_listeners,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-30 16:38:22 +03:00
|
|
|
|
tray_context: &tray_context,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
},
|
2021-08-02 05:54:10 +03:00
|
|
|
|
&web_context,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
|
struct EventLoopIterationContext<'a> {
|
2021-09-27 22:27:37 +03:00
|
|
|
|
callback: &'a mut (dyn FnMut(RunEvent) + 'static),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
windows: Arc<Mutex<HashMap<WindowId, WindowWrapper>>>,
|
2021-06-30 16:38:22 +03:00
|
|
|
|
window_event_listeners: &'a WindowEventListeners,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager: Arc<Mutex<WryShortcutManager>>,
|
2021-06-30 16:38:22 +03:00
|
|
|
|
global_shortcut_manager_handle: &'a GlobalShortcutManagerHandle,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager: Arc<Mutex<Clipboard>>,
|
2021-06-30 16:38:22 +03:00
|
|
|
|
menu_event_listeners: &'a MenuEventListeners,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-30 16:38:22 +03:00
|
|
|
|
tray_context: &'a TrayContext,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
struct UserMessageContext<'a> {
|
|
|
|
|
window_event_listeners: &'a WindowEventListeners,
|
|
|
|
|
global_shortcut_manager: Arc<Mutex<WryShortcutManager>>,
|
|
|
|
|
clipboard_manager: Arc<Mutex<Clipboard>>,
|
|
|
|
|
menu_event_listeners: &'a MenuEventListeners,
|
|
|
|
|
windows: Arc<Mutex<HashMap<WindowId, WindowWrapper>>>,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context: &'a TrayContext,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn handle_user_message(
|
2021-09-28 02:18:06 +03:00
|
|
|
|
event_loop: &EventLoopWindowTarget<Message>,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
message: Message,
|
|
|
|
|
context: UserMessageContext<'_>,
|
|
|
|
|
web_context: &WebContextStore,
|
|
|
|
|
) -> RunIteration {
|
|
|
|
|
let UserMessageContext {
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
menu_event_listeners,
|
|
|
|
|
global_shortcut_manager,
|
|
|
|
|
clipboard_manager,
|
|
|
|
|
windows,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context,
|
|
|
|
|
} = context;
|
|
|
|
|
match message {
|
|
|
|
|
Message::Task(task) => task(),
|
|
|
|
|
Message::Window(id, window_message) => {
|
2021-09-26 07:48:13 +03:00
|
|
|
|
if let Some(webview) = windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.get_mut(&id)
|
|
|
|
|
{
|
2021-09-26 07:50:27 +03:00
|
|
|
|
let window = webview.inner.window();
|
|
|
|
|
match window_message {
|
|
|
|
|
// Getters
|
|
|
|
|
WindowMessage::ScaleFactor(tx) => tx.send(window.scale_factor()).unwrap(),
|
|
|
|
|
WindowMessage::InnerPosition(tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
window
|
|
|
|
|
.inner_position()
|
|
|
|
|
.map(|p| PhysicalPositionWrapper(p).into())
|
|
|
|
|
.map_err(|_| Error::FailedToSendMessage),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
WindowMessage::OuterPosition(tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
window
|
|
|
|
|
.outer_position()
|
|
|
|
|
.map(|p| PhysicalPositionWrapper(p).into())
|
|
|
|
|
.map_err(|_| Error::FailedToSendMessage),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
WindowMessage::InnerSize(tx) => tx
|
2021-09-30 02:52:05 +03:00
|
|
|
|
.send(PhysicalSizeWrapper(webview.inner.inner_size()).into())
|
2021-09-26 07:50:27 +03:00
|
|
|
|
.unwrap(),
|
|
|
|
|
WindowMessage::OuterSize(tx) => tx
|
|
|
|
|
.send(PhysicalSizeWrapper(window.outer_size()).into())
|
|
|
|
|
.unwrap(),
|
|
|
|
|
WindowMessage::IsFullscreen(tx) => tx.send(window.fullscreen().is_some()).unwrap(),
|
|
|
|
|
WindowMessage::IsMaximized(tx) => tx.send(window.is_maximized()).unwrap(),
|
|
|
|
|
WindowMessage::IsDecorated(tx) => tx.send(window.is_decorated()).unwrap(),
|
|
|
|
|
WindowMessage::IsResizable(tx) => tx.send(window.is_resizable()).unwrap(),
|
|
|
|
|
WindowMessage::IsVisible(tx) => tx.send(window.is_visible()).unwrap(),
|
|
|
|
|
WindowMessage::IsMenuVisible(tx) => tx.send(window.is_menu_visible()).unwrap(),
|
|
|
|
|
WindowMessage::CurrentMonitor(tx) => tx.send(window.current_monitor()).unwrap(),
|
|
|
|
|
WindowMessage::PrimaryMonitor(tx) => tx.send(window.primary_monitor()).unwrap(),
|
|
|
|
|
WindowMessage::AvailableMonitors(tx) => {
|
|
|
|
|
tx.send(window.available_monitors().collect()).unwrap()
|
|
|
|
|
}
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
WindowMessage::NSWindow(tx) => tx.send(NSWindow(window.ns_window())).unwrap(),
|
|
|
|
|
#[cfg(windows)]
|
2021-12-29 13:07:08 +03:00
|
|
|
|
WindowMessage::Hwnd(tx) => tx.send(Hwnd(window.hwnd() as _)).unwrap(),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
#[cfg(any(
|
|
|
|
|
target_os = "linux",
|
|
|
|
|
target_os = "dragonfly",
|
|
|
|
|
target_os = "freebsd",
|
|
|
|
|
target_os = "netbsd",
|
|
|
|
|
target_os = "openbsd"
|
|
|
|
|
))]
|
|
|
|
|
WindowMessage::GtkWindow(tx) => tx.send(GtkWindow(window.gtk_window().clone())).unwrap(),
|
|
|
|
|
// Setters
|
|
|
|
|
WindowMessage::Center(tx) => {
|
2021-09-30 02:52:05 +03:00
|
|
|
|
tx.send(center_window(window, webview.inner.inner_size()))
|
|
|
|
|
.unwrap();
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
WindowMessage::RequestUserAttention(request_type) => {
|
|
|
|
|
window.request_user_attention(request_type.map(|r| r.0));
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetResizable(resizable) => window.set_resizable(resizable),
|
|
|
|
|
WindowMessage::SetTitle(title) => window.set_title(&title),
|
|
|
|
|
WindowMessage::Maximize => window.set_maximized(true),
|
|
|
|
|
WindowMessage::Unmaximize => window.set_maximized(false),
|
|
|
|
|
WindowMessage::Minimize => window.set_minimized(true),
|
|
|
|
|
WindowMessage::Unminimize => window.set_minimized(false),
|
|
|
|
|
WindowMessage::ShowMenu => window.show_menu(),
|
|
|
|
|
WindowMessage::HideMenu => window.hide_menu(),
|
|
|
|
|
WindowMessage::Show => window.set_visible(true),
|
|
|
|
|
WindowMessage::Hide => window.set_visible(false),
|
2021-09-28 02:18:06 +03:00
|
|
|
|
WindowMessage::Close => panic!("cannot handle `WindowMessage::Close` on the main thread"),
|
2021-09-26 07:50:27 +03:00
|
|
|
|
WindowMessage::SetDecorations(decorations) => window.set_decorations(decorations),
|
|
|
|
|
WindowMessage::SetAlwaysOnTop(always_on_top) => window.set_always_on_top(always_on_top),
|
|
|
|
|
WindowMessage::SetSize(size) => {
|
|
|
|
|
window.set_inner_size(SizeWrapper::from(size).0);
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetMinSize(size) => {
|
|
|
|
|
window.set_min_inner_size(size.map(|s| SizeWrapper::from(s).0));
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetMaxSize(size) => {
|
|
|
|
|
window.set_max_inner_size(size.map(|s| SizeWrapper::from(s).0));
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetPosition(position) => {
|
|
|
|
|
window.set_outer_position(PositionWrapper::from(position).0)
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetFullscreen(fullscreen) => {
|
|
|
|
|
if fullscreen {
|
|
|
|
|
window.set_fullscreen(Some(Fullscreen::Borderless(None)))
|
|
|
|
|
} else {
|
|
|
|
|
window.set_fullscreen(None)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetFocus => {
|
|
|
|
|
window.set_focus();
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetIcon(icon) => {
|
|
|
|
|
window.set_window_icon(Some(icon));
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::SetSkipTaskbar(_skip) => {
|
|
|
|
|
#[cfg(any(target_os = "windows", target_os = "linux"))]
|
|
|
|
|
window.set_skip_taskbar(_skip);
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::DragWindow => {
|
|
|
|
|
let _ = window.drag_window();
|
|
|
|
|
}
|
|
|
|
|
WindowMessage::UpdateMenuItem(id, update) => {
|
2021-10-08 17:38:24 +03:00
|
|
|
|
if let Some(menu_items) = webview.menu_items.as_mut() {
|
|
|
|
|
let item = menu_items.get_mut(&id).expect("menu item not found");
|
|
|
|
|
match update {
|
|
|
|
|
MenuUpdate::SetEnabled(enabled) => item.set_enabled(enabled),
|
|
|
|
|
MenuUpdate::SetTitle(title) => item.set_title(&title),
|
|
|
|
|
MenuUpdate::SetSelected(selected) => item.set_selected(selected),
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
MenuUpdate::SetNativeImage(image) => {
|
|
|
|
|
item.set_native_image(NativeImageWrapper::from(image).0)
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-05 12:56:55 +03:00
|
|
|
|
WindowMessage::RequestRedraw => {
|
|
|
|
|
window.request_redraw();
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 16:01:03 +03:00
|
|
|
|
Message::Webview(id, webview_message) => match webview_message {
|
|
|
|
|
WebviewMessage::EvaluateScript(script) => {
|
|
|
|
|
if let Some(WindowHandle::Webview(webview)) = windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.get(&id)
|
|
|
|
|
.map(|w| &w.inner)
|
|
|
|
|
{
|
|
|
|
|
if let Err(e) = webview.evaluate_script(&script) {
|
|
|
|
|
eprintln!("{}", e);
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
2021-09-26 16:01:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
WebviewMessage::Print => {
|
|
|
|
|
if let Some(WindowHandle::Webview(webview)) = windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.get(&id)
|
|
|
|
|
.map(|w| &w.inner)
|
|
|
|
|
{
|
|
|
|
|
let _ = webview.print();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
WebviewMessage::WebviewEvent(event) => {
|
|
|
|
|
if let Some(event) = WindowEventWrapper::from(&event).0 {
|
|
|
|
|
for handler in window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.get(&id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.values()
|
|
|
|
|
{
|
|
|
|
|
handler(&event);
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 16:01:03 +03:00
|
|
|
|
},
|
2021-09-28 02:18:06 +03:00
|
|
|
|
Message::CreateWebview(handler, sender) => match handler(event_loop, web_context) {
|
|
|
|
|
Ok(webview) => {
|
|
|
|
|
let window_id = webview.inner.window().id();
|
|
|
|
|
windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.insert(window_id, webview);
|
|
|
|
|
sender.send(window_id).unwrap();
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
2021-09-28 02:18:06 +03:00
|
|
|
|
Err(e) => {
|
|
|
|
|
eprintln!("{}", e);
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Message::CreateWindow(handler, sender) => {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
let (label, builder) = handler();
|
|
|
|
|
if let Ok(window) = builder.build(event_loop) {
|
|
|
|
|
let window_id = window.id();
|
2021-09-26 07:50:27 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window.id(), WindowEventListenersMap::default());
|
2021-09-26 07:50:27 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
menu_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window.id(), WindowMenuEventListeners::default());
|
2021-09-26 07:50:27 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
let w = Arc::new(window);
|
2021-09-26 07:50:27 +03:00
|
|
|
|
|
2021-09-28 02:18:06 +03:00
|
|
|
|
windows.lock().expect("poisoned webview collection").insert(
|
|
|
|
|
window_id,
|
|
|
|
|
WindowWrapper {
|
|
|
|
|
label,
|
|
|
|
|
inner: WindowHandle::Window(w.clone()),
|
|
|
|
|
menu_items: Default::default(),
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
sender.send(Ok(Arc::downgrade(&w))).unwrap();
|
|
|
|
|
} else {
|
|
|
|
|
sender.send(Err(Error::CreateWindow)).unwrap();
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
Message::CreateGLWindow(label, app, native_options, proxy) => {
|
|
|
|
|
let mut egui_id = EGUI_ID.lock().unwrap();
|
|
|
|
|
if let Some(id) = *egui_id {
|
|
|
|
|
if let WindowHandle::GLWindow(gl_window, gl, painter, integration, ..) =
|
|
|
|
|
&mut windows.lock().unwrap().get_mut(&id).unwrap().inner
|
|
|
|
|
{
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
let mut integration = integration.borrow_mut();
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
let mut painter = painter.borrow_mut();
|
|
|
|
|
integration.on_exit(gl_window.window());
|
|
|
|
|
painter.destroy(gl);
|
|
|
|
|
}
|
|
|
|
|
*egui_id = None;
|
|
|
|
|
let _ = proxy.send_event(Message::Window(id, WindowMessage::Close));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let persistence = egui_tao::epi::Persistence::from_app_name(app.name());
|
|
|
|
|
let window_settings = persistence.load_window_settings();
|
|
|
|
|
let window_builder =
|
|
|
|
|
egui_tao::epi::window_builder(&native_options, &window_settings).with_title(app.name());
|
|
|
|
|
let gl_window = unsafe {
|
|
|
|
|
glutin::ContextBuilder::new()
|
|
|
|
|
.with_depth_buffer(0)
|
|
|
|
|
.with_srgb(true)
|
|
|
|
|
.with_stencil_buffer(0)
|
|
|
|
|
.with_vsync(true)
|
|
|
|
|
.build_windowed(window_builder, event_loop)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.make_current()
|
|
|
|
|
.unwrap()
|
|
|
|
|
};
|
|
|
|
|
let window_id = gl_window.window().id();
|
|
|
|
|
*egui_id = Some(window_id);
|
|
|
|
|
|
|
|
|
|
let gl = unsafe { glow::Context::from_loader_function(|s| gl_window.get_proc_address(s)) };
|
|
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
|
use glow::HasContext as _;
|
|
|
|
|
gl.enable(glow::FRAMEBUFFER_SRGB);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct GlowRepaintSignal(EventLoopProxy<Message>, WindowId);
|
|
|
|
|
|
|
|
|
|
impl epi::backend::RepaintSignal for GlowRepaintSignal {
|
|
|
|
|
fn request_repaint(&self) {
|
|
|
|
|
let _ = self
|
|
|
|
|
.0
|
|
|
|
|
.send_event(Message::Window(self.1, WindowMessage::RequestRedraw));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let repaint_signal = std::sync::Arc::new(GlowRepaintSignal(proxy, window_id));
|
|
|
|
|
|
|
|
|
|
let painter = egui_glow::Painter::new(&gl, None, "")
|
|
|
|
|
.map_err(|error| eprintln!("some OpenGL error occurred {}\n", error))
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
let integration = egui_tao::epi::EpiIntegration::new(
|
|
|
|
|
"egui_glow",
|
|
|
|
|
gl_window.window(),
|
|
|
|
|
repaint_signal,
|
|
|
|
|
persistence,
|
|
|
|
|
app,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window_id, WindowEventListenersMap::default());
|
|
|
|
|
|
|
|
|
|
menu_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window_id, WindowMenuEventListeners::default());
|
|
|
|
|
|
|
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
|
{
|
|
|
|
|
windows.lock().expect("poisoned webview collection").insert(
|
|
|
|
|
window_id,
|
|
|
|
|
WindowWrapper {
|
|
|
|
|
label,
|
|
|
|
|
inner: WindowHandle::GLWindow(gl_window, gl, painter, integration),
|
|
|
|
|
menu_items: Default::default(),
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
let area = unsafe { gl_window.raw_handle() };
|
|
|
|
|
let integration = Rc::new(RefCell::new(integration));
|
|
|
|
|
let painter = Rc::new(RefCell::new(painter));
|
|
|
|
|
let render_flow = Rc::new(AtomicU8::new(1));
|
|
|
|
|
let gl_window = Rc::new(gl_window);
|
|
|
|
|
let gl = Rc::new(gl);
|
|
|
|
|
|
|
|
|
|
let i = integration.clone();
|
|
|
|
|
let p = painter.clone();
|
|
|
|
|
let r = render_flow.clone();
|
|
|
|
|
let gl_window_ = Rc::downgrade(&gl_window);
|
|
|
|
|
let gl_ = gl.clone();
|
|
|
|
|
area.connect_render(move |_, _| {
|
|
|
|
|
if let Some(gl_window) = gl_window_.upgrade() {
|
|
|
|
|
let mut integration = i.borrow_mut();
|
|
|
|
|
let mut painter = p.borrow_mut();
|
|
|
|
|
let (needs_repaint, mut tex_allocation_data, shapes) =
|
|
|
|
|
integration.update(gl_window.window());
|
|
|
|
|
let clipped_meshes = integration.egui_ctx.tessellate(shapes);
|
|
|
|
|
|
|
|
|
|
for (id, image) in tex_allocation_data.creations {
|
|
|
|
|
painter.set_texture(&gl_, id, &image);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
let color = integration.app.clear_color();
|
|
|
|
|
unsafe {
|
|
|
|
|
use glow::HasContext as _;
|
|
|
|
|
gl_.disable(glow::SCISSOR_TEST);
|
|
|
|
|
gl_.clear_color(color[0], color[1], color[2], color[3]);
|
|
|
|
|
gl_.clear(glow::COLOR_BUFFER_BIT);
|
|
|
|
|
}
|
|
|
|
|
painter.upload_egui_texture(&gl_, &integration.egui_ctx.font_image());
|
|
|
|
|
painter.paint_meshes(
|
|
|
|
|
&gl_,
|
|
|
|
|
gl_window.window().inner_size().into(),
|
|
|
|
|
integration.egui_ctx.pixels_per_point(),
|
|
|
|
|
clipped_meshes,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for id in tex_allocation_data.destructions.drain(..) {
|
|
|
|
|
painter.free_texture(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
let control_flow = if integration.should_quit() {
|
|
|
|
|
1
|
|
|
|
|
} else if needs_repaint {
|
|
|
|
|
0
|
|
|
|
|
} else {
|
|
|
|
|
1
|
|
|
|
|
};
|
|
|
|
|
r.store(control_flow, Ordering::Relaxed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
integration.maybe_autosave(gl_window.window());
|
|
|
|
|
}
|
|
|
|
|
gtk::Inhibit(false)
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
windows.lock().expect("poisoned webview collection").insert(
|
|
|
|
|
window_id,
|
|
|
|
|
WindowWrapper {
|
|
|
|
|
label,
|
|
|
|
|
inner: WindowHandle::GLWindow(gl_window, gl, painter, integration, render_flow),
|
|
|
|
|
menu_items: Default::default(),
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
Message::Tray(tray_message) => match tray_message {
|
|
|
|
|
TrayMessage::UpdateItem(menu_id, update) => {
|
|
|
|
|
let mut tray = tray_context.items.as_ref().lock().unwrap();
|
|
|
|
|
let item = tray.get_mut(&menu_id).expect("menu item not found");
|
|
|
|
|
match update {
|
|
|
|
|
MenuUpdate::SetEnabled(enabled) => item.set_enabled(enabled),
|
|
|
|
|
MenuUpdate::SetTitle(title) => item.set_title(&title),
|
|
|
|
|
MenuUpdate::SetSelected(selected) => item.set_selected(selected),
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
MenuUpdate::SetNativeImage(image) => {
|
|
|
|
|
item.set_native_image(NativeImageWrapper::from(image).0)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-02 21:57:53 +03:00
|
|
|
|
TrayMessage::UpdateMenu(menu) => {
|
|
|
|
|
if let Some(tray) = &*tray_context.tray.lock().unwrap() {
|
|
|
|
|
let mut items = HashMap::new();
|
|
|
|
|
tray
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.set_menu(&to_wry_context_menu(&mut items, menu));
|
|
|
|
|
*tray_context.items.lock().unwrap() = items;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
TrayMessage::UpdateIcon(icon) => {
|
|
|
|
|
if let Some(tray) = &*tray_context.tray.lock().unwrap() {
|
|
|
|
|
tray.lock().unwrap().set_icon(icon.into_tray_icon());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
TrayMessage::UpdateIconAsTemplate(is_template) => {
|
|
|
|
|
if let Some(tray) = &*tray_context.tray.lock().unwrap() {
|
|
|
|
|
tray.lock().unwrap().set_icon_as_template(is_template);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Message::GlobalShortcut(message) => match message {
|
|
|
|
|
GlobalShortcutMessage::IsRegistered(accelerator, tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
global_shortcut_manager
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.is_registered(&accelerator),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
GlobalShortcutMessage::Register(accelerator, tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
global_shortcut_manager
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.register(accelerator)
|
|
|
|
|
.map(GlobalShortcutWrapper)
|
|
|
|
|
.map_err(|e| Error::GlobalShortcut(Box::new(e))),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
GlobalShortcutMessage::Unregister(shortcut, tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
global_shortcut_manager
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.unregister(shortcut.0)
|
|
|
|
|
.map_err(|e| Error::GlobalShortcut(Box::new(e))),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
GlobalShortcutMessage::UnregisterAll(tx) => tx
|
|
|
|
|
.send(
|
|
|
|
|
global_shortcut_manager
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.unregister_all()
|
|
|
|
|
.map_err(|e| Error::GlobalShortcut(Box::new(e))),
|
|
|
|
|
)
|
|
|
|
|
.unwrap(),
|
|
|
|
|
},
|
|
|
|
|
Message::Clipboard(message) => match message {
|
|
|
|
|
ClipboardMessage::WriteText(text, tx) => {
|
|
|
|
|
clipboard_manager.lock().unwrap().write_text(text);
|
|
|
|
|
tx.send(()).unwrap();
|
|
|
|
|
}
|
|
|
|
|
ClipboardMessage::ReadText(tx) => tx
|
|
|
|
|
.send(clipboard_manager.lock().unwrap().read_text())
|
|
|
|
|
.unwrap(),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let it = RunIteration {
|
|
|
|
|
window_count: windows.lock().expect("poisoned webview collection").len(),
|
|
|
|
|
};
|
|
|
|
|
it
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
|
fn handle_event_loop(
|
2021-10-22 16:04:42 +03:00
|
|
|
|
event: Event<'_, Message>,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
event_loop: &EventLoopWindowTarget<Message>,
|
|
|
|
|
control_flow: &mut ControlFlow,
|
|
|
|
|
context: EventLoopIterationContext<'_>,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
web_context: &WebContextStore,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
) -> RunIteration {
|
|
|
|
|
let EventLoopIterationContext {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
callback,
|
2021-09-26 07:50:27 +03:00
|
|
|
|
windows,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
window_event_listeners,
|
2021-06-21 18:29:26 +03:00
|
|
|
|
global_shortcut_manager,
|
|
|
|
|
global_shortcut_manager_handle,
|
2021-06-21 19:32:22 +03:00
|
|
|
|
clipboard_manager,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
menu_event_listeners,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
2021-06-04 19:51:15 +03:00
|
|
|
|
tray_context,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
} = context;
|
2021-07-06 19:36:37 +03:00
|
|
|
|
if *control_flow == ControlFlow::Exit {
|
|
|
|
|
return RunIteration {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_count: windows.lock().expect("poisoned webview collection").len(),
|
2021-07-06 19:36:37 +03:00
|
|
|
|
};
|
|
|
|
|
}
|
2022-01-05 12:56:55 +03:00
|
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
|
*control_flow = ControlFlow::Wait;
|
|
|
|
|
|
|
|
|
|
match event {
|
2021-08-15 23:10:22 +03:00
|
|
|
|
Event::NewEvents(StartCause::Init) => {
|
|
|
|
|
callback(RunEvent::Ready);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 00:14:26 +03:00
|
|
|
|
Event::NewEvents(StartCause::Poll) => {
|
|
|
|
|
callback(RunEvent::Resumed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Event::MainEventsCleared => {
|
|
|
|
|
callback(RunEvent::MainEventsCleared);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-21 18:29:26 +03:00
|
|
|
|
Event::GlobalShortcutEvent(accelerator_id) => {
|
|
|
|
|
for (id, handler) in &*global_shortcut_manager_handle.listeners.lock().unwrap() {
|
|
|
|
|
if accelerator_id == *id {
|
|
|
|
|
handler();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-21 22:16:05 +03:00
|
|
|
|
Event::MenuEvent {
|
2021-06-23 17:29:30 +03:00
|
|
|
|
window_id,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
menu_id,
|
2021-06-04 19:51:15 +03:00
|
|
|
|
origin: MenuType::MenuBar,
|
2021-07-15 18:47:19 +03:00
|
|
|
|
..
|
2021-05-21 22:16:05 +03:00
|
|
|
|
} => {
|
2021-06-23 17:29:30 +03:00
|
|
|
|
let window_id = window_id.unwrap(); // always Some on MenuBar event
|
2021-05-21 22:16:05 +03:00
|
|
|
|
let event = MenuEvent {
|
|
|
|
|
menu_item_id: menu_id.0,
|
|
|
|
|
};
|
2021-12-29 04:51:33 +03:00
|
|
|
|
let window_menu_event_listeners = {
|
|
|
|
|
let listeners = menu_event_listeners.lock().unwrap();
|
|
|
|
|
listeners.get(&window_id).cloned().unwrap_or_default()
|
|
|
|
|
};
|
2021-06-23 17:29:30 +03:00
|
|
|
|
for handler in window_menu_event_listeners.lock().unwrap().values() {
|
2021-05-21 22:16:05 +03:00
|
|
|
|
handler(&event);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
Event::MenuEvent {
|
2021-06-23 17:29:30 +03:00
|
|
|
|
window_id: _,
|
2021-05-21 22:16:05 +03:00
|
|
|
|
menu_id,
|
2021-06-04 19:51:15 +03:00
|
|
|
|
origin: MenuType::ContextMenu,
|
2021-07-15 18:47:19 +03:00
|
|
|
|
..
|
2021-05-21 22:16:05 +03:00
|
|
|
|
} => {
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let event = SystemTrayEvent::MenuItemClick(menu_id.0);
|
|
|
|
|
for handler in tray_context.listeners.lock().unwrap().values() {
|
|
|
|
|
handler(&event);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
Event::TrayEvent {
|
|
|
|
|
bounds,
|
|
|
|
|
event,
|
|
|
|
|
position: _cursor_position,
|
2021-07-15 18:47:19 +03:00
|
|
|
|
..
|
2021-06-04 19:51:15 +03:00
|
|
|
|
} => {
|
|
|
|
|
let (position, size) = (
|
|
|
|
|
PhysicalPositionWrapper(bounds.position).into(),
|
|
|
|
|
PhysicalSizeWrapper(bounds.size).into(),
|
|
|
|
|
);
|
|
|
|
|
let event = match event {
|
|
|
|
|
TrayEvent::RightClick => SystemTrayEvent::RightClick { position, size },
|
|
|
|
|
TrayEvent::DoubleClick => SystemTrayEvent::DoubleClick { position, size },
|
2021-07-15 18:47:19 +03:00
|
|
|
|
// default to left click
|
|
|
|
|
_ => SystemTrayEvent::LeftClick { position, size },
|
2021-05-21 22:16:05 +03:00
|
|
|
|
};
|
2021-06-04 19:51:15 +03:00
|
|
|
|
for handler in tray_context.listeners.lock().unwrap().values() {
|
2021-05-21 22:16:05 +03:00
|
|
|
|
handler(&event);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-15 18:47:19 +03:00
|
|
|
|
Event::WindowEvent {
|
|
|
|
|
event, window_id, ..
|
|
|
|
|
} => {
|
2021-08-29 15:12:45 +03:00
|
|
|
|
// NOTE(amrbashir): we handle this event here instead of `match` statement below because
|
|
|
|
|
// we want to focus the webview as soon as possible, especially on windows.
|
2021-07-23 16:31:17 +03:00
|
|
|
|
if event == WryWindowEvent::Focused(true) {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
if let Some(WindowHandle::Webview(webview)) = windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.get(&window_id)
|
|
|
|
|
.map(|w| &w.inner)
|
|
|
|
|
{
|
2021-07-29 20:35:26 +03:00
|
|
|
|
webview.focus();
|
|
|
|
|
}
|
2021-07-23 16:31:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-30 02:52:05 +03:00
|
|
|
|
{
|
|
|
|
|
let windows_lock = windows.lock().expect("poisoned webview collection");
|
|
|
|
|
if let Some(window_handle) = windows_lock.get(&window_id).map(|w| &w.inner) {
|
|
|
|
|
if let Some(event) = WindowEventWrapper::parse(window_handle, &event).0 {
|
|
|
|
|
drop(windows_lock);
|
|
|
|
|
for handler in window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.get(&window_id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.values()
|
|
|
|
|
{
|
|
|
|
|
handler(&event);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-21 22:16:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-30 02:52:05 +03:00
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
match event {
|
2021-05-21 22:16:05 +03:00
|
|
|
|
WryWindowEvent::CloseRequested => {
|
2021-07-06 19:36:37 +03:00
|
|
|
|
let (tx, rx) = channel();
|
2021-09-26 07:48:13 +03:00
|
|
|
|
let windows_guard = windows.lock().expect("poisoned webview collection");
|
|
|
|
|
if let Some(w) = windows_guard.get(&window_id) {
|
|
|
|
|
let label = w.label.clone();
|
|
|
|
|
drop(windows_guard);
|
2021-12-09 18:22:12 +03:00
|
|
|
|
for handler in window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.get(&window_id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.values()
|
|
|
|
|
{
|
|
|
|
|
handler(&WindowEvent::CloseRequested {
|
|
|
|
|
label: label.clone(),
|
|
|
|
|
signal_tx: tx.clone(),
|
|
|
|
|
});
|
|
|
|
|
}
|
2021-07-06 19:36:37 +03:00
|
|
|
|
callback(RunEvent::CloseRequested {
|
2021-09-26 07:48:13 +03:00
|
|
|
|
label,
|
2021-07-06 19:36:37 +03:00
|
|
|
|
signal_tx: tx,
|
|
|
|
|
});
|
|
|
|
|
if let Ok(true) = rx.try_recv() {
|
|
|
|
|
} else {
|
|
|
|
|
on_window_close(
|
|
|
|
|
callback,
|
|
|
|
|
window_id,
|
2021-09-26 07:48:13 +03:00
|
|
|
|
windows.lock().expect("poisoned webview collection"),
|
2021-07-06 19:36:37 +03:00
|
|
|
|
control_flow,
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
menu_event_listeners.clone(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-08 18:11:40 +03:00
|
|
|
|
}
|
2021-07-12 18:58:49 +03:00
|
|
|
|
WryWindowEvent::Resized(_) => {
|
2021-09-26 07:50:27 +03:00
|
|
|
|
if let Some(WindowHandle::Webview(webview)) = windows
|
|
|
|
|
.lock()
|
|
|
|
|
.expect("poisoned webview collection")
|
|
|
|
|
.get(&window_id)
|
|
|
|
|
.map(|w| &w.inner)
|
|
|
|
|
{
|
2021-07-29 20:35:26 +03:00
|
|
|
|
if let Err(e) = webview.resize() {
|
|
|
|
|
eprintln!("{}", e);
|
|
|
|
|
}
|
2021-05-09 14:15:37 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-21 22:16:05 +03:00
|
|
|
|
_ => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
Event::UserEvent(message) => {
|
2021-09-28 02:18:06 +03:00
|
|
|
|
if let Message::Window(id, WindowMessage::Close) = message {
|
|
|
|
|
on_window_close(
|
|
|
|
|
callback,
|
|
|
|
|
id,
|
|
|
|
|
windows.lock().expect("poisoned webview collection"),
|
|
|
|
|
control_flow,
|
|
|
|
|
#[cfg(target_os = "linux")]
|
2021-09-26 07:50:27 +03:00
|
|
|
|
window_event_listeners,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
menu_event_listeners.clone(),
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return handle_user_message(
|
|
|
|
|
event_loop,
|
|
|
|
|
message,
|
|
|
|
|
UserMessageContext {
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
global_shortcut_manager,
|
|
|
|
|
clipboard_manager,
|
|
|
|
|
menu_event_listeners,
|
|
|
|
|
windows,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context,
|
|
|
|
|
},
|
|
|
|
|
web_context,
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-09-26 07:50:27 +03:00
|
|
|
|
}
|
2021-05-21 22:16:05 +03:00
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:50:27 +03:00
|
|
|
|
let it = RunIteration {
|
|
|
|
|
window_count: windows.lock().expect("poisoned webview collection").len(),
|
|
|
|
|
};
|
|
|
|
|
it
|
2021-02-08 17:19:22 +03:00
|
|
|
|
}
|
2021-04-04 03:41:04 +03:00
|
|
|
|
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[allow(dead_code)]
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
|
fn handle_gl_loop(
|
|
|
|
|
event: &Event<'_, Message>,
|
|
|
|
|
_event_loop: &EventLoopWindowTarget<Message>,
|
|
|
|
|
control_flow: &mut ControlFlow,
|
|
|
|
|
context: EventLoopIterationContext<'_>,
|
|
|
|
|
_web_context: &WebContextStore,
|
|
|
|
|
is_focused: &mut bool,
|
|
|
|
|
) {
|
|
|
|
|
let EventLoopIterationContext {
|
|
|
|
|
callback,
|
|
|
|
|
windows,
|
|
|
|
|
menu_event_listeners,
|
|
|
|
|
#[cfg(feature = "system-tray")]
|
|
|
|
|
tray_context,
|
|
|
|
|
..
|
|
|
|
|
} = context;
|
|
|
|
|
let egui_id = EGUI_ID.lock().unwrap();
|
|
|
|
|
if let Some(id) = *egui_id {
|
|
|
|
|
let mut windows = windows.lock().unwrap();
|
|
|
|
|
let mut should_quit = false;
|
|
|
|
|
if let Some(win) = windows.get_mut(&id) {
|
|
|
|
|
if let WindowHandle::GLWindow(gl_window, gl, painter, integration) = &mut win.inner {
|
|
|
|
|
let mut redraw = || {
|
|
|
|
|
if !*is_focused {
|
|
|
|
|
// On Mac, a minimized Window uses up all CPU: https://github.com/emilk/egui/issues/325
|
|
|
|
|
// We can't know if we are minimized: https://github.com/rust-windowing/winit/issues/208
|
|
|
|
|
// But we know if we are focused (in foreground). When minimized, we are not focused.
|
|
|
|
|
// However, a user may want an egui with an animation in the background,
|
|
|
|
|
// so we still need to repaint quite fast.
|
|
|
|
|
std::thread::sleep(std::time::Duration::from_millis(10));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let (needs_repaint, mut tex_allocation_data, shapes) =
|
|
|
|
|
integration.update(gl_window.window());
|
|
|
|
|
let clipped_meshes = integration.egui_ctx.tessellate(shapes);
|
|
|
|
|
|
|
|
|
|
for (id, image) in tex_allocation_data.creations {
|
|
|
|
|
painter.set_texture(&gl, id, &image);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
let color = integration.app.clear_color();
|
|
|
|
|
unsafe {
|
|
|
|
|
use glow::HasContext as _;
|
|
|
|
|
gl.disable(glow::SCISSOR_TEST);
|
|
|
|
|
gl.clear_color(color[0], color[1], color[2], color[3]);
|
|
|
|
|
gl.clear(glow::COLOR_BUFFER_BIT);
|
|
|
|
|
}
|
|
|
|
|
painter.upload_egui_texture(&gl, &integration.egui_ctx.font_image());
|
|
|
|
|
painter.paint_meshes(
|
|
|
|
|
&gl,
|
|
|
|
|
gl_window.window().inner_size().into(),
|
|
|
|
|
integration.egui_ctx.pixels_per_point(),
|
|
|
|
|
clipped_meshes,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
gl_window.swap_buffers().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for id in tex_allocation_data.destructions.drain(..) {
|
|
|
|
|
painter.free_texture(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
*control_flow = if integration.should_quit() {
|
|
|
|
|
should_quit = true;
|
|
|
|
|
glutin::event_loop::ControlFlow::Wait
|
|
|
|
|
} else if needs_repaint {
|
|
|
|
|
gl_window.window().request_redraw();
|
|
|
|
|
glutin::event_loop::ControlFlow::Poll
|
|
|
|
|
} else {
|
|
|
|
|
glutin::event_loop::ControlFlow::Wait
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
integration.maybe_autosave(gl_window.window());
|
|
|
|
|
};
|
|
|
|
|
match event {
|
|
|
|
|
// Platform-dependent event handlers to workaround a winit bug
|
|
|
|
|
// See: https://github.com/rust-windowing/winit/issues/987
|
|
|
|
|
// See: https://github.com/rust-windowing/winit/issues/1619
|
|
|
|
|
glutin::event::Event::RedrawEventsCleared if cfg!(windows) => redraw(),
|
|
|
|
|
glutin::event::Event::RedrawRequested(_) if !cfg!(windows) => redraw(),
|
|
|
|
|
glutin::event::Event::WindowEvent {
|
|
|
|
|
event, window_id, ..
|
|
|
|
|
} => {
|
|
|
|
|
if window_id == &id {
|
|
|
|
|
if let glutin::event::WindowEvent::Focused(new_focused) = event {
|
|
|
|
|
*is_focused = *new_focused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let glutin::event::WindowEvent::Resized(physical_size) = event {
|
|
|
|
|
gl_window.resize(*physical_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
integration.on_event(&event);
|
|
|
|
|
if integration.should_quit() {
|
|
|
|
|
should_quit = true;
|
|
|
|
|
*control_flow = glutin::event_loop::ControlFlow::Wait;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gl_window.window().request_redraw();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if should_quit {
|
|
|
|
|
drop(egui_id);
|
|
|
|
|
on_window_close(
|
|
|
|
|
callback,
|
|
|
|
|
id,
|
|
|
|
|
windows,
|
|
|
|
|
control_flow,
|
|
|
|
|
menu_event_listeners.clone(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
2022-01-05 12:56:55 +03:00
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
fn handle_gl_loop(
|
|
|
|
|
event: &Event<'_, Message>,
|
|
|
|
|
_event_loop: &EventLoopWindowTarget<Message>,
|
|
|
|
|
control_flow: &mut ControlFlow,
|
|
|
|
|
context: EventLoopIterationContext<'_>,
|
|
|
|
|
_web_context: &WebContextStore,
|
|
|
|
|
is_focused: &mut bool,
|
|
|
|
|
) {
|
|
|
|
|
let EventLoopIterationContext {
|
|
|
|
|
callback,
|
|
|
|
|
windows,
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
menu_event_listeners,
|
|
|
|
|
..
|
|
|
|
|
} = context;
|
|
|
|
|
let egui_id = EGUI_ID.lock().unwrap();
|
|
|
|
|
if let Some(id) = *egui_id {
|
|
|
|
|
let mut windows = windows.lock().unwrap();
|
|
|
|
|
let mut should_quit = false;
|
|
|
|
|
if let Some(win) = windows.get_mut(&id) {
|
|
|
|
|
if let WindowHandle::GLWindow(gl_window, _gl, _painter, integration, render_flow) =
|
|
|
|
|
&mut win.inner
|
|
|
|
|
{
|
|
|
|
|
let mut integration = integration.borrow_mut();
|
|
|
|
|
let area = unsafe { gl_window.raw_handle() };
|
|
|
|
|
match event {
|
|
|
|
|
glutin::event::Event::MainEventsCleared => {
|
|
|
|
|
area.queue_render();
|
|
|
|
|
match render_flow.load(Ordering::Relaxed) {
|
|
|
|
|
0 => *control_flow = glutin::event_loop::ControlFlow::Poll,
|
|
|
|
|
1 => *control_flow = glutin::event_loop::ControlFlow::Wait,
|
|
|
|
|
2 => *control_flow = glutin::event_loop::ControlFlow::Exit,
|
|
|
|
|
_ => unreachable!(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
glutin::event::Event::WindowEvent {
|
|
|
|
|
event, window_id, ..
|
|
|
|
|
} => {
|
|
|
|
|
if window_id == &id {
|
|
|
|
|
if let glutin::event::WindowEvent::Focused(new_focused) = event {
|
|
|
|
|
*is_focused = *new_focused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let glutin::event::WindowEvent::Resized(physical_size) = event {
|
|
|
|
|
gl_window.resize(*physical_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
integration.on_event(event);
|
|
|
|
|
if integration.should_quit() {
|
|
|
|
|
should_quit = true;
|
|
|
|
|
*control_flow = glutin::event_loop::ControlFlow::Wait;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gl_window.window().request_redraw();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if should_quit {
|
|
|
|
|
drop(egui_id);
|
|
|
|
|
on_window_close(
|
|
|
|
|
callback,
|
|
|
|
|
id,
|
|
|
|
|
windows,
|
|
|
|
|
control_flow,
|
|
|
|
|
window_event_listeners,
|
|
|
|
|
menu_event_listeners.clone(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-20 20:12:28 +03:00
|
|
|
|
fn on_window_close<'a>(
|
2021-09-27 22:27:37 +03:00
|
|
|
|
callback: &'a mut (dyn FnMut(RunEvent) + 'static),
|
2021-06-20 20:12:28 +03:00
|
|
|
|
window_id: WindowId,
|
2021-09-26 07:48:13 +03:00
|
|
|
|
mut windows: MutexGuard<'a, HashMap<WindowId, WindowWrapper>>,
|
2021-06-20 20:12:28 +03:00
|
|
|
|
control_flow: &mut ControlFlow,
|
2021-07-06 19:36:37 +03:00
|
|
|
|
#[cfg(target_os = "linux")] window_event_listeners: &WindowEventListeners,
|
2021-08-13 16:23:32 +03:00
|
|
|
|
menu_event_listeners: MenuEventListeners,
|
2021-06-20 20:12:28 +03:00
|
|
|
|
) {
|
2021-07-29 20:35:26 +03:00
|
|
|
|
if let Some(webview) = windows.remove(&window_id) {
|
2022-01-05 17:39:43 +03:00
|
|
|
|
#[cfg(feature = "egui")]
|
|
|
|
|
{
|
|
|
|
|
// Destrooy GL context if its a GLWindow
|
|
|
|
|
let mut egui_id = EGUI_ID.lock().unwrap();
|
|
|
|
|
if let Some(id) = *egui_id {
|
|
|
|
|
if id == window_id {
|
|
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
|
if let WindowHandle::GLWindow(gl_window, gl, mut painter, mut integration, ..) =
|
|
|
|
|
webview.inner
|
|
|
|
|
{
|
|
|
|
|
integration.on_exit(gl_window.window());
|
|
|
|
|
painter.destroy(&gl);
|
|
|
|
|
*egui_id = None;
|
|
|
|
|
}
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
if let WindowHandle::GLWindow(gl_window, gl, painter, integration, ..) = webview.inner {
|
|
|
|
|
let mut integration = integration.borrow_mut();
|
|
|
|
|
let mut painter = painter.borrow_mut();
|
|
|
|
|
integration.on_exit(gl_window.window());
|
|
|
|
|
painter.destroy(&gl);
|
|
|
|
|
*egui_id = None;
|
|
|
|
|
}
|
2022-01-05 12:56:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-26 07:48:13 +03:00
|
|
|
|
let is_empty = windows.is_empty();
|
|
|
|
|
drop(windows);
|
2021-06-23 17:29:30 +03:00
|
|
|
|
menu_event_listeners.lock().unwrap().remove(&window_id);
|
2021-08-12 20:22:08 +03:00
|
|
|
|
callback(RunEvent::WindowClose(webview.label.clone()));
|
2021-08-09 03:12:32 +03:00
|
|
|
|
|
2021-09-26 07:48:13 +03:00
|
|
|
|
if is_empty {
|
2021-08-12 20:22:08 +03:00
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
callback(RunEvent::ExitRequested {
|
|
|
|
|
window_label: webview.label,
|
|
|
|
|
tx,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let recv = rx.try_recv();
|
|
|
|
|
let should_prevent = matches!(recv, Ok(ExitRequestedEventAction::Prevent));
|
2021-08-09 03:12:32 +03:00
|
|
|
|
|
2021-08-12 20:22:08 +03:00
|
|
|
|
if !should_prevent {
|
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
|
callback(RunEvent::Exit);
|
|
|
|
|
}
|
2021-08-09 03:12:32 +03:00
|
|
|
|
}
|
2021-06-20 20:12:28 +03:00
|
|
|
|
}
|
2021-07-06 19:36:37 +03:00
|
|
|
|
// TODO: tao does not fire the destroyed event properly
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
{
|
|
|
|
|
for handler in window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.get(&window_id)
|
|
|
|
|
.unwrap()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.values()
|
|
|
|
|
{
|
|
|
|
|
handler(&WindowEvent::Destroyed);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-20 20:12:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-30 02:52:05 +03:00
|
|
|
|
fn center_window(window: &Window, window_size: WryPhysicalSize<u32>) -> Result<()> {
|
2021-06-06 00:20:16 +03:00
|
|
|
|
if let Some(monitor) = window.current_monitor() {
|
|
|
|
|
let screen_size = monitor.size();
|
2021-12-09 06:21:29 +03:00
|
|
|
|
let x = (screen_size.width as i32 - window_size.width as i32) / 2;
|
|
|
|
|
let y = (screen_size.height as i32 - window_size.height as i32) / 2;
|
2021-06-06 00:20:16 +03:00
|
|
|
|
window.set_outer_position(WryPhysicalPosition::new(x, y));
|
|
|
|
|
Ok(())
|
|
|
|
|
} else {
|
|
|
|
|
Err(Error::FailedToGetMonitor)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-13 16:23:32 +03:00
|
|
|
|
fn to_wry_menu(
|
|
|
|
|
custom_menu_items: &mut HashMap<MenuHash, WryCustomMenuItem>,
|
|
|
|
|
menu: Menu,
|
|
|
|
|
) -> MenuBar {
|
|
|
|
|
let mut wry_menu = MenuBar::new();
|
|
|
|
|
for item in menu.items {
|
|
|
|
|
match item {
|
|
|
|
|
MenuEntry::CustomItem(c) => {
|
|
|
|
|
let mut attributes = MenuItemAttributesWrapper::from(&c).0;
|
|
|
|
|
attributes = attributes.with_id(WryMenuId(c.id));
|
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
|
let mut item = wry_menu.add_item(attributes);
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
if let Some(native_image) = c.native_image {
|
|
|
|
|
item.set_native_image(NativeImageWrapper::from(native_image).0);
|
|
|
|
|
}
|
|
|
|
|
custom_menu_items.insert(c.id, item);
|
|
|
|
|
}
|
|
|
|
|
MenuEntry::NativeItem(i) => {
|
|
|
|
|
wry_menu.add_native_item(MenuItemWrapper::from(i).0);
|
|
|
|
|
}
|
|
|
|
|
MenuEntry::Submenu(submenu) => {
|
|
|
|
|
wry_menu.add_submenu(
|
|
|
|
|
&submenu.title,
|
|
|
|
|
submenu.enabled,
|
|
|
|
|
to_wry_menu(custom_menu_items, submenu.inner),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
wry_menu
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_webview(
|
2021-04-29 01:56:05 +03:00
|
|
|
|
event_loop: &EventLoopWindowTarget<Message>,
|
2021-08-02 05:54:10 +03:00
|
|
|
|
web_context: &WebContextStore,
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
pending: PendingWindow<Wry>,
|
2021-07-29 20:35:26 +03:00
|
|
|
|
) -> Result<WindowWrapper> {
|
2021-06-22 07:29:03 +03:00
|
|
|
|
#[allow(unused_mut)]
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let PendingWindow {
|
|
|
|
|
webview_attributes,
|
2021-08-24 17:40:10 +03:00
|
|
|
|
uri_scheme_protocols,
|
2021-06-22 07:29:03 +03:00
|
|
|
|
mut window_builder,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
rpc_handler,
|
|
|
|
|
file_drop_handler,
|
|
|
|
|
label,
|
|
|
|
|
url,
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu_ids,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
..
|
|
|
|
|
} = pending;
|
|
|
|
|
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let is_window_transparent = window_builder.inner.window.transparent;
|
2021-10-08 17:38:24 +03:00
|
|
|
|
let menu_items = if let Some(menu) = window_builder.menu {
|
2021-06-22 07:29:03 +03:00
|
|
|
|
let mut menu_items = HashMap::new();
|
2021-10-08 17:38:24 +03:00
|
|
|
|
let menu = to_wry_menu(&mut menu_items, menu);
|
2021-06-22 07:29:03 +03:00
|
|
|
|
window_builder.inner = window_builder.inner.with_menu(menu);
|
2021-10-08 17:38:24 +03:00
|
|
|
|
Some(menu_items)
|
|
|
|
|
} else {
|
|
|
|
|
None
|
2021-06-22 07:29:03 +03:00
|
|
|
|
};
|
2021-06-04 19:51:15 +03:00
|
|
|
|
let window = window_builder.inner.build(event_loop).unwrap();
|
2021-06-23 17:29:30 +03:00
|
|
|
|
|
2021-06-23 22:20:09 +03:00
|
|
|
|
context
|
|
|
|
|
.window_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window.id(), WindowEventListenersMap::default());
|
|
|
|
|
|
2021-06-23 17:29:30 +03:00
|
|
|
|
context
|
|
|
|
|
.menu_event_listeners
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.insert(window.id(), WindowMenuEventListeners::default());
|
|
|
|
|
|
2021-06-06 00:20:16 +03:00
|
|
|
|
if window_builder.center {
|
2021-09-30 02:52:05 +03:00
|
|
|
|
let _ = center_window(&window, window.inner_size());
|
2021-06-06 00:20:16 +03:00
|
|
|
|
}
|
2021-04-29 01:56:05 +03:00
|
|
|
|
let mut webview_builder = WebViewBuilder::new(window)
|
2021-05-10 00:43:50 +03:00
|
|
|
|
.map_err(|e| Error::CreateWebview(Box::new(e)))?
|
2021-04-29 01:56:05 +03:00
|
|
|
|
.with_url(&url)
|
2021-05-12 16:55:12 +03:00
|
|
|
|
.unwrap() // safe to unwrap because we validate the URL beforehand
|
|
|
|
|
.with_transparent(is_window_transparent);
|
2021-04-29 01:56:05 +03:00
|
|
|
|
if let Some(handler) = rpc_handler {
|
2021-10-08 17:38:24 +03:00
|
|
|
|
webview_builder = webview_builder.with_rpc_handler(create_rpc_handler(
|
|
|
|
|
context.clone(),
|
|
|
|
|
label.clone(),
|
|
|
|
|
menu_ids.clone(),
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners.clone(),
|
2021-10-08 17:38:24 +03:00
|
|
|
|
handler,
|
|
|
|
|
));
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
if let Some(handler) = file_drop_handler {
|
2021-06-20 20:12:28 +03:00
|
|
|
|
webview_builder = webview_builder.with_file_drop_handler(create_file_drop_handler(
|
|
|
|
|
context,
|
|
|
|
|
label.clone(),
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu_ids,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners,
|
2021-06-20 20:12:28 +03:00
|
|
|
|
handler,
|
|
|
|
|
));
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
2021-08-24 17:40:10 +03:00
|
|
|
|
for (scheme, protocol) in uri_scheme_protocols {
|
|
|
|
|
webview_builder = webview_builder.with_custom_protocol(scheme, move |wry_request| {
|
|
|
|
|
protocol(&HttpRequestWrapper::from(wry_request).0)
|
|
|
|
|
.map(|tauri_response| HttpResponseWrapper::from(tauri_response).0)
|
2021-06-16 04:04:06 +03:00
|
|
|
|
.map_err(|_| wry::Error::InitScriptError)
|
2021-04-29 01:56:05 +03:00
|
|
|
|
});
|
|
|
|
|
}
|
2021-08-02 05:54:10 +03:00
|
|
|
|
|
2021-04-29 01:56:05 +03:00
|
|
|
|
for script in webview_attributes.initialization_scripts {
|
|
|
|
|
webview_builder = webview_builder.with_initialization_script(&script);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-29 22:28:37 +03:00
|
|
|
|
let mut web_context = web_context.lock().expect("poisoned WebContext store");
|
|
|
|
|
let is_first_context = web_context.is_empty();
|
|
|
|
|
let automation_enabled = std::env::var("TAURI_AUTOMATION").as_deref() == Ok("true");
|
|
|
|
|
let web_context = match web_context.entry(
|
|
|
|
|
// force a unique WebContext when automation is false;
|
|
|
|
|
// the context must be stored on the HashMap because it must outlive the WebView on macOS
|
|
|
|
|
if automation_enabled {
|
|
|
|
|
webview_attributes.data_directory.clone()
|
|
|
|
|
} else {
|
|
|
|
|
// random unique key
|
|
|
|
|
Some(Uuid::new_v4().to_hyphenated().to_string().into())
|
|
|
|
|
},
|
|
|
|
|
) {
|
|
|
|
|
Occupied(occupied) => occupied.into_mut(),
|
|
|
|
|
Vacant(vacant) => {
|
|
|
|
|
let mut web_context = WebContext::new(webview_attributes.data_directory);
|
|
|
|
|
web_context.set_allows_automation(if automation_enabled {
|
|
|
|
|
is_first_context
|
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
});
|
|
|
|
|
vacant.insert(web_context)
|
|
|
|
|
}
|
2021-08-02 05:54:10 +03:00
|
|
|
|
};
|
2021-09-29 22:28:37 +03:00
|
|
|
|
let webview = webview_builder
|
|
|
|
|
.with_web_context(web_context)
|
|
|
|
|
.build()
|
|
|
|
|
.map_err(|e| Error::CreateWebview(Box::new(e)))?;
|
2021-08-02 05:54:10 +03:00
|
|
|
|
|
2021-07-29 20:35:26 +03:00
|
|
|
|
Ok(WindowWrapper {
|
2021-07-15 13:05:29 +03:00
|
|
|
|
label,
|
2021-07-29 20:35:26 +03:00
|
|
|
|
inner: WindowHandle::Webview(webview),
|
2021-06-04 19:51:15 +03:00
|
|
|
|
menu_items,
|
|
|
|
|
})
|
2021-04-29 01:56:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-04 03:41:04 +03:00
|
|
|
|
/// Create a wry rpc handler from a tauri rpc handler.
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_rpc_handler(
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
label: String,
|
2021-11-25 19:27:12 +03:00
|
|
|
|
menu_ids: Arc<Mutex<HashMap<MenuHash, MenuId>>>,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners: Arc<Mutex<HashMap<String, HashSet<u64>>>>,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
handler: WebviewRpcHandler<Wry>,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
) -> Box<dyn Fn(&Window, WryRpcRequest) -> Option<RpcResponse> + 'static> {
|
2021-04-04 03:41:04 +03:00
|
|
|
|
Box::new(move |window, request| {
|
|
|
|
|
handler(
|
|
|
|
|
DetachedWindow {
|
|
|
|
|
dispatcher: WryDispatcher {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
window_id: window.id(),
|
2021-05-08 18:11:40 +03:00
|
|
|
|
context: context.clone(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
},
|
|
|
|
|
label: label.clone(),
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu_ids: menu_ids.clone(),
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners: js_event_listeners.clone(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
},
|
2021-05-10 00:43:50 +03:00
|
|
|
|
RpcRequestWrapper(request).into(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
);
|
|
|
|
|
None
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Create a wry file drop handler from a tauri file drop handler.
|
2021-07-15 13:05:29 +03:00
|
|
|
|
fn create_file_drop_handler(
|
2021-09-28 02:18:06 +03:00
|
|
|
|
context: Context,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
label: String,
|
2021-11-25 19:27:12 +03:00
|
|
|
|
menu_ids: Arc<Mutex<HashMap<MenuHash, MenuId>>>,
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners: Arc<Mutex<HashMap<String, HashSet<u64>>>>,
|
2021-07-15 13:05:29 +03:00
|
|
|
|
handler: FileDropHandler<Wry>,
|
2021-04-29 01:56:05 +03:00
|
|
|
|
) -> Box<dyn Fn(&Window, WryFileDropEvent) -> bool + 'static> {
|
2021-04-04 03:41:04 +03:00
|
|
|
|
Box::new(move |window, event| {
|
|
|
|
|
handler(
|
2021-05-10 00:43:50 +03:00
|
|
|
|
FileDropEventWrapper(event).into(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
DetachedWindow {
|
|
|
|
|
dispatcher: WryDispatcher {
|
2021-04-29 01:56:05 +03:00
|
|
|
|
window_id: window.id(),
|
2021-05-08 18:11:40 +03:00
|
|
|
|
context: context.clone(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
},
|
|
|
|
|
label: label.clone(),
|
2021-10-08 17:38:24 +03:00
|
|
|
|
menu_ids: menu_ids.clone(),
|
2021-12-09 18:22:12 +03:00
|
|
|
|
js_event_listeners: js_event_listeners.clone(),
|
2021-04-04 03:41:04 +03:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|