Checkpoint

This commit is contained in:
Antonio Scandurra 2023-09-25 11:47:37 -06:00
parent 45540a00ee
commit a1e080d495
7 changed files with 212 additions and 83 deletions

View file

@ -1,11 +1,13 @@
use crate::{ use crate::{
current_platform, Context, LayoutId, MainThreadOnly, Platform, Reference, RootView, TextSystem, current_platform, AnyWindowHandle, Context, LayoutId, MainThreadOnly, Platform, Reference,
Window, WindowContext, WindowHandle, WindowId, RootView, TextSystem, Window, WindowContext, WindowHandle, WindowId,
}; };
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use collections::{HashMap, VecDeque};
use futures::{future, Future}; use futures::{future, Future};
use parking_lot::Mutex; use parking_lot::Mutex;
use slotmap::SlotMap; use slotmap::SlotMap;
use smallvec::SmallVec;
use std::{ use std::{
any::Any, any::Any,
marker::PhantomData, marker::PhantomData,
@ -38,6 +40,9 @@ impl App {
unit_entity_id, unit_entity_id,
entities, entities,
windows: SlotMap::with_key(), windows: SlotMap::with_key(),
pending_updates: 0,
pending_effects: Default::default(),
observers: Default::default(),
layout_id_buffer: Default::default(), layout_id_buffer: Default::default(),
}) })
})) }))
@ -56,6 +61,8 @@ impl App {
} }
} }
type Handlers = SmallVec<[Arc<dyn Fn(&mut AppContext) -> bool + Send + Sync + 'static>; 2]>;
pub struct AppContext { pub struct AppContext {
this: Weak<Mutex<AppContext>>, this: Weak<Mutex<AppContext>>,
platform: MainThreadOnly<dyn Platform>, platform: MainThreadOnly<dyn Platform>,
@ -63,6 +70,9 @@ pub struct AppContext {
pub(crate) unit_entity_id: EntityId, pub(crate) unit_entity_id: EntityId,
pub(crate) entities: SlotMap<EntityId, Option<Box<dyn Any + Send>>>, pub(crate) entities: SlotMap<EntityId, Option<Box<dyn Any + Send>>>,
pub(crate) windows: SlotMap<WindowId, Option<Window>>, pub(crate) windows: SlotMap<WindowId, Option<Window>>,
pending_updates: usize,
pub(crate) pending_effects: VecDeque<Effect>,
pub(crate) observers: HashMap<EntityId, Handlers>,
// We recycle this memory across layout requests. // We recycle this memory across layout requests.
pub(crate) layout_id_buffer: Vec<LayoutId>, pub(crate) layout_id_buffer: Vec<LayoutId>,
} }
@ -105,31 +115,60 @@ impl AppContext {
pub(crate) fn update_window<R>( pub(crate) fn update_window<R>(
&mut self, &mut self,
window_id: WindowId, handle: AnyWindowHandle,
update: impl FnOnce(&mut WindowContext) -> R, update: impl FnOnce(&mut WindowContext) -> R,
) -> Result<R> { ) -> Result<R> {
let mut window = self let mut window = self
.windows .windows
.get_mut(window_id) .get_mut(handle.id)
.ok_or_else(|| anyhow!("window not found"))? .ok_or_else(|| anyhow!("window not found"))?
.take() .take()
.unwrap(); .unwrap();
let result = update(&mut WindowContext::mutable(self, &mut window)); let result = update(&mut WindowContext::mutable(self, &mut window));
window.dirty = true;
self.windows self.windows
.get_mut(window_id) .get_mut(handle.id)
.ok_or_else(|| anyhow!("window not found"))? .ok_or_else(|| anyhow!("window not found"))?
.replace(window); .replace(window);
Ok(result) Ok(result)
} }
fn update<R>(&mut self, update: impl FnOnce(&mut Self) -> R) -> R {
self.pending_updates += 1;
let result = update(self);
self.pending_updates -= 1;
if self.pending_updates == 0 {
self.flush_effects();
}
result
}
fn flush_effects(&mut self) {
while let Some(effect) = self.pending_effects.pop_front() {
match effect {
Effect::Notify(entity_id) => self.apply_notify_effect(entity_id),
}
}
}
fn apply_notify_effect(&mut self, updated_entity: EntityId) {
if let Some(mut handlers) = self.observers.remove(&updated_entity) {
handlers.retain(|handler| handler(self));
if let Some(new_handlers) = self.observers.remove(&updated_entity) {
handlers.extend(new_handlers);
}
self.observers.insert(updated_entity, handlers);
}
}
} }
impl Context for AppContext { impl Context for AppContext {
type EntityContext<'a, 'w, T: Send + 'static> = ModelContext<'a, T>; type EntityContext<'a, 'w, T: Send + Sync + 'static> = ModelContext<'a, T>;
fn entity<T: Send + 'static>( fn entity<T: Send + Sync + 'static>(
&mut self, &mut self,
build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T, build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T,
) -> Handle<T> { ) -> Handle<T> {
@ -140,7 +179,7 @@ impl Context for AppContext {
Handle::new(id) Handle::new(id)
} }
fn update_entity<T: Send + 'static, R>( fn update_entity<T: Send + Sync + 'static, R>(
&mut self, &mut self,
handle: &Handle<T>, handle: &Handle<T>,
update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R, update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R,
@ -166,7 +205,7 @@ pub struct ModelContext<'a, T> {
entity_id: EntityId, entity_id: EntityId,
} }
impl<'a, T: 'static> ModelContext<'a, T> { impl<'a, T: Send + Sync + 'static> ModelContext<'a, T> {
pub(crate) fn mutable(app: &'a mut AppContext, entity_id: EntityId) -> Self { pub(crate) fn mutable(app: &'a mut AppContext, entity_id: EntityId) -> Self {
Self { Self {
app: Reference::Mutable(app), app: Reference::Mutable(app),
@ -199,19 +238,53 @@ impl<'a, T: 'static> ModelContext<'a, T> {
.replace(entity); .replace(entity);
result result
} }
pub fn handle(&self) -> WeakHandle<T> {
WeakHandle {
id: self.entity_id,
entity_type: PhantomData,
}
}
pub fn observe<E: Send + Sync + 'static>(
&mut self,
handle: &Handle<E>,
on_notify: impl Fn(&mut T, Handle<E>, &mut ModelContext<'_, T>) + Send + Sync + 'static,
) {
let this = self.handle();
let handle = handle.downgrade();
self.app
.observers
.entry(handle.id)
.or_default()
.push(Arc::new(move |cx| {
if let Some((this, handle)) = this.upgrade(cx).zip(handle.upgrade(cx)) {
this.update(cx, |this, cx| on_notify(this, handle, cx));
true
} else {
false
}
}));
}
pub fn notify(&mut self) {
self.app
.pending_effects
.push_back(Effect::Notify(self.entity_id));
}
} }
impl<'a, T: 'static> Context for ModelContext<'a, T> { impl<'a, T: 'static> Context for ModelContext<'a, T> {
type EntityContext<'b, 'c, U: Send + 'static> = ModelContext<'b, U>; type EntityContext<'b, 'c, U: Send + Sync + 'static> = ModelContext<'b, U>;
fn entity<U: Send + 'static>( fn entity<U: Send + Sync + 'static>(
&mut self, &mut self,
build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, U>) -> U, build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, U>) -> U,
) -> Handle<U> { ) -> Handle<U> {
self.app.entity(build_entity) self.app.entity(build_entity)
} }
fn update_entity<U: Send + 'static, R>( fn update_entity<U: Send + Sync + 'static, R>(
&mut self, &mut self,
handle: &Handle<U>, handle: &Handle<U>,
update: impl FnOnce(&mut U, &mut Self::EntityContext<'_, '_, U>) -> R, update: impl FnOnce(&mut U, &mut Self::EntityContext<'_, '_, U>) -> R,
@ -220,14 +293,14 @@ impl<'a, T: 'static> Context for ModelContext<'a, T> {
} }
} }
slotmap::new_key_type! { pub struct EntityId; }
pub struct Handle<T> { pub struct Handle<T> {
pub(crate) id: EntityId, pub(crate) id: EntityId,
pub(crate) entity_type: PhantomData<T>, pub(crate) entity_type: PhantomData<T>,
} }
slotmap::new_key_type! { pub struct EntityId; } impl<T: Send + Sync + 'static> Handle<T> {
impl<T: Send + 'static> Handle<T> {
fn new(id: EntityId) -> Self { fn new(id: EntityId) -> Self {
Self { Self {
id, id,
@ -235,6 +308,13 @@ impl<T: Send + 'static> Handle<T> {
} }
} }
pub fn downgrade(&self) -> WeakHandle<T> {
WeakHandle {
id: self.id,
entity_type: self.entity_type,
}
}
/// Update the entity referenced by this handle with the given function. /// Update the entity referenced by this handle with the given function.
/// ///
/// The update function receives a context appropriate for its environment. /// The update function receives a context appropriate for its environment.
@ -258,6 +338,44 @@ impl<T> Clone for Handle<T> {
} }
} }
pub struct WeakHandle<T> {
pub(crate) id: EntityId,
pub(crate) entity_type: PhantomData<T>,
}
impl<T: Send + Sync + 'static> WeakHandle<T> {
pub fn upgrade(&self, cx: &impl Context) -> Option<Handle<T>> {
// todo!("Actually upgrade")
Some(Handle {
id: self.id,
entity_type: self.entity_type,
})
}
/// Update the entity referenced by this handle with the given function if
/// the referenced entity still exists. Returns an error if the entity has
/// been released.
///
/// The update function receives a context appropriate for its environment.
/// When updating in an `AppContext`, it receives a `ModelContext`.
/// When updating an a `WindowContext`, it receives a `ViewContext`.
pub fn update<C: Context, R>(
&self,
cx: &mut C,
update: impl FnOnce(&mut T, &mut C::EntityContext<'_, '_, T>) -> R,
) -> Result<R> {
if let Some(this) = self.upgrade(cx) {
Ok(cx.update_entity(&this, update))
} else {
Err(anyhow!("entity released"))
}
}
}
pub(crate) enum Effect {
Notify(EntityId),
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::AppContext; use super::AppContext;

View file

@ -7,7 +7,7 @@ pub struct Stateless<E: Element<State = ()>, S> {
parent_state_type: PhantomData<S>, parent_state_type: PhantomData<S>,
} }
impl<E: Element<State = ()>, S: 'static> Element for Stateless<E, S> { impl<E: Element<State = ()>, S: Send + Sync + 'static> Element for Stateless<E, S> {
type State = S; type State = S;
type FrameState = E::FrameState; type FrameState = E::FrameState;

View file

@ -46,14 +46,14 @@ pub use view::*;
pub use window::*; pub use window::*;
pub trait Context { pub trait Context {
type EntityContext<'a, 'w, T: Send + 'static>; type EntityContext<'a, 'w, T: Send + Sync + 'static>;
fn entity<T: 'static + Send>( fn entity<T: Send + Sync + 'static>(
&mut self, &mut self,
build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T, build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T,
) -> Handle<T>; ) -> Handle<T>;
fn update_entity<T: 'static + Send, R>( fn update_entity<T: Send + Sync + 'static, R>(
&mut self, &mut self,
handle: &Handle<T>, handle: &Handle<T>,
update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R, update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R,

View file

@ -7,7 +7,7 @@ mod test;
use crate::{ use crate::{
AnyWindowHandle, Bounds, FontFeatures, FontId, FontMetrics, FontStyle, FontWeight, GlyphId, AnyWindowHandle, Bounds, FontFeatures, FontId, FontMetrics, FontStyle, FontWeight, GlyphId,
LineLayout, Pixels, Point, Result, RunStyle, SharedString, Size, LineLayout, Pixels, Point, Result, RunStyle, Scene, SharedString, Size,
}; };
use anyhow::anyhow; use anyhow::anyhow;
use async_task::Runnable; use async_task::Runnable;
@ -145,6 +145,7 @@ pub trait PlatformWindow {
fn on_close(&mut self, callback: Box<dyn FnOnce()>); fn on_close(&mut self, callback: Box<dyn FnOnce()>);
fn on_appearance_changed(&mut self, callback: Box<dyn FnMut()>); fn on_appearance_changed(&mut self, callback: Box<dyn FnMut()>);
fn is_topmost_for_position(&self, position: Point<Pixels>) -> bool; fn is_topmost_for_position(&self, position: Point<Pixels>) -> bool;
fn draw(&self, scene: Scene);
} }
pub trait PlatformDispatcher: Send + Sync { pub trait PlatformDispatcher: Send + Sync {

View file

@ -3,7 +3,7 @@ use crate::{
point, px, size, AnyWindowHandle, Bounds, Event, InputHandler, KeyDownEvent, Keystroke, point, px, size, AnyWindowHandle, Bounds, Event, InputHandler, KeyDownEvent, Keystroke,
MacScreen, Modifiers, ModifiersChangedEvent, MouseButton, MouseDownEvent, MouseMovedEvent, MacScreen, Modifiers, ModifiersChangedEvent, MouseButton, MouseDownEvent, MouseMovedEvent,
MouseUpEvent, NSRectExt, Pixels, Platform, PlatformDispatcher, PlatformScreen, PlatformWindow, MouseUpEvent, NSRectExt, Pixels, Platform, PlatformDispatcher, PlatformScreen, PlatformWindow,
Point, Size, Timer, WindowAppearance, WindowBounds, WindowKind, WindowOptions, Point, Scene, Size, Timer, WindowAppearance, WindowBounds, WindowKind, WindowOptions,
WindowPromptLevel, WindowPromptLevel,
}; };
use block::ConcreteBlock; use block::ConcreteBlock;
@ -282,6 +282,7 @@ struct MacWindowState {
dispatcher: Arc<dyn PlatformDispatcher>, dispatcher: Arc<dyn PlatformDispatcher>,
native_window: id, native_window: id,
renderer: MetalRenderer, renderer: MetalRenderer,
scene_to_render: Option<Scene>,
kind: WindowKind, kind: WindowKind,
event_callback: Option<Box<dyn FnMut(Event) -> bool>>, event_callback: Option<Box<dyn FnMut(Event) -> bool>>,
activate_callback: Option<Box<dyn FnMut(bool)>>, activate_callback: Option<Box<dyn FnMut(bool)>>,
@ -481,6 +482,7 @@ impl MacWindow {
dispatcher: platform.dispatcher(), dispatcher: platform.dispatcher(),
native_window, native_window,
renderer: MetalRenderer::new(true), renderer: MetalRenderer::new(true),
scene_to_render: None,
kind: options.kind, kind: options.kind,
event_callback: None, event_callback: None,
activate_callback: None, activate_callback: None,
@ -875,6 +877,14 @@ impl PlatformWindow for MacWindow {
} }
} }
} }
fn draw(&self, scene: crate::Scene) {
let mut this = self.0.lock();
this.scene_to_render = Some(scene);
unsafe {
let _: () = msg_send![this.native_window.contentView(), setNeedsDisplay: YES];
}
}
} }
fn get_scale_factor(native_window: id) -> f32 { fn get_scale_factor(native_window: id) -> f32 {
@ -1347,53 +1357,11 @@ extern "C" fn display_layer(this: &Object, _: Sel, _: id) {
unsafe { unsafe {
let window_state = get_window_state(this); let window_state = get_window_state(this);
let mut window_state = window_state.as_ref().lock(); let mut window_state = window_state.as_ref().lock();
if let Some(scene) = window_state.scene_to_render.take() {
let scale_factor = window_state.scale_factor();
let mut scene = crate::Scene::new(scale_factor);
scene.insert(crate::Quad {
order: 2,
bounds: Bounds {
origin: point(10., 10.).map(px),
size: size(100., 100.).map(px),
},
clip_bounds: Bounds {
origin: point(20., 20.).map(px),
size: size(100., 100.).map(px),
},
clip_corner_radii: crate::Corners {
top_left: px(10.),
..Default::default()
},
background: crate::rgb(0x00ff00).into(),
border_color: Default::default(),
corner_radii: crate::Corners {
top_left: px(9.),
top_right: px(3.),
bottom_right: px(20.),
bottom_left: px(50.),
},
border_widths: Default::default(),
});
scene.insert(crate::Quad {
order: 1,
bounds: Bounds {
origin: point(50., 10.).map(px),
size: size(100., 100.).map(px),
},
clip_bounds: Bounds {
origin: point(10., 10.).map(px),
size: size(100., 100.).map(px),
},
clip_corner_radii: Default::default(),
background: crate::rgb(0xff0000).into(),
border_color: Default::default(),
corner_radii: Default::default(),
border_widths: Default::default(),
});
dbg!("!!!!!!!!!");
window_state.renderer.draw(&scene); window_state.renderer.draw(&scene);
} }
} }
}
extern "C" fn valid_attributes_for_marked_text(_: &Object, _: Sel) -> id { extern "C" fn valid_attributes_for_marked_text(_: &Object, _: Sel) -> id {
unsafe { msg_send![class!(NSArray), array] } unsafe { msg_send![class!(NSArray), array] }

View file

@ -33,7 +33,7 @@ pub fn view<S: 'static, P: 'static, E: Element<State = S>>(
} }
} }
impl<S: Send + 'static, P: 'static> View<S, P> { impl<S: Send + Sync + 'static, P: 'static> View<S, P> {
pub fn into_any<ParentState>(self) -> AnyView<ParentState> { pub fn into_any<ParentState>(self) -> AnyView<ParentState> {
AnyView { AnyView {
view: Rc::new(RefCell::new(self)), view: Rc::new(RefCell::new(self)),
@ -42,7 +42,7 @@ impl<S: Send + 'static, P: 'static> View<S, P> {
} }
} }
impl<S: Send + 'static, P: Send + 'static> Element for View<S, P> { impl<S: Send + Sync + 'static, P: Send + 'static> Element for View<S, P> {
type State = P; type State = P;
type FrameState = AnyElement<S>; type FrameState = AnyElement<S>;
@ -80,7 +80,7 @@ trait ViewObject {
) -> Result<()>; ) -> Result<()>;
} }
impl<S: Send + 'static, P> ViewObject for View<S, P> { impl<S: Send + Sync + 'static, P> ViewObject for View<S, P> {
fn layout(&mut self, cx: &mut WindowContext) -> Result<(LayoutId, Box<dyn Any>)> { fn layout(&mut self, cx: &mut WindowContext) -> Result<(LayoutId, Box<dyn Any>)> {
self.state.update(cx, |state, cx| { self.state.update(cx, |state, cx| {
let mut element = (self.render)(state, cx); let mut element = (self.render)(state, cx);

View file

@ -1,7 +1,7 @@
use crate::{ use crate::{
px, AppContext, AvailableSpace, Bounds, Context, EntityId, Handle, LayoutId, MainThreadOnly, px, AppContext, AvailableSpace, Bounds, Context, Effect, EntityId, Handle, LayoutId,
Pixels, Platform, PlatformWindow, Point, Reference, Size, Style, TaffyLayoutEngine, TextStyle, MainThreadOnly, Pixels, Platform, PlatformWindow, Point, Reference, Size, Style,
TextStyleRefinement, WindowOptions, TaffyLayoutEngine, TextStyle, TextStyleRefinement, WeakHandle, WindowOptions,
}; };
use anyhow::Result; use anyhow::Result;
use derive_more::{Deref, DerefMut}; use derive_more::{Deref, DerefMut};
@ -22,6 +22,7 @@ pub struct Window {
text_style_stack: Vec<TextStyleRefinement>, text_style_stack: Vec<TextStyleRefinement>,
pub(crate) root_view: Option<Box<dyn Any + Send>>, pub(crate) root_view: Option<Box<dyn Any + Send>>,
mouse_position: Point<Pixels>, mouse_position: Point<Pixels>,
pub(crate) dirty: bool,
} }
impl Window { impl Window {
@ -37,6 +38,7 @@ impl Window {
text_style_stack: Vec::new(), text_style_stack: Vec::new(),
root_view: None, root_view: None,
mouse_position, mouse_position,
dirty: true,
} }
} }
} }
@ -125,21 +127,21 @@ impl<'a, 'w> WindowContext<'a, 'w> {
fn update_window<R>( fn update_window<R>(
&mut self, &mut self,
window_id: WindowId, window_handle: AnyWindowHandle,
update: impl FnOnce(&mut WindowContext) -> R, update: impl FnOnce(&mut WindowContext) -> R,
) -> Result<R> { ) -> Result<R> {
if window_id == self.window.handle.id { if window_handle == self.window.handle {
Ok(update(self)) Ok(update(self))
} else { } else {
self.app.update_window(window_id, update) self.app.update_window(window_handle, update)
} }
} }
} }
impl Context for WindowContext<'_, '_> { impl Context for WindowContext<'_, '_> {
type EntityContext<'a, 'w, T: Send + 'static> = ViewContext<'a, 'w, T>; type EntityContext<'a, 'w, T: Send + Sync + 'static> = ViewContext<'a, 'w, T>;
fn entity<T: Send + 'static>( fn entity<T: Send + Sync + 'static>(
&mut self, &mut self,
build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T, build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T>) -> T,
) -> Handle<T> { ) -> Handle<T> {
@ -157,7 +159,7 @@ impl Context for WindowContext<'_, '_> {
} }
} }
fn update_entity<T: Send + 'static, R>( fn update_entity<T: Send + Sync + 'static, R>(
&mut self, &mut self,
handle: &Handle<T>, handle: &Handle<T>,
update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R, update: impl FnOnce(&mut T, &mut Self::EntityContext<'_, '_, T>) -> R,
@ -196,7 +198,7 @@ pub struct ViewContext<'a, 'w, T> {
entity_id: EntityId, entity_id: EntityId,
} }
impl<'a, 'w, T: 'static> ViewContext<'a, 'w, T> { impl<'a, 'w, T: Send + Sync + 'static> ViewContext<'a, 'w, T> {
// fn update<R>(&mut self, update: impl FnOnce(&mut T, &mut Self) -> R) -> R { // fn update<R>(&mut self, update: impl FnOnce(&mut T, &mut Self) -> R) -> R {
// self.window_cx.update_entity(handle, update) // self.window_cx.update_entity(handle, update)
@ -235,19 +237,59 @@ impl<'a, 'w, T: 'static> ViewContext<'a, 'w, T> {
); );
f(&mut cx) f(&mut cx)
} }
pub fn handle(&self) -> WeakHandle<T> {
WeakHandle {
id: self.entity_id,
entity_type: PhantomData,
}
}
pub fn observe<E: Send + Sync + 'static>(
&mut self,
handle: &Handle<E>,
on_notify: impl Fn(&mut T, Handle<E>, &mut ViewContext<'_, '_, T>) + Send + Sync + 'static,
) {
let this = self.handle();
let handle = handle.downgrade();
let window_handle = self.window.handle;
self.app
.observers
.entry(handle.id)
.or_default()
.push(Arc::new(move |cx| {
cx.update_window(window_handle, |cx| {
if let Some(handle) = handle.upgrade(cx) {
this.update(cx, |this, cx| on_notify(this, handle, cx))
.is_ok()
} else {
false
}
})
.unwrap_or(false)
}));
}
pub fn notify(&mut self) {
let entity_id = self.entity_id;
self.app
.pending_effects
.push_back(Effect::Notify(entity_id));
self.window.dirty = true;
}
} }
impl<'a, 'w, T: 'static> Context for ViewContext<'a, 'w, T> { impl<'a, 'w, T: 'static> Context for ViewContext<'a, 'w, T> {
type EntityContext<'b, 'c, U: Send + 'static> = ViewContext<'b, 'c, U>; type EntityContext<'b, 'c, U: Send + Sync + 'static> = ViewContext<'b, 'c, U>;
fn entity<T2: Send + 'static>( fn entity<T2: Send + Sync + 'static>(
&mut self, &mut self,
build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T2>) -> T2, build_entity: impl FnOnce(&mut Self::EntityContext<'_, '_, T2>) -> T2,
) -> Handle<T2> { ) -> Handle<T2> {
self.window_cx.entity(build_entity) self.window_cx.entity(build_entity)
} }
fn update_entity<U: Send + 'static, R>( fn update_entity<U: Send + Sync + 'static, R>(
&mut self, &mut self,
handle: &Handle<U>, handle: &Handle<U>,
update: impl FnOnce(&mut U, &mut Self::EntityContext<'_, '_, U>) -> R, update: impl FnOnce(&mut U, &mut Self::EntityContext<'_, '_, U>) -> R,
@ -296,7 +338,7 @@ impl<S: 'static> Into<AnyWindowHandle> for WindowHandle<S> {
#[derive(Copy, Clone, PartialEq, Eq)] #[derive(Copy, Clone, PartialEq, Eq)]
pub struct AnyWindowHandle { pub struct AnyWindowHandle {
id: WindowId, pub(crate) id: WindowId,
state_type: TypeId, state_type: TypeId,
} }