1use std::{
2 any::{type_name, TypeId},
3 cell::{Ref, RefCell, RefMut},
4 marker::PhantomData,
5 ops::{Deref, DerefMut},
6 path::{Path, PathBuf},
7 rc::{Rc, Weak},
8 sync::{atomic::Ordering::SeqCst, Arc},
9 time::Duration,
10};
11
12use anyhow::{anyhow, Result};
13use derive_more::{Deref, DerefMut};
14use futures::{channel::oneshot, future::LocalBoxFuture, Future};
15use slotmap::SlotMap;
16use smol::future::FutureExt;
17
18pub use async_context::*;
19use collections::{FxHashMap, FxHashSet, VecDeque};
20pub use entity_map::*;
21use http::{self, HttpClient};
22pub use model_context::*;
23#[cfg(any(test, feature = "test-support"))]
24pub use test_context::*;
25use util::ResultExt;
26
27use crate::{
28 current_platform, init_app_menus, Action, ActionRegistry, Any, AnyView, AnyWindowHandle,
29 AssetCache, AssetSource, BackgroundExecutor, ClipboardItem, Context, DispatchPhase, DisplayId,
30 Entity, EventEmitter, ForegroundExecutor, Global, KeyBinding, Keymap, Keystroke, LayoutId,
31 Menu, MenuItem, OwnedMenu, PathPromptOptions, Pixels, Platform, PlatformDisplay, Point,
32 PromptBuilder, PromptHandle, PromptLevel, Render, RenderablePromptHandle, Reservation,
33 SharedString, SubscriberSet, Subscription, SvgRenderer, Task, TextSystem, View, ViewContext,
34 Window, WindowAppearance, WindowContext, WindowHandle, WindowId,
35};
36
37mod async_context;
38mod entity_map;
39mod model_context;
40#[cfg(any(test, feature = "test-support"))]
41mod test_context;
42
43/// The duration for which futures returned from [AppContext::on_app_context] or [ModelContext::on_app_quit] can run before the application fully quits.
44pub const SHUTDOWN_TIMEOUT: Duration = Duration::from_millis(100);
45
46/// Temporary(?) wrapper around [`RefCell<AppContext>`] to help us debug any double borrows.
47/// Strongly consider removing after stabilization.
48#[doc(hidden)]
49pub struct AppCell {
50 app: RefCell<AppContext>,
51}
52
53impl AppCell {
54 #[doc(hidden)]
55 #[track_caller]
56 pub fn borrow(&self) -> AppRef {
57 if option_env!("TRACK_THREAD_BORROWS").is_some() {
58 let thread_id = std::thread::current().id();
59 eprintln!("borrowed {thread_id:?}");
60 }
61 AppRef(self.app.borrow())
62 }
63
64 #[doc(hidden)]
65 #[track_caller]
66 pub fn borrow_mut(&self) -> AppRefMut {
67 if option_env!("TRACK_THREAD_BORROWS").is_some() {
68 let thread_id = std::thread::current().id();
69 eprintln!("borrowed {thread_id:?}");
70 }
71 AppRefMut(self.app.borrow_mut())
72 }
73}
74
75#[doc(hidden)]
76#[derive(Deref, DerefMut)]
77pub struct AppRef<'a>(Ref<'a, AppContext>);
78
79impl<'a> Drop for AppRef<'a> {
80 fn drop(&mut self) {
81 if option_env!("TRACK_THREAD_BORROWS").is_some() {
82 let thread_id = std::thread::current().id();
83 eprintln!("dropped borrow from {thread_id:?}");
84 }
85 }
86}
87
88#[doc(hidden)]
89#[derive(Deref, DerefMut)]
90pub struct AppRefMut<'a>(RefMut<'a, AppContext>);
91
92impl<'a> Drop for AppRefMut<'a> {
93 fn drop(&mut self) {
94 if option_env!("TRACK_THREAD_BORROWS").is_some() {
95 let thread_id = std::thread::current().id();
96 eprintln!("dropped {thread_id:?}");
97 }
98 }
99}
100
101/// A reference to a GPUI application, typically constructed in the `main` function of your app.
102/// You won't interact with this type much outside of initial configuration and startup.
103pub struct App(Rc<AppCell>);
104
105/// Represents an application before it is fully launched. Once your app is
106/// configured, you'll start the app with `App::run`.
107impl App {
108 /// Builds an app with the given asset source.
109 #[allow(clippy::new_without_default)]
110 pub fn new() -> Self {
111 #[cfg(any(test, feature = "test-support"))]
112 log::info!("GPUI was compiled in test mode");
113
114 Self(AppContext::new(
115 current_platform(),
116 Arc::new(()),
117 http::client(None),
118 ))
119 }
120
121 /// Assign
122 pub fn with_assets(self, asset_source: impl AssetSource) -> Self {
123 let mut context_lock = self.0.borrow_mut();
124 let asset_source = Arc::new(asset_source);
125 context_lock.asset_source = asset_source.clone();
126 context_lock.svg_renderer = SvgRenderer::new(asset_source);
127 drop(context_lock);
128 self
129 }
130
131 /// Start the application. The provided callback will be called once the
132 /// app is fully launched.
133 pub fn run<F>(self, on_finish_launching: F)
134 where
135 F: 'static + FnOnce(&mut AppContext),
136 {
137 let this = self.0.clone();
138 let platform = self.0.borrow().platform.clone();
139 platform.run(Box::new(move || {
140 let cx = &mut *this.borrow_mut();
141 on_finish_launching(cx);
142 }));
143 }
144
145 /// Register a handler to be invoked when the platform instructs the application
146 /// to open one or more URLs.
147 pub fn on_open_urls<F>(&self, mut callback: F) -> &Self
148 where
149 F: 'static + FnMut(Vec<String>),
150 {
151 self.0.borrow().platform.on_open_urls(Box::new(callback));
152 self
153 }
154
155 /// Invokes a handler when an already-running application is launched.
156 /// On macOS, this can occur when the application icon is double-clicked or the app is launched via the dock.
157 pub fn on_reopen<F>(&self, mut callback: F) -> &Self
158 where
159 F: 'static + FnMut(&mut AppContext),
160 {
161 let this = Rc::downgrade(&self.0);
162 self.0.borrow_mut().platform.on_reopen(Box::new(move || {
163 if let Some(app) = this.upgrade() {
164 callback(&mut app.borrow_mut());
165 }
166 }));
167 self
168 }
169
170 /// Returns a handle to the [`BackgroundExecutor`] associated with this app, which can be used to spawn futures in the background.
171 pub fn background_executor(&self) -> BackgroundExecutor {
172 self.0.borrow().background_executor.clone()
173 }
174
175 /// Returns a handle to the [`ForegroundExecutor`] associated with this app, which can be used to spawn futures in the foreground.
176 pub fn foreground_executor(&self) -> ForegroundExecutor {
177 self.0.borrow().foreground_executor.clone()
178 }
179
180 /// Returns a reference to the [`TextSystem`] associated with this app.
181 pub fn text_system(&self) -> Arc<TextSystem> {
182 self.0.borrow().text_system.clone()
183 }
184
185 /// Returns the file URL of the executable with the specified name in the application bundle
186 pub fn path_for_auxiliary_executable(&self, name: &str) -> Result<PathBuf> {
187 self.0.borrow().path_for_auxiliary_executable(name)
188 }
189}
190
191type Handler = Box<dyn FnMut(&mut AppContext) -> bool + 'static>;
192type Listener = Box<dyn FnMut(&dyn Any, &mut AppContext) -> bool + 'static>;
193type KeystrokeObserver = Box<dyn FnMut(&KeystrokeEvent, &mut WindowContext) + 'static>;
194type QuitHandler = Box<dyn FnOnce(&mut AppContext) -> LocalBoxFuture<'static, ()> + 'static>;
195type ReleaseListener = Box<dyn FnOnce(&mut dyn Any, &mut AppContext) + 'static>;
196type NewViewListener = Box<dyn FnMut(AnyView, &mut WindowContext) + 'static>;
197
198/// Contains the state of the full application, and passed as a reference to a variety of callbacks.
199/// Other contexts such as [ModelContext], [WindowContext], and [ViewContext] deref to this type, making it the most general context type.
200/// You need a reference to an `AppContext` to access the state of a [Model].
201pub struct AppContext {
202 pub(crate) this: Weak<AppCell>,
203 pub(crate) platform: Rc<dyn Platform>,
204 text_system: Arc<TextSystem>,
205 flushing_effects: bool,
206 pending_updates: usize,
207 pub(crate) actions: Rc<ActionRegistry>,
208 pub(crate) active_drag: Option<AnyDrag>,
209 pub(crate) background_executor: BackgroundExecutor,
210 pub(crate) foreground_executor: ForegroundExecutor,
211 pub(crate) loading_assets: FxHashMap<(TypeId, u64), Box<dyn Any>>,
212 pub(crate) asset_cache: AssetCache,
213 asset_source: Arc<dyn AssetSource>,
214 pub(crate) svg_renderer: SvgRenderer,
215 http_client: Arc<dyn HttpClient>,
216 pub(crate) globals_by_type: FxHashMap<TypeId, Box<dyn Any>>,
217 pub(crate) entities: EntityMap,
218 pub(crate) new_view_observers: SubscriberSet<TypeId, NewViewListener>,
219 pub(crate) windows: SlotMap<WindowId, Option<Window>>,
220 pub(crate) window_handles: FxHashMap<WindowId, AnyWindowHandle>,
221 pub(crate) keymap: Rc<RefCell<Keymap>>,
222 pub(crate) global_action_listeners:
223 FxHashMap<TypeId, Vec<Rc<dyn Fn(&dyn Any, DispatchPhase, &mut Self)>>>,
224 pending_effects: VecDeque<Effect>,
225 pub(crate) pending_notifications: FxHashSet<EntityId>,
226 pub(crate) pending_global_notifications: FxHashSet<TypeId>,
227 pub(crate) observers: SubscriberSet<EntityId, Handler>,
228 // TypeId is the type of the event that the listener callback expects
229 pub(crate) event_listeners: SubscriberSet<EntityId, (TypeId, Listener)>,
230 pub(crate) keystroke_observers: SubscriberSet<(), KeystrokeObserver>,
231 pub(crate) release_listeners: SubscriberSet<EntityId, ReleaseListener>,
232 pub(crate) global_observers: SubscriberSet<TypeId, Handler>,
233 pub(crate) quit_observers: SubscriberSet<(), QuitHandler>,
234 pub(crate) layout_id_buffer: Vec<LayoutId>, // We recycle this memory across layout requests.
235 pub(crate) propagate_event: bool,
236 pub(crate) prompt_builder: Option<PromptBuilder>,
237}
238
239impl AppContext {
240 #[allow(clippy::new_ret_no_self)]
241 pub(crate) fn new(
242 platform: Rc<dyn Platform>,
243 asset_source: Arc<dyn AssetSource>,
244 http_client: Arc<dyn HttpClient>,
245 ) -> Rc<AppCell> {
246 let executor = platform.background_executor();
247 let foreground_executor = platform.foreground_executor();
248 assert!(
249 executor.is_main_thread(),
250 "must construct App on main thread"
251 );
252
253 let text_system = Arc::new(TextSystem::new(platform.text_system()));
254 let entities = EntityMap::new();
255
256 let app = Rc::new_cyclic(|this| AppCell {
257 app: RefCell::new(AppContext {
258 this: this.clone(),
259 platform: platform.clone(),
260 text_system,
261 actions: Rc::new(ActionRegistry::default()),
262 flushing_effects: false,
263 pending_updates: 0,
264 active_drag: None,
265 background_executor: executor,
266 foreground_executor,
267 svg_renderer: SvgRenderer::new(asset_source.clone()),
268 asset_cache: AssetCache::new(),
269 loading_assets: Default::default(),
270 asset_source,
271 http_client,
272 globals_by_type: FxHashMap::default(),
273 entities,
274 new_view_observers: SubscriberSet::new(),
275 window_handles: FxHashMap::default(),
276 windows: SlotMap::with_key(),
277 keymap: Rc::new(RefCell::new(Keymap::default())),
278 global_action_listeners: FxHashMap::default(),
279 pending_effects: VecDeque::new(),
280 pending_notifications: FxHashSet::default(),
281 pending_global_notifications: FxHashSet::default(),
282 observers: SubscriberSet::new(),
283 event_listeners: SubscriberSet::new(),
284 release_listeners: SubscriberSet::new(),
285 keystroke_observers: SubscriberSet::new(),
286 global_observers: SubscriberSet::new(),
287 quit_observers: SubscriberSet::new(),
288 layout_id_buffer: Default::default(),
289 propagate_event: true,
290 prompt_builder: Some(PromptBuilder::Default),
291 }),
292 });
293
294 init_app_menus(platform.as_ref(), &mut app.borrow_mut());
295
296 platform.on_quit(Box::new({
297 let cx = app.clone();
298 move || {
299 cx.borrow_mut().shutdown();
300 }
301 }));
302
303 app
304 }
305
306 /// Quit the application gracefully. Handlers registered with [`ModelContext::on_app_quit`]
307 /// will be given 100ms to complete before exiting.
308 pub fn shutdown(&mut self) {
309 let mut futures = Vec::new();
310
311 for observer in self.quit_observers.remove(&()) {
312 futures.push(observer(self));
313 }
314
315 self.windows.clear();
316 self.window_handles.clear();
317 self.flush_effects();
318
319 let futures = futures::future::join_all(futures);
320 if self
321 .background_executor
322 .block_with_timeout(SHUTDOWN_TIMEOUT, futures)
323 .is_err()
324 {
325 log::error!("timed out waiting on app_will_quit");
326 }
327 }
328
329 /// Gracefully quit the application via the platform's standard routine.
330 pub fn quit(&mut self) {
331 self.platform.quit();
332 }
333
334 /// Schedules all windows in the application to be redrawn. This can be called
335 /// multiple times in an update cycle and still result in a single redraw.
336 pub fn refresh(&mut self) {
337 self.pending_effects.push_back(Effect::Refresh);
338 }
339
340 pub(crate) fn update<R>(&mut self, update: impl FnOnce(&mut Self) -> R) -> R {
341 self.pending_updates += 1;
342 let result = update(self);
343 if !self.flushing_effects && self.pending_updates == 1 {
344 self.flushing_effects = true;
345 self.flush_effects();
346 self.flushing_effects = false;
347 }
348 self.pending_updates -= 1;
349 result
350 }
351
352 /// Arrange a callback to be invoked when the given model or view calls `notify` on its respective context.
353 pub fn observe<W, E>(
354 &mut self,
355 entity: &E,
356 mut on_notify: impl FnMut(E, &mut AppContext) + 'static,
357 ) -> Subscription
358 where
359 W: 'static,
360 E: Entity<W>,
361 {
362 self.observe_internal(entity, move |e, cx| {
363 on_notify(e, cx);
364 true
365 })
366 }
367
368 pub(crate) fn new_observer(&mut self, key: EntityId, value: Handler) -> Subscription {
369 let (subscription, activate) = self.observers.insert(key, value);
370 self.defer(move |_| activate());
371 subscription
372 }
373 pub(crate) fn observe_internal<W, E>(
374 &mut self,
375 entity: &E,
376 mut on_notify: impl FnMut(E, &mut AppContext) -> bool + 'static,
377 ) -> Subscription
378 where
379 W: 'static,
380 E: Entity<W>,
381 {
382 let entity_id = entity.entity_id();
383 let handle = entity.downgrade();
384 self.new_observer(
385 entity_id,
386 Box::new(move |cx| {
387 if let Some(handle) = E::upgrade_from(&handle) {
388 on_notify(handle, cx)
389 } else {
390 false
391 }
392 }),
393 )
394 }
395
396 /// Arrange for the given callback to be invoked whenever the given model or view emits an event of a given type.
397 /// The callback is provided a handle to the emitting entity and a reference to the emitted event.
398 pub fn subscribe<T, E, Event>(
399 &mut self,
400 entity: &E,
401 mut on_event: impl FnMut(E, &Event, &mut AppContext) + 'static,
402 ) -> Subscription
403 where
404 T: 'static + EventEmitter<Event>,
405 E: Entity<T>,
406 Event: 'static,
407 {
408 self.subscribe_internal(entity, move |entity, event, cx| {
409 on_event(entity, event, cx);
410 true
411 })
412 }
413
414 pub(crate) fn new_subscription(
415 &mut self,
416 key: EntityId,
417 value: (TypeId, Listener),
418 ) -> Subscription {
419 let (subscription, activate) = self.event_listeners.insert(key, value);
420 self.defer(move |_| activate());
421 subscription
422 }
423 pub(crate) fn subscribe_internal<T, E, Evt>(
424 &mut self,
425 entity: &E,
426 mut on_event: impl FnMut(E, &Evt, &mut AppContext) -> bool + 'static,
427 ) -> Subscription
428 where
429 T: 'static + EventEmitter<Evt>,
430 E: Entity<T>,
431 Evt: 'static,
432 {
433 let entity_id = entity.entity_id();
434 let entity = entity.downgrade();
435 self.new_subscription(
436 entity_id,
437 (
438 TypeId::of::<Evt>(),
439 Box::new(move |event, cx| {
440 let event: &Evt = event.downcast_ref().expect("invalid event type");
441 if let Some(handle) = E::upgrade_from(&entity) {
442 on_event(handle, event, cx)
443 } else {
444 false
445 }
446 }),
447 ),
448 )
449 }
450
451 /// Returns handles to all open windows in the application.
452 /// Each handle could be downcast to a handle typed for the root view of that window.
453 /// To find all windows of a given type, you could filter on
454 pub fn windows(&self) -> Vec<AnyWindowHandle> {
455 self.windows
456 .keys()
457 .flat_map(|window_id| self.window_handles.get(&window_id).copied())
458 .collect()
459 }
460
461 /// Returns a handle to the window that is currently focused at the platform level, if one exists.
462 pub fn active_window(&self) -> Option<AnyWindowHandle> {
463 self.platform.active_window()
464 }
465
466 /// Opens a new window with the given option and the root view returned by the given function.
467 /// The function is invoked with a `WindowContext`, which can be used to interact with window-specific
468 /// functionality.
469 pub fn open_window<V: 'static + Render>(
470 &mut self,
471 options: crate::WindowOptions,
472 build_root_view: impl FnOnce(&mut WindowContext) -> View<V>,
473 ) -> anyhow::Result<WindowHandle<V>> {
474 self.update(|cx| {
475 let id = cx.windows.insert(None);
476 let handle = WindowHandle::new(id);
477 match Window::new(handle.into(), options, cx) {
478 Ok(mut window) => {
479 let root_view = build_root_view(&mut WindowContext::new(cx, &mut window));
480 window.root_view.replace(root_view.into());
481 WindowContext::new(cx, &mut window).defer(|cx| cx.appearance_changed());
482 cx.window_handles.insert(id, window.handle);
483 cx.windows.get_mut(id).unwrap().replace(window);
484 Ok(handle)
485 }
486 Err(e) => {
487 cx.windows.remove(id);
488 return Err(e);
489 }
490 }
491 })
492 }
493
494 /// Instructs the platform to activate the application by bringing it to the foreground.
495 pub fn activate(&self, ignoring_other_apps: bool) {
496 self.platform.activate(ignoring_other_apps);
497 }
498
499 /// Hide the application at the platform level.
500 pub fn hide(&self) {
501 self.platform.hide();
502 }
503
504 /// Hide other applications at the platform level.
505 pub fn hide_other_apps(&self) {
506 self.platform.hide_other_apps();
507 }
508
509 /// Unhide other applications at the platform level.
510 pub fn unhide_other_apps(&self) {
511 self.platform.unhide_other_apps();
512 }
513
514 /// Returns the list of currently active displays.
515 pub fn displays(&self) -> Vec<Rc<dyn PlatformDisplay>> {
516 self.platform.displays()
517 }
518
519 /// Returns the primary display that will be used for new windows.
520 pub fn primary_display(&self) -> Option<Rc<dyn PlatformDisplay>> {
521 self.platform.primary_display()
522 }
523
524 /// Returns the display with the given ID, if one exists.
525 pub fn find_display(&self, id: DisplayId) -> Option<Rc<dyn PlatformDisplay>> {
526 self.displays()
527 .iter()
528 .find(|display| display.id() == id)
529 .cloned()
530 }
531
532 /// Returns the appearance of the application's windows.
533 pub fn window_appearance(&self) -> WindowAppearance {
534 self.platform.window_appearance()
535 }
536
537 /// Writes data to the primary selection buffer.
538 /// Only available on Linux.
539 #[cfg(target_os = "linux")]
540 pub fn write_to_primary(&self, item: ClipboardItem) {
541 self.platform.write_to_primary(item)
542 }
543
544 /// Writes data to the platform clipboard.
545 pub fn write_to_clipboard(&self, item: ClipboardItem) {
546 self.platform.write_to_clipboard(item)
547 }
548
549 /// Reads data from the primary selection buffer.
550 /// Only available on Linux.
551 #[cfg(target_os = "linux")]
552 pub fn read_from_primary(&self) -> Option<ClipboardItem> {
553 self.platform.read_from_primary()
554 }
555
556 /// Reads data from the platform clipboard.
557 pub fn read_from_clipboard(&self) -> Option<ClipboardItem> {
558 self.platform.read_from_clipboard()
559 }
560
561 /// Writes credentials to the platform keychain.
562 pub fn write_credentials(
563 &self,
564 url: &str,
565 username: &str,
566 password: &[u8],
567 ) -> Task<Result<()>> {
568 self.platform.write_credentials(url, username, password)
569 }
570
571 /// Reads credentials from the platform keychain.
572 pub fn read_credentials(&self, url: &str) -> Task<Result<Option<(String, Vec<u8>)>>> {
573 self.platform.read_credentials(url)
574 }
575
576 /// Deletes credentials from the platform keychain.
577 pub fn delete_credentials(&self, url: &str) -> Task<Result<()>> {
578 self.platform.delete_credentials(url)
579 }
580
581 /// Directs the platform's default browser to open the given URL.
582 pub fn open_url(&self, url: &str) {
583 self.platform.open_url(url);
584 }
585
586 /// register_url_scheme requests that the given scheme (e.g. `zed` for `zed://` urls)
587 /// is opened by the current app.
588 /// On some platforms (e.g. macOS) you may be able to register URL schemes as part of app
589 /// distribution, but this method exists to let you register schemes at runtime.
590 pub fn register_url_scheme(&self, scheme: &str) -> Task<Result<()>> {
591 self.platform.register_url_scheme(scheme)
592 }
593
594 /// Returns the full pathname of the current app bundle.
595 /// If the app is not being run from a bundle, returns an error.
596 pub fn app_path(&self) -> Result<PathBuf> {
597 self.platform.app_path()
598 }
599
600 /// On Linux, returns the name of the compositor in use.
601 /// Is blank on other platforms.
602 pub fn compositor_name(&self) -> &'static str {
603 self.platform.compositor_name()
604 }
605
606 /// Returns the file URL of the executable with the specified name in the application bundle
607 pub fn path_for_auxiliary_executable(&self, name: &str) -> Result<PathBuf> {
608 self.platform.path_for_auxiliary_executable(name)
609 }
610
611 /// Displays a platform modal for selecting paths.
612 /// When one or more paths are selected, they'll be relayed asynchronously via the returned oneshot channel.
613 /// If cancelled, a `None` will be relayed instead.
614 /// May return an error on Linux if the file picker couldn't be opened.
615 pub fn prompt_for_paths(
616 &self,
617 options: PathPromptOptions,
618 ) -> oneshot::Receiver<Result<Option<Vec<PathBuf>>>> {
619 self.platform.prompt_for_paths(options)
620 }
621
622 /// Displays a platform modal for selecting a new path where a file can be saved.
623 /// The provided directory will be used to set the initial location.
624 /// When a path is selected, it is relayed asynchronously via the returned oneshot channel.
625 /// If cancelled, a `None` will be relayed instead.
626 /// May return an error on Linux if the file picker couldn't be opened.
627 pub fn prompt_for_new_path(
628 &self,
629 directory: &Path,
630 ) -> oneshot::Receiver<Result<Option<PathBuf>>> {
631 self.platform.prompt_for_new_path(directory)
632 }
633
634 /// Reveals the specified path at the platform level, such as in Finder on macOS.
635 pub fn reveal_path(&self, path: &Path) {
636 self.platform.reveal_path(path)
637 }
638
639 /// Returns whether the user has configured scrollbars to auto-hide at the platform level.
640 pub fn should_auto_hide_scrollbars(&self) -> bool {
641 self.platform.should_auto_hide_scrollbars()
642 }
643
644 /// Restart the application.
645 pub fn restart(&self, binary_path: Option<PathBuf>) {
646 self.platform.restart(binary_path)
647 }
648
649 /// Updates the http client assigned to GPUI
650 pub fn update_http_client(&mut self, new_client: Arc<dyn HttpClient>) {
651 self.http_client = new_client;
652 }
653
654 /// Returns the http client assigned to GPUI
655 pub fn http_client(&self) -> Arc<dyn HttpClient> {
656 self.http_client.clone()
657 }
658
659 /// Returns the SVG renderer GPUI uses
660 pub(crate) fn svg_renderer(&self) -> SvgRenderer {
661 self.svg_renderer.clone()
662 }
663
664 pub(crate) fn push_effect(&mut self, effect: Effect) {
665 match &effect {
666 Effect::Notify { emitter } => {
667 if !self.pending_notifications.insert(*emitter) {
668 return;
669 }
670 }
671 Effect::NotifyGlobalObservers { global_type } => {
672 if !self.pending_global_notifications.insert(*global_type) {
673 return;
674 }
675 }
676 _ => {}
677 };
678
679 self.pending_effects.push_back(effect);
680 }
681
682 /// Called at the end of [`AppContext::update`] to complete any side effects
683 /// such as notifying observers, emitting events, etc. Effects can themselves
684 /// cause effects, so we continue looping until all effects are processed.
685 fn flush_effects(&mut self) {
686 loop {
687 self.release_dropped_entities();
688 self.release_dropped_focus_handles();
689
690 if let Some(effect) = self.pending_effects.pop_front() {
691 match effect {
692 Effect::Notify { emitter } => {
693 self.apply_notify_effect(emitter);
694 }
695
696 Effect::Emit {
697 emitter,
698 event_type,
699 event,
700 } => self.apply_emit_effect(emitter, event_type, event),
701
702 Effect::Refresh => {
703 self.apply_refresh_effect();
704 }
705
706 Effect::NotifyGlobalObservers { global_type } => {
707 self.apply_notify_global_observers_effect(global_type);
708 }
709
710 Effect::Defer { callback } => {
711 self.apply_defer_effect(callback);
712 }
713 }
714 } else {
715 #[cfg(any(test, feature = "test-support"))]
716 for window in self
717 .windows
718 .values()
719 .filter_map(|window| {
720 let window = window.as_ref()?;
721 window.dirty.get().then_some(window.handle)
722 })
723 .collect::<Vec<_>>()
724 {
725 self.update_window(window, |_, cx| cx.draw()).unwrap();
726 }
727
728 if self.pending_effects.is_empty() {
729 break;
730 }
731 }
732 }
733 }
734
735 /// Repeatedly called during `flush_effects` to release any entities whose
736 /// reference count has become zero. We invoke any release observers before dropping
737 /// each entity.
738 fn release_dropped_entities(&mut self) {
739 loop {
740 let dropped = self.entities.take_dropped();
741 if dropped.is_empty() {
742 break;
743 }
744
745 for (entity_id, mut entity) in dropped {
746 self.observers.remove(&entity_id);
747 self.event_listeners.remove(&entity_id);
748 for release_callback in self.release_listeners.remove(&entity_id) {
749 release_callback(entity.as_mut(), self);
750 }
751 }
752 }
753 }
754
755 /// Repeatedly called during `flush_effects` to handle a focused handle being dropped.
756 fn release_dropped_focus_handles(&mut self) {
757 for window_handle in self.windows() {
758 window_handle
759 .update(self, |_, cx| {
760 let mut blur_window = false;
761 let focus = cx.window.focus;
762 cx.window.focus_handles.write().retain(|handle_id, count| {
763 if count.load(SeqCst) == 0 {
764 if focus == Some(handle_id) {
765 blur_window = true;
766 }
767 false
768 } else {
769 true
770 }
771 });
772
773 if blur_window {
774 cx.blur();
775 }
776 })
777 .unwrap();
778 }
779 }
780
781 fn apply_notify_effect(&mut self, emitter: EntityId) {
782 self.pending_notifications.remove(&emitter);
783
784 self.observers
785 .clone()
786 .retain(&emitter, |handler| handler(self));
787 }
788
789 fn apply_emit_effect(&mut self, emitter: EntityId, event_type: TypeId, event: Box<dyn Any>) {
790 self.event_listeners
791 .clone()
792 .retain(&emitter, |(stored_type, handler)| {
793 if *stored_type == event_type {
794 handler(event.as_ref(), self)
795 } else {
796 true
797 }
798 });
799 }
800
801 fn apply_refresh_effect(&mut self) {
802 for window in self.windows.values_mut() {
803 if let Some(window) = window.as_mut() {
804 window.dirty.set(true);
805 }
806 }
807 }
808
809 fn apply_notify_global_observers_effect(&mut self, type_id: TypeId) {
810 self.pending_global_notifications.remove(&type_id);
811 self.global_observers
812 .clone()
813 .retain(&type_id, |observer| observer(self));
814 }
815
816 fn apply_defer_effect(&mut self, callback: Box<dyn FnOnce(&mut Self) + 'static>) {
817 callback(self);
818 }
819
820 /// Creates an `AsyncAppContext`, which can be cloned and has a static lifetime
821 /// so it can be held across `await` points.
822 pub fn to_async(&self) -> AsyncAppContext {
823 AsyncAppContext {
824 app: self.this.clone(),
825 background_executor: self.background_executor.clone(),
826 foreground_executor: self.foreground_executor.clone(),
827 }
828 }
829
830 /// Obtains a reference to the executor, which can be used to spawn futures.
831 pub fn background_executor(&self) -> &BackgroundExecutor {
832 &self.background_executor
833 }
834
835 /// Obtains a reference to the executor, which can be used to spawn futures.
836 pub fn foreground_executor(&self) -> &ForegroundExecutor {
837 &self.foreground_executor
838 }
839
840 /// Spawns the future returned by the given function on the thread pool. The closure will be invoked
841 /// with [AsyncAppContext], which allows the application state to be accessed across await points.
842 pub fn spawn<Fut, R>(&self, f: impl FnOnce(AsyncAppContext) -> Fut) -> Task<R>
843 where
844 Fut: Future<Output = R> + 'static,
845 R: 'static,
846 {
847 self.foreground_executor.spawn(f(self.to_async()))
848 }
849
850 /// Schedules the given function to be run at the end of the current effect cycle, allowing entities
851 /// that are currently on the stack to be returned to the app.
852 pub fn defer(&mut self, f: impl FnOnce(&mut AppContext) + 'static) {
853 self.push_effect(Effect::Defer {
854 callback: Box::new(f),
855 });
856 }
857
858 /// Accessor for the application's asset source, which is provided when constructing the `App`.
859 pub fn asset_source(&self) -> &Arc<dyn AssetSource> {
860 &self.asset_source
861 }
862
863 /// Accessor for the text system.
864 pub fn text_system(&self) -> &Arc<TextSystem> {
865 &self.text_system
866 }
867
868 /// Check whether a global of the given type has been assigned.
869 pub fn has_global<G: Global>(&self) -> bool {
870 self.globals_by_type.contains_key(&TypeId::of::<G>())
871 }
872
873 /// Access the global of the given type. Panics if a global for that type has not been assigned.
874 #[track_caller]
875 pub fn global<G: Global>(&self) -> &G {
876 self.globals_by_type
877 .get(&TypeId::of::<G>())
878 .map(|any_state| any_state.downcast_ref::<G>().unwrap())
879 .ok_or_else(|| anyhow!("no state of type {} exists", type_name::<G>()))
880 .unwrap()
881 }
882
883 /// Access the global of the given type if a value has been assigned.
884 pub fn try_global<G: Global>(&self) -> Option<&G> {
885 self.globals_by_type
886 .get(&TypeId::of::<G>())
887 .map(|any_state| any_state.downcast_ref::<G>().unwrap())
888 }
889
890 /// Access the global of the given type mutably. Panics if a global for that type has not been assigned.
891 #[track_caller]
892 pub fn global_mut<G: Global>(&mut self) -> &mut G {
893 let global_type = TypeId::of::<G>();
894 self.push_effect(Effect::NotifyGlobalObservers { global_type });
895 self.globals_by_type
896 .get_mut(&global_type)
897 .and_then(|any_state| any_state.downcast_mut::<G>())
898 .ok_or_else(|| anyhow!("no state of type {} exists", type_name::<G>()))
899 .unwrap()
900 }
901
902 /// Access the global of the given type mutably. A default value is assigned if a global of this type has not
903 /// yet been assigned.
904 pub fn default_global<G: Global + Default>(&mut self) -> &mut G {
905 let global_type = TypeId::of::<G>();
906 self.push_effect(Effect::NotifyGlobalObservers { global_type });
907 self.globals_by_type
908 .entry(global_type)
909 .or_insert_with(|| Box::<G>::default())
910 .downcast_mut::<G>()
911 .unwrap()
912 }
913
914 /// Sets the value of the global of the given type.
915 pub fn set_global<G: Global>(&mut self, global: G) {
916 let global_type = TypeId::of::<G>();
917 self.push_effect(Effect::NotifyGlobalObservers { global_type });
918 self.globals_by_type.insert(global_type, Box::new(global));
919 }
920
921 /// Clear all stored globals. Does not notify global observers.
922 #[cfg(any(test, feature = "test-support"))]
923 pub fn clear_globals(&mut self) {
924 self.globals_by_type.drain();
925 }
926
927 /// Remove the global of the given type from the app context. Does not notify global observers.
928 pub fn remove_global<G: Global>(&mut self) -> G {
929 let global_type = TypeId::of::<G>();
930 self.push_effect(Effect::NotifyGlobalObservers { global_type });
931 *self
932 .globals_by_type
933 .remove(&global_type)
934 .unwrap_or_else(|| panic!("no global added for {}", std::any::type_name::<G>()))
935 .downcast()
936 .unwrap()
937 }
938
939 /// Register a callback to be invoked when a global of the given type is updated.
940 pub fn observe_global<G: Global>(
941 &mut self,
942 mut f: impl FnMut(&mut Self) + 'static,
943 ) -> Subscription {
944 let (subscription, activate) = self.global_observers.insert(
945 TypeId::of::<G>(),
946 Box::new(move |cx| {
947 f(cx);
948 true
949 }),
950 );
951 self.defer(move |_| activate());
952 subscription
953 }
954
955 /// Move the global of the given type to the stack.
956 pub(crate) fn lease_global<G: Global>(&mut self) -> GlobalLease<G> {
957 GlobalLease::new(
958 self.globals_by_type
959 .remove(&TypeId::of::<G>())
960 .ok_or_else(|| anyhow!("no global registered of type {}", type_name::<G>()))
961 .unwrap(),
962 )
963 }
964
965 /// Restore the global of the given type after it is moved to the stack.
966 pub(crate) fn end_global_lease<G: Global>(&mut self, lease: GlobalLease<G>) {
967 let global_type = TypeId::of::<G>();
968 self.push_effect(Effect::NotifyGlobalObservers { global_type });
969 self.globals_by_type.insert(global_type, lease.global);
970 }
971
972 pub(crate) fn new_view_observer(
973 &mut self,
974 key: TypeId,
975 value: NewViewListener,
976 ) -> Subscription {
977 let (subscription, activate) = self.new_view_observers.insert(key, value);
978 activate();
979 subscription
980 }
981 /// Arrange for the given function to be invoked whenever a view of the specified type is created.
982 /// The function will be passed a mutable reference to the view along with an appropriate context.
983 pub fn observe_new_views<V: 'static>(
984 &mut self,
985 on_new: impl 'static + Fn(&mut V, &mut ViewContext<V>),
986 ) -> Subscription {
987 self.new_view_observer(
988 TypeId::of::<V>(),
989 Box::new(move |any_view: AnyView, cx: &mut WindowContext| {
990 any_view
991 .downcast::<V>()
992 .unwrap()
993 .update(cx, |view_state, cx| {
994 on_new(view_state, cx);
995 })
996 }),
997 )
998 }
999
1000 /// Observe the release of a model or view. The callback is invoked after the model or view
1001 /// has no more strong references but before it has been dropped.
1002 pub fn observe_release<E, T>(
1003 &mut self,
1004 handle: &E,
1005 on_release: impl FnOnce(&mut T, &mut AppContext) + 'static,
1006 ) -> Subscription
1007 where
1008 E: Entity<T>,
1009 T: 'static,
1010 {
1011 let (subscription, activate) = self.release_listeners.insert(
1012 handle.entity_id(),
1013 Box::new(move |entity, cx| {
1014 let entity = entity.downcast_mut().expect("invalid entity type");
1015 on_release(entity, cx)
1016 }),
1017 );
1018 activate();
1019 subscription
1020 }
1021
1022 /// Register a callback to be invoked when a keystroke is received by the application
1023 /// in any window. Note that this fires after all other action and event mechanisms have resolved
1024 /// and that this API will not be invoked if the event's propagation is stopped.
1025 pub fn observe_keystrokes(
1026 &mut self,
1027 f: impl FnMut(&KeystrokeEvent, &mut WindowContext) + 'static,
1028 ) -> Subscription {
1029 fn inner(
1030 keystroke_observers: &mut SubscriberSet<(), KeystrokeObserver>,
1031 handler: KeystrokeObserver,
1032 ) -> Subscription {
1033 let (subscription, activate) = keystroke_observers.insert((), handler);
1034 activate();
1035 subscription
1036 }
1037 inner(&mut self.keystroke_observers, Box::new(f))
1038 }
1039
1040 /// Register key bindings.
1041 pub fn bind_keys(&mut self, bindings: impl IntoIterator<Item = KeyBinding>) {
1042 self.keymap.borrow_mut().add_bindings(bindings);
1043 self.pending_effects.push_back(Effect::Refresh);
1044 }
1045
1046 /// Clear all key bindings in the app.
1047 pub fn clear_key_bindings(&mut self) {
1048 self.keymap.borrow_mut().clear();
1049 self.pending_effects.push_back(Effect::Refresh);
1050 }
1051
1052 /// Register a global listener for actions invoked via the keyboard.
1053 pub fn on_action<A: Action>(&mut self, listener: impl Fn(&A, &mut Self) + 'static) {
1054 self.global_action_listeners
1055 .entry(TypeId::of::<A>())
1056 .or_default()
1057 .push(Rc::new(move |action, phase, cx| {
1058 if phase == DispatchPhase::Bubble {
1059 let action = action.downcast_ref().unwrap();
1060 listener(action, cx)
1061 }
1062 }));
1063 }
1064
1065 /// Event handlers propagate events by default. Call this method to stop dispatching to
1066 /// event handlers with a lower z-index (mouse) or higher in the tree (keyboard). This is
1067 /// the opposite of [`Self::propagate`]. It's also possible to cancel a call to [`Self::propagate`] by
1068 /// calling this method before effects are flushed.
1069 pub fn stop_propagation(&mut self) {
1070 self.propagate_event = false;
1071 }
1072
1073 /// Action handlers stop propagation by default during the bubble phase of action dispatch
1074 /// dispatching to action handlers higher in the element tree. This is the opposite of
1075 /// [`Self::stop_propagation`]. It's also possible to cancel a call to [`Self::stop_propagation`] by calling
1076 /// this method before effects are flushed.
1077 pub fn propagate(&mut self) {
1078 self.propagate_event = true;
1079 }
1080
1081 /// Build an action from some arbitrary data, typically a keymap entry.
1082 pub fn build_action(
1083 &self,
1084 name: &str,
1085 data: Option<serde_json::Value>,
1086 ) -> Result<Box<dyn Action>> {
1087 self.actions.build_action(name, data)
1088 }
1089
1090 /// Get a list of all action names that have been registered.
1091 /// in the application. Note that registration only allows for
1092 /// actions to be built dynamically, and is unrelated to binding
1093 /// actions in the element tree.
1094 pub fn all_action_names(&self) -> &[SharedString] {
1095 self.actions.all_action_names()
1096 }
1097
1098 /// Register a callback to be invoked when the application is about to quit.
1099 /// It is not possible to cancel the quit event at this point.
1100 pub fn on_app_quit<Fut>(
1101 &mut self,
1102 mut on_quit: impl FnMut(&mut AppContext) -> Fut + 'static,
1103 ) -> Subscription
1104 where
1105 Fut: 'static + Future<Output = ()>,
1106 {
1107 let (subscription, activate) = self.quit_observers.insert(
1108 (),
1109 Box::new(move |cx| {
1110 let future = on_quit(cx);
1111 future.boxed_local()
1112 }),
1113 );
1114 activate();
1115 subscription
1116 }
1117
1118 pub(crate) fn clear_pending_keystrokes(&mut self) {
1119 for window in self.windows() {
1120 window
1121 .update(self, |_, cx| {
1122 cx.window
1123 .rendered_frame
1124 .dispatch_tree
1125 .clear_pending_keystrokes();
1126 cx.window
1127 .next_frame
1128 .dispatch_tree
1129 .clear_pending_keystrokes();
1130 })
1131 .ok();
1132 }
1133 }
1134
1135 /// Checks if the given action is bound in the current context, as defined by the app's current focus,
1136 /// the bindings in the element tree, and any global action listeners.
1137 pub fn is_action_available(&mut self, action: &dyn Action) -> bool {
1138 let mut action_available = false;
1139 if let Some(window) = self.active_window() {
1140 if let Ok(window_action_available) =
1141 window.update(self, |_, cx| cx.is_action_available(action))
1142 {
1143 action_available = window_action_available;
1144 }
1145 }
1146
1147 action_available
1148 || self
1149 .global_action_listeners
1150 .contains_key(&action.as_any().type_id())
1151 }
1152
1153 /// Sets the menu bar for this application. This will replace any existing menu bar.
1154 pub fn set_menus(&mut self, menus: Vec<Menu>) {
1155 self.platform.set_menus(menus, &self.keymap.borrow());
1156 }
1157
1158 /// Gets the menu bar for this application.
1159 pub fn get_menus(&self) -> Option<Vec<OwnedMenu>> {
1160 self.platform.get_menus()
1161 }
1162
1163 /// Sets the right click menu for the app icon in the dock
1164 pub fn set_dock_menu(&mut self, menus: Vec<MenuItem>) {
1165 self.platform.set_dock_menu(menus, &self.keymap.borrow());
1166 }
1167
1168 /// Adds given path to the bottom of the list of recent paths for the application.
1169 /// The list is usually shown on the application icon's context menu in the dock,
1170 /// and allows to open the recent files via that context menu.
1171 /// If the path is already in the list, it will be moved to the bottom of the list.
1172 pub fn add_recent_document(&mut self, path: &Path) {
1173 self.platform.add_recent_document(path);
1174 }
1175
1176 /// Dispatch an action to the currently active window or global action handler
1177 /// See [action::Action] for more information on how actions work
1178 pub fn dispatch_action(&mut self, action: &dyn Action) {
1179 if let Some(active_window) = self.active_window() {
1180 active_window
1181 .update(self, |_, cx| cx.dispatch_action(action.boxed_clone()))
1182 .log_err();
1183 } else {
1184 self.dispatch_global_action(action);
1185 }
1186 }
1187
1188 fn dispatch_global_action(&mut self, action: &dyn Action) {
1189 self.propagate_event = true;
1190
1191 if let Some(mut global_listeners) = self
1192 .global_action_listeners
1193 .remove(&action.as_any().type_id())
1194 {
1195 for listener in &global_listeners {
1196 listener(action.as_any(), DispatchPhase::Capture, self);
1197 if !self.propagate_event {
1198 break;
1199 }
1200 }
1201
1202 global_listeners.extend(
1203 self.global_action_listeners
1204 .remove(&action.as_any().type_id())
1205 .unwrap_or_default(),
1206 );
1207
1208 self.global_action_listeners
1209 .insert(action.as_any().type_id(), global_listeners);
1210 }
1211
1212 if self.propagate_event {
1213 if let Some(mut global_listeners) = self
1214 .global_action_listeners
1215 .remove(&action.as_any().type_id())
1216 {
1217 for listener in global_listeners.iter().rev() {
1218 listener(action.as_any(), DispatchPhase::Bubble, self);
1219 if !self.propagate_event {
1220 break;
1221 }
1222 }
1223
1224 global_listeners.extend(
1225 self.global_action_listeners
1226 .remove(&action.as_any().type_id())
1227 .unwrap_or_default(),
1228 );
1229
1230 self.global_action_listeners
1231 .insert(action.as_any().type_id(), global_listeners);
1232 }
1233 }
1234 }
1235
1236 /// Is there currently something being dragged?
1237 pub fn has_active_drag(&self) -> bool {
1238 self.active_drag.is_some()
1239 }
1240
1241 /// Set the prompt renderer for GPUI. This will replace the default or platform specific
1242 /// prompts with this custom implementation.
1243 pub fn set_prompt_builder(
1244 &mut self,
1245 renderer: impl Fn(
1246 PromptLevel,
1247 &str,
1248 Option<&str>,
1249 &[&str],
1250 PromptHandle,
1251 &mut WindowContext,
1252 ) -> RenderablePromptHandle
1253 + 'static,
1254 ) {
1255 self.prompt_builder = Some(PromptBuilder::Custom(Box::new(renderer)))
1256 }
1257}
1258
1259impl Context for AppContext {
1260 type Result<T> = T;
1261
1262 /// Build an entity that is owned by the application. The given function will be invoked with
1263 /// a `ModelContext` and must return an object representing the entity. A `Model` handle will be returned,
1264 /// which can be used to access the entity in a context.
1265 fn new_model<T: 'static>(
1266 &mut self,
1267 build_model: impl FnOnce(&mut ModelContext<'_, T>) -> T,
1268 ) -> Model<T> {
1269 self.update(|cx| {
1270 let slot = cx.entities.reserve();
1271 let entity = build_model(&mut ModelContext::new(cx, slot.downgrade()));
1272 cx.entities.insert(slot, entity)
1273 })
1274 }
1275
1276 fn reserve_model<T: 'static>(&mut self) -> Self::Result<Reservation<T>> {
1277 Reservation(self.entities.reserve())
1278 }
1279
1280 fn insert_model<T: 'static>(
1281 &mut self,
1282 reservation: Reservation<T>,
1283 build_model: impl FnOnce(&mut ModelContext<'_, T>) -> T,
1284 ) -> Self::Result<Model<T>> {
1285 self.update(|cx| {
1286 let slot = reservation.0;
1287 let entity = build_model(&mut ModelContext::new(cx, slot.downgrade()));
1288 cx.entities.insert(slot, entity)
1289 })
1290 }
1291
1292 /// Updates the entity referenced by the given model. The function is passed a mutable reference to the
1293 /// entity along with a `ModelContext` for the entity.
1294 fn update_model<T: 'static, R>(
1295 &mut self,
1296 model: &Model<T>,
1297 update: impl FnOnce(&mut T, &mut ModelContext<'_, T>) -> R,
1298 ) -> R {
1299 self.update(|cx| {
1300 let mut entity = cx.entities.lease(model);
1301 let result = update(&mut entity, &mut ModelContext::new(cx, model.downgrade()));
1302 cx.entities.end_lease(entity);
1303 result
1304 })
1305 }
1306
1307 fn read_model<T, R>(
1308 &self,
1309 handle: &Model<T>,
1310 read: impl FnOnce(&T, &AppContext) -> R,
1311 ) -> Self::Result<R>
1312 where
1313 T: 'static,
1314 {
1315 let entity = self.entities.read(handle);
1316 read(entity, self)
1317 }
1318
1319 fn update_window<T, F>(&mut self, handle: AnyWindowHandle, update: F) -> Result<T>
1320 where
1321 F: FnOnce(AnyView, &mut WindowContext<'_>) -> T,
1322 {
1323 self.update(|cx| {
1324 let mut window = cx
1325 .windows
1326 .get_mut(handle.id)
1327 .ok_or_else(|| anyhow!("window not found"))?
1328 .take()
1329 .ok_or_else(|| anyhow!("window not found"))?;
1330
1331 let root_view = window.root_view.clone().unwrap();
1332 let result = update(root_view, &mut WindowContext::new(cx, &mut window));
1333
1334 if window.removed {
1335 cx.window_handles.remove(&handle.id);
1336 cx.windows.remove(handle.id);
1337 } else {
1338 cx.windows
1339 .get_mut(handle.id)
1340 .ok_or_else(|| anyhow!("window not found"))?
1341 .replace(window);
1342 }
1343
1344 Ok(result)
1345 })
1346 }
1347
1348 fn read_window<T, R>(
1349 &self,
1350 window: &WindowHandle<T>,
1351 read: impl FnOnce(View<T>, &AppContext) -> R,
1352 ) -> Result<R>
1353 where
1354 T: 'static,
1355 {
1356 let window = self
1357 .windows
1358 .get(window.id)
1359 .ok_or_else(|| anyhow!("window not found"))?
1360 .as_ref()
1361 .unwrap();
1362
1363 let root_view = window.root_view.clone().unwrap();
1364 let view = root_view
1365 .downcast::<T>()
1366 .map_err(|_| anyhow!("root view's type has changed"))?;
1367
1368 Ok(read(view, self))
1369 }
1370}
1371
1372/// These effects are processed at the end of each application update cycle.
1373pub(crate) enum Effect {
1374 Notify {
1375 emitter: EntityId,
1376 },
1377 Emit {
1378 emitter: EntityId,
1379 event_type: TypeId,
1380 event: Box<dyn Any>,
1381 },
1382 Refresh,
1383 NotifyGlobalObservers {
1384 global_type: TypeId,
1385 },
1386 Defer {
1387 callback: Box<dyn FnOnce(&mut AppContext) + 'static>,
1388 },
1389}
1390
1391/// Wraps a global variable value during `update_global` while the value has been moved to the stack.
1392pub(crate) struct GlobalLease<G: Global> {
1393 global: Box<dyn Any>,
1394 global_type: PhantomData<G>,
1395}
1396
1397impl<G: Global> GlobalLease<G> {
1398 fn new(global: Box<dyn Any>) -> Self {
1399 GlobalLease {
1400 global,
1401 global_type: PhantomData,
1402 }
1403 }
1404}
1405
1406impl<G: Global> Deref for GlobalLease<G> {
1407 type Target = G;
1408
1409 fn deref(&self) -> &Self::Target {
1410 self.global.downcast_ref().unwrap()
1411 }
1412}
1413
1414impl<G: Global> DerefMut for GlobalLease<G> {
1415 fn deref_mut(&mut self) -> &mut Self::Target {
1416 self.global.downcast_mut().unwrap()
1417 }
1418}
1419
1420/// Contains state associated with an active drag operation, started by dragging an element
1421/// within the window or by dragging into the app from the underlying platform.
1422pub struct AnyDrag {
1423 /// The view used to render this drag
1424 pub view: AnyView,
1425
1426 /// The value of the dragged item, to be dropped
1427 pub value: Box<dyn Any>,
1428
1429 /// This is used to render the dragged item in the same place
1430 /// on the original element that the drag was initiated
1431 pub cursor_offset: Point<Pixels>,
1432}
1433
1434/// Contains state associated with a tooltip. You'll only need this struct if you're implementing
1435/// tooltip behavior on a custom element. Otherwise, use [Div::tooltip].
1436#[derive(Clone)]
1437pub struct AnyTooltip {
1438 /// The view used to display the tooltip
1439 pub view: AnyView,
1440
1441 /// The absolute position of the mouse when the tooltip was deployed.
1442 pub mouse_position: Point<Pixels>,
1443}
1444
1445/// A keystroke event, and potentially the associated action
1446#[derive(Debug)]
1447pub struct KeystrokeEvent {
1448 /// The keystroke that occurred
1449 pub keystroke: Keystroke,
1450
1451 /// The action that was resolved for the keystroke, if any
1452 pub action: Option<Box<dyn Action>>,
1453}