mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Add Modal::has_focus
and introduce a ModalHandle
trait object
This commit is contained in:
parent
25564ea058
commit
a8602b2a0c
@ -24,6 +24,7 @@ pub struct GoToLine {
|
|||||||
prev_scroll_position: Option<Vector2F>,
|
prev_scroll_position: Option<Vector2F>,
|
||||||
cursor_point: Point,
|
cursor_point: Point,
|
||||||
max_point: Point,
|
max_point: Point,
|
||||||
|
has_focus: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Event {
|
pub enum Event {
|
||||||
@ -57,6 +58,7 @@ impl GoToLine {
|
|||||||
prev_scroll_position: scroll_position,
|
prev_scroll_position: scroll_position,
|
||||||
cursor_point,
|
cursor_point,
|
||||||
max_point,
|
max_point,
|
||||||
|
has_focus: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,11 +180,20 @@ impl View for GoToLine {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn focus_in(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) {
|
fn focus_in(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) {
|
||||||
|
self.has_focus = true;
|
||||||
cx.focus(&self.line_editor);
|
cx.focus(&self.line_editor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn focus_out(&mut self, _: AnyViewHandle, _: &mut ViewContext<Self>) {
|
||||||
|
self.has_focus = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Modal for GoToLine {
|
impl Modal for GoToLine {
|
||||||
|
fn has_focus(&self) -> bool {
|
||||||
|
self.has_focus
|
||||||
|
}
|
||||||
|
|
||||||
fn dismiss_on_event(event: &Self::Event) -> bool {
|
fn dismiss_on_event(event: &Self::Event) -> bool {
|
||||||
matches!(event, Event::Dismissed)
|
matches!(event, Event::Dismissed)
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@ pub struct Picker<D: PickerDelegate> {
|
|||||||
theme: Arc<Mutex<Box<dyn Fn(&theme::Theme) -> theme::Picker>>>,
|
theme: Arc<Mutex<Box<dyn Fn(&theme::Theme) -> theme::Picker>>>,
|
||||||
confirmed: bool,
|
confirmed: bool,
|
||||||
pending_update_matches: Task<Option<()>>,
|
pending_update_matches: Task<Option<()>>,
|
||||||
|
has_focus: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait PickerDelegate: Sized + 'static {
|
pub trait PickerDelegate: Sized + 'static {
|
||||||
@ -140,13 +141,22 @@ impl<D: PickerDelegate> View for Picker<D> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn focus_in(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) {
|
fn focus_in(&mut self, _: AnyViewHandle, cx: &mut ViewContext<Self>) {
|
||||||
|
self.has_focus = true;
|
||||||
if cx.is_self_focused() {
|
if cx.is_self_focused() {
|
||||||
cx.focus(&self.query_editor);
|
cx.focus(&self.query_editor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn focus_out(&mut self, _: AnyViewHandle, _: &mut ViewContext<Self>) {
|
||||||
|
self.has_focus = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<D: PickerDelegate> Modal for Picker<D> {
|
impl<D: PickerDelegate> Modal for Picker<D> {
|
||||||
|
fn has_focus(&self) -> bool {
|
||||||
|
self.has_focus
|
||||||
|
}
|
||||||
|
|
||||||
fn dismiss_on_event(event: &Self::Event) -> bool {
|
fn dismiss_on_event(event: &Self::Event) -> bool {
|
||||||
matches!(event, PickerEvent::Dismiss)
|
matches!(event, PickerEvent::Dismiss)
|
||||||
}
|
}
|
||||||
@ -191,6 +201,7 @@ impl<D: PickerDelegate> Picker<D> {
|
|||||||
theme,
|
theme,
|
||||||
confirmed: false,
|
confirmed: false,
|
||||||
pending_update_matches: Task::ready(None),
|
pending_update_matches: Task::ready(None),
|
||||||
|
has_focus: false,
|
||||||
};
|
};
|
||||||
this.update_matches(String::new(), cx);
|
this.update_matches(String::new(), cx);
|
||||||
this
|
this
|
||||||
|
@ -97,9 +97,25 @@ lazy_static! {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub trait Modal: View {
|
pub trait Modal: View {
|
||||||
|
fn has_focus(&self) -> bool;
|
||||||
fn dismiss_on_event(event: &Self::Event) -> bool;
|
fn dismiss_on_event(event: &Self::Event) -> bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trait ModalHandle {
|
||||||
|
fn as_any(&self) -> &AnyViewHandle;
|
||||||
|
fn has_focus(&self, cx: &WindowContext) -> bool;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: Modal> ModalHandle for ViewHandle<T> {
|
||||||
|
fn as_any(&self) -> &AnyViewHandle {
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
fn has_focus(&self, cx: &WindowContext) -> bool {
|
||||||
|
self.read(cx).has_focus()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, PartialEq)]
|
#[derive(Clone, PartialEq)]
|
||||||
pub struct RemoveWorktreeFromProject(pub WorktreeId);
|
pub struct RemoveWorktreeFromProject(pub WorktreeId);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user