Remove WindowContext::is_child_focused

This commit is contained in:
Antonio Scandurra 2023-05-04 09:49:38 +02:00
parent 67a3891f15
commit f6f18be9c3
4 changed files with 12 additions and 26 deletions

View file

@ -5360,10 +5360,6 @@ mod tests {
cx.focus(&view_2); cx.focus(&view_2);
}); });
cx.read_window(window_id, |cx| {
assert!(cx.is_child_focused(&view_1));
assert!(!cx.is_child_focused(&view_2));
});
assert_eq!( assert_eq!(
mem::take(&mut *view_events.lock()), mem::take(&mut *view_events.lock()),
["view 1 blurred", "view 2 focused"], ["view 1 blurred", "view 2 focused"],
@ -5377,10 +5373,6 @@ mod tests {
); );
view_1.update(cx, |_, cx| cx.focus(&view_1)); view_1.update(cx, |_, cx| cx.focus(&view_1));
cx.read_window(window_id, |cx| {
assert!(!cx.is_child_focused(&view_1));
assert!(!cx.is_child_focused(&view_2));
});
assert_eq!( assert_eq!(
mem::take(&mut *view_events.lock()), mem::take(&mut *view_events.lock()),
["view 2 blurred", "view 1 focused"], ["view 2 blurred", "view 1 focused"],

View file

@ -1085,16 +1085,6 @@ impl<'a> WindowContext<'a> {
self.window.focused_view_id self.window.focused_view_id
} }
pub fn is_child_focused(&self, view: &AnyViewHandle) -> bool {
if let Some(focused_view_id) = self.focused_view_id() {
self.ancestors(focused_view_id)
.skip(1) // Skip self id
.any(|parent| parent == view.view_id)
} else {
false
}
}
pub fn window_bounds(&self) -> WindowBounds { pub fn window_bounds(&self) -> WindowBounds {
self.window.platform_window.bounds() self.window.platform_window.bounds()
} }

View file

@ -151,6 +151,7 @@ pub struct Pane {
docked: Option<DockAnchor>, docked: Option<DockAnchor>,
_background_actions: BackgroundActions, _background_actions: BackgroundActions,
workspace: WeakViewHandle<Workspace>, workspace: WeakViewHandle<Workspace>,
has_focus: bool,
} }
pub struct ItemNavHistory { pub struct ItemNavHistory {
@ -258,6 +259,7 @@ impl Pane {
docked, docked,
_background_actions: background_actions, _background_actions: background_actions,
workspace, workspace,
has_focus: false,
} }
} }
@ -274,6 +276,10 @@ impl Pane {
cx.notify(); cx.notify();
} }
pub fn has_focus(&self) -> bool {
self.has_focus
}
pub fn set_docked(&mut self, docked: Option<DockAnchor>, cx: &mut ViewContext<Self>) { pub fn set_docked(&mut self, docked: Option<DockAnchor>, cx: &mut ViewContext<Self>) {
self.docked = docked; self.docked = docked;
cx.notify(); cx.notify();
@ -1798,7 +1804,7 @@ impl View for Pane {
} }
fn focus_in(&mut self, focused: AnyViewHandle, cx: &mut ViewContext<Self>) { fn focus_in(&mut self, focused: AnyViewHandle, cx: &mut ViewContext<Self>) {
cx.emit(Event::Focus); self.has_focus = true;
self.toolbar.update(cx, |toolbar, cx| { self.toolbar.update(cx, |toolbar, cx| {
toolbar.pane_focus_update(true, cx); toolbar.pane_focus_update(true, cx);
}); });
@ -1824,9 +1830,12 @@ impl View for Pane {
.insert(active_item.id(), focused.downgrade()); .insert(active_item.id(), focused.downgrade());
} }
} }
cx.emit(Event::Focus);
} }
fn focus_out(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) { fn focus_out(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) {
self.has_focus = false;
self.toolbar.update(cx, |toolbar, cx| { self.toolbar.update(cx, |toolbar, cx| {
toolbar.pane_focus_update(false, cx); toolbar.pane_focus_update(false, cx);
}); });

View file

@ -2339,19 +2339,14 @@ impl Workspace {
} }
for (pane, item) in items_to_activate { for (pane, item) in items_to_activate {
let active_item_was_focused = pane let pane_was_focused = pane.read(cx).has_focus();
.read(cx)
.active_item()
.map(|active_item| cx.is_child_focused(active_item.as_any()))
.unwrap_or_default();
if let Some(index) = pane.update(cx, |pane, _| pane.index_for_item(item.as_ref())) { if let Some(index) = pane.update(cx, |pane, _| pane.index_for_item(item.as_ref())) {
pane.update(cx, |pane, cx| pane.activate_item(index, false, false, cx)); pane.update(cx, |pane, cx| pane.activate_item(index, false, false, cx));
} else { } else {
Pane::add_item(self, &pane, item.boxed_clone(), false, false, None, cx); Pane::add_item(self, &pane, item.boxed_clone(), false, false, None, cx);
} }
if active_item_was_focused { if pane_was_focused {
pane.update(cx, |pane, cx| pane.focus_active_item(cx)); pane.update(cx, |pane, cx| pane.focus_active_item(cx));
} }
} }