Fix window restoration bugs (#9358)

- [x] fixes https://github.com/zed-industries/zed/issues/9349
- [x] fixes https://github.com/zed-industries/zed/issues/4656
- [x] fixes https://github.com/zed-industries/zed/issues/8345

Release Notes:

- TODO
This commit is contained in:
Mikayla Maki 2024-03-14 14:25:12 -07:00 committed by GitHub
parent 14cdafb0a8
commit 35c9216ed7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 106 additions and 56 deletions

View file

@ -64,7 +64,7 @@ impl Render for CollabTitlebarItem {
.w_full() .w_full()
.h(titlebar_height(cx)) .h(titlebar_height(cx))
.map(|this| { .map(|this| {
if cx.is_full_screen() { if cx.is_fullscreen() {
this.pl_2() this.pl_2()
} else { } else {
// Use pixels here instead of a rem-based size because the macOS traffic // Use pixels here instead of a rem-based size because the macOS traffic

View file

@ -191,8 +191,8 @@ pub(crate) trait PlatformWindow: HasWindowHandle + HasDisplayHandle {
fn show_character_palette(&self); fn show_character_palette(&self);
fn minimize(&self); fn minimize(&self);
fn zoom(&self); fn zoom(&self);
fn toggle_full_screen(&self); fn toggle_fullscreen(&self);
fn is_full_screen(&self) -> bool; fn is_fullscreen(&self) -> bool;
fn on_request_frame(&self, callback: Box<dyn FnMut()>); fn on_request_frame(&self, callback: Box<dyn FnMut()>);
fn on_input(&self, callback: Box<dyn FnMut(PlatformInput) -> bool>); fn on_input(&self, callback: Box<dyn FnMut(PlatformInput) -> bool>);
fn on_active_status_change(&self, callback: Box<dyn FnMut(bool)>); fn on_active_status_change(&self, callback: Box<dyn FnMut(bool)>);
@ -596,7 +596,7 @@ pub enum WindowKind {
/// Platform level interface /// Platform level interface
/// bounds: Bounds<GlobalPixels> /// bounds: Bounds<GlobalPixels>
/// full_screen: bool /// fullscreen: bool
/// The appearance of the window, as defined by the operating system. /// The appearance of the window, as defined by the operating system.
/// ///

View file

@ -362,7 +362,7 @@ impl PlatformWindow for WaylandWindow {
// todo(linux) // todo(linux)
} }
fn toggle_full_screen(&self) { fn toggle_fullscreen(&self) {
if !self.0.inner.borrow().fullscreen { if !self.0.inner.borrow().fullscreen {
self.0.toplevel.set_fullscreen(None); self.0.toplevel.set_fullscreen(None);
} else { } else {
@ -370,7 +370,7 @@ impl PlatformWindow for WaylandWindow {
} }
} }
fn is_full_screen(&self) -> bool { fn is_fullscreen(&self) -> bool {
self.0.inner.borrow_mut().fullscreen self.0.inner.borrow_mut().fullscreen
} }

View file

@ -438,12 +438,12 @@ impl PlatformWindow for X11Window {
} }
// todo(linux) // todo(linux)
fn toggle_full_screen(&self) { fn toggle_fullscreen(&self) {
unimplemented!() unimplemented!()
} }
// todo(linux) // todo(linux)
fn is_full_screen(&self) -> bool { fn is_fullscreen(&self) -> bool {
false false
} }

View file

@ -252,7 +252,7 @@ impl platform::Window for StatusItem {
} }
} }
fn toggle_full_screen(&self) { fn toggle_fullscreen(&self) {
unimplemented!() unimplemented!()
} }

View file

@ -941,7 +941,7 @@ impl PlatformWindow for MacWindow {
.detach(); .detach();
} }
fn toggle_full_screen(&self) { fn toggle_fullscreen(&self) {
let this = self.0.lock(); let this = self.0.lock();
let window = this.native_window; let window = this.native_window;
this.executor this.executor
@ -953,7 +953,7 @@ impl PlatformWindow for MacWindow {
.detach(); .detach();
} }
fn is_full_screen(&self) -> bool { fn is_fullscreen(&self) -> bool {
let this = self.0.lock(); let this = self.0.lock();
let window = this.native_window; let window = this.native_window;

View file

@ -197,12 +197,12 @@ impl PlatformWindow for TestWindow {
unimplemented!() unimplemented!()
} }
fn toggle_full_screen(&self) { fn toggle_fullscreen(&self) {
let mut lock = self.0.lock(); let mut lock = self.0.lock();
lock.is_fullscreen = !lock.is_fullscreen; lock.is_fullscreen = !lock.is_fullscreen;
} }
fn is_full_screen(&self) -> bool { fn is_fullscreen(&self) -> bool {
self.0.lock().is_fullscreen self.0.lock().is_fullscreen
} }

View file

@ -909,10 +909,10 @@ impl PlatformWindow for WindowsWindow {
fn zoom(&self) {} fn zoom(&self) {}
// todo(windows) // todo(windows)
fn toggle_full_screen(&self) {} fn toggle_fullscreen(&self) {}
// todo(windows) // todo(windows)
fn is_full_screen(&self) -> bool { fn is_fullscreen(&self) -> bool {
false false
} }

View file

@ -338,9 +338,6 @@ fn default_bounds(cx: &mut AppContext) -> Bounds<GlobalPixels> {
}) })
} }
// Fixed, Maximized, Fullscreen, and 'Inherent / default'
// Platform part, you don't, you only need Fixed, Maximized, Fullscreen
impl Window { impl Window {
pub(crate) fn new( pub(crate) fn new(
handle: AnyWindowHandle, handle: AnyWindowHandle,
@ -386,7 +383,7 @@ impl Window {
let last_input_timestamp = Rc::new(Cell::new(Instant::now())); let last_input_timestamp = Rc::new(Cell::new(Instant::now()));
if fullscreen { if fullscreen {
platform_window.toggle_full_screen(); platform_window.toggle_fullscreen();
} }
platform_window.on_close(Box::new({ platform_window.on_close(Box::new({
@ -807,8 +804,8 @@ impl<'a> WindowContext<'a> {
} }
/// Retusn whether or not the window is currently fullscreen /// Retusn whether or not the window is currently fullscreen
pub fn is_full_screen(&self) -> bool { pub fn is_fullscreen(&self) -> bool {
self.window.platform_window.is_full_screen() self.window.platform_window.is_fullscreen()
} }
fn appearance_changed(&mut self) { fn appearance_changed(&mut self) {
@ -1481,8 +1478,8 @@ impl<'a> WindowContext<'a> {
} }
/// Toggle full screen status on the current window at the platform level. /// Toggle full screen status on the current window at the platform level.
pub fn toggle_full_screen(&self) { pub fn toggle_fullscreen(&self) {
self.window.platform_window.toggle_full_screen(); self.window.platform_window.toggle_fullscreen();
} }
/// Present a platform dialog. /// Present a platform dialog.

View file

@ -138,6 +138,7 @@ define_connection! {
// window_width: Option<f32>, // WindowBounds::Fixed RectF width // window_width: Option<f32>, // WindowBounds::Fixed RectF width
// window_height: Option<f32>, // WindowBounds::Fixed RectF height // window_height: Option<f32>, // WindowBounds::Fixed RectF height
// display: Option<Uuid>, // Display id // display: Option<Uuid>, // Display id
// fullscreen: Option<bool>, // Is the window fullscreen?
// ) // )
// //
// pane_groups( // pane_groups(
@ -274,7 +275,11 @@ define_connection! {
// Add pane group flex data // Add pane group flex data
sql!( sql!(
ALTER TABLE pane_groups ADD COLUMN flexes TEXT; ALTER TABLE pane_groups ADD COLUMN flexes TEXT;
) ),
// Add fullscreen field to workspace
sql!(
ALTER TABLE workspaces ADD COLUMN fullscreen INTEGER; //bool
),
]; ];
} }
@ -290,11 +295,12 @@ impl WorkspaceDb {
// Note that we re-assign the workspace_id here in case it's empty // Note that we re-assign the workspace_id here in case it's empty
// and we've grabbed the most recent workspace // and we've grabbed the most recent workspace
let (workspace_id, workspace_location, bounds, display, docks): ( let (workspace_id, workspace_location, bounds, display, fullscreen, docks): (
WorkspaceId, WorkspaceId,
WorkspaceLocation, WorkspaceLocation,
Option<SerializedWindowsBounds>, Option<SerializedWindowsBounds>,
Option<Uuid>, Option<Uuid>,
Option<bool>,
DockStructure, DockStructure,
) = self ) = self
.select_row_bound(sql! { .select_row_bound(sql! {
@ -307,6 +313,7 @@ impl WorkspaceDb {
window_width, window_width,
window_height, window_height,
display, display,
fullscreen,
left_dock_visible, left_dock_visible,
left_dock_active_panel, left_dock_active_panel,
left_dock_zoom, left_dock_zoom,
@ -332,6 +339,7 @@ impl WorkspaceDb {
.context("Getting center group") .context("Getting center group")
.log_err()?, .log_err()?,
bounds: bounds.map(|bounds| bounds.0), bounds: bounds.map(|bounds| bounds.0),
fullscreen: fullscreen.unwrap_or(false),
display, display,
docks, docks,
}) })
@ -412,6 +420,16 @@ impl WorkspaceDb {
} }
} }
query! {
pub fn last_monitor() -> Result<Option<Uuid>> {
SELECT display
FROM workspaces
WHERE workspace_location IS NOT NULL
ORDER BY timestamp DESC
LIMIT 1
}
}
query! { query! {
pub async fn delete_workspace_by_id(id: WorkspaceId) -> Result<()> { pub async fn delete_workspace_by_id(id: WorkspaceId) -> Result<()> {
DELETE FROM workspaces DELETE FROM workspaces
@ -648,6 +666,14 @@ impl WorkspaceDb {
WHERE workspace_id = ?1 WHERE workspace_id = ?1
} }
} }
query! {
pub(crate) async fn set_fullscreen(workspace_id: WorkspaceId, fullscreen: bool) -> Result<()> {
UPDATE workspaces
SET fullscreen = ?2
WHERE workspace_id = ?1
}
}
} }
#[cfg(test)] #[cfg(test)]
@ -733,6 +759,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
let workspace_2 = SerializedWorkspace { let workspace_2 = SerializedWorkspace {
@ -742,6 +769,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
db.save_workspace(workspace_1.clone()).await; db.save_workspace(workspace_1.clone()).await;
@ -840,6 +868,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
db.save_workspace(workspace.clone()).await; db.save_workspace(workspace.clone()).await;
@ -868,6 +897,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
let mut workspace_2 = SerializedWorkspace { let mut workspace_2 = SerializedWorkspace {
@ -877,6 +907,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
db.save_workspace(workspace_1.clone()).await; db.save_workspace(workspace_1.clone()).await;
@ -913,6 +944,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
}; };
db.save_workspace(workspace_3.clone()).await; db.save_workspace(workspace_3.clone()).await;
@ -946,6 +978,7 @@ mod tests {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks: Default::default(), docks: Default::default(),
fullscreen: false,
} }
} }

View file

@ -70,6 +70,7 @@ pub(crate) struct SerializedWorkspace {
pub(crate) location: WorkspaceLocation, pub(crate) location: WorkspaceLocation,
pub(crate) center_group: SerializedPaneGroup, pub(crate) center_group: SerializedPaneGroup,
pub(crate) bounds: Option<Bounds<GlobalPixels>>, pub(crate) bounds: Option<Bounds<GlobalPixels>>,
pub(crate) fullscreen: bool,
pub(crate) display: Option<Uuid>, pub(crate) display: Option<Uuid>,
pub(crate) docks: DockStructure, pub(crate) docks: DockStructure,
} }

View file

@ -694,15 +694,28 @@ impl Workspace {
let display_bounds = display.bounds(); let display_bounds = display.bounds();
window_bounds.origin.x -= display_bounds.origin.x; window_bounds.origin.x -= display_bounds.origin.x;
window_bounds.origin.y -= display_bounds.origin.y; window_bounds.origin.y -= display_bounds.origin.y;
let fullscreen = cx.is_fullscreen();
if let Some(display_uuid) = display.uuid().log_err() { if let Some(display_uuid) = display.uuid().log_err() {
cx.background_executor() // Only update the window bounds when not full screen,
.spawn(DB.set_window_bounds( // so we can remember the last non-fullscreen bounds
workspace_id, // across restarts
SerializedWindowsBounds(window_bounds), if fullscreen {
display_uuid, cx.background_executor()
)) .spawn(DB.set_fullscreen(workspace_id, true))
.detach_and_log_err(cx); .detach_and_log_err(cx);
} else {
cx.background_executor()
.spawn(DB.set_fullscreen(workspace_id, false))
.detach_and_log_err(cx);
cx.background_executor()
.spawn(DB.set_window_bounds(
workspace_id,
SerializedWindowsBounds(window_bounds),
display_uuid,
))
.detach_and_log_err(cx);
}
} }
} }
cx.notify(); cx.notify();
@ -834,36 +847,41 @@ impl Workspace {
window window
} else { } else {
let window_bounds_override = window_bounds_env_override(&cx); let window_bounds_override = window_bounds_env_override(&cx);
let (bounds, display) = if let Some(bounds) = window_bounds_override {
(Some(bounds), None)
} else {
serialized_workspace
.as_ref()
.and_then(|serialized_workspace| {
let serialized_display = serialized_workspace.display?;
let mut bounds = serialized_workspace.bounds?;
// Stored bounds are relative to the containing display. let (bounds, display, fullscreen) = if let Some(bounds) = window_bounds_override {
// So convert back to global coordinates if that screen still exists (Some(bounds), None, false)
let screen = cx } else if let Some((serialized_display, mut bounds, fullscreen)) =
.update(|cx| { serialized_workspace.as_ref().and_then(|workspace| {
cx.displays().into_iter().find(|display| { Some((workspace.display?, workspace.bounds?, workspace.fullscreen))
display.uuid().ok() == Some(serialized_display) })
}) {
}) // Stored bounds are relative to the containing display.
.ok()??; // So convert back to global coordinates if that screen still exists
let screen_bounds = screen.bounds(); let screen_bounds = cx
bounds.origin.x += screen_bounds.origin.x; .update(|cx| {
bounds.origin.y += screen_bounds.origin.y; cx.displays()
.into_iter()
Some((bounds, serialized_display)) .find(|display| display.uuid().ok() == Some(serialized_display))
}) })
.unzip() .ok()
.flatten()
.map(|screen| screen.bounds());
if let Some(screen_bounds) = screen_bounds {
bounds.origin.x += screen_bounds.origin.x;
bounds.origin.y += screen_bounds.origin.y;
}
(Some(bounds), Some(serialized_display), fullscreen)
} else {
let display = DB.last_monitor().log_err().flatten();
(None, display, false)
}; };
// Use the serialized workspace to construct the new window // Use the serialized workspace to construct the new window
let mut options = cx.update(|cx| (app_state.build_window_options)(display, cx))?; let mut options = cx.update(|cx| (app_state.build_window_options)(display, cx))?;
options.bounds = bounds; options.bounds = bounds;
options.fullscreen = fullscreen;
cx.open_window(options, { cx.open_window(options, {
let app_state = app_state.clone(); let app_state = app_state.clone();
let project_handle = project_handle.clone(); let project_handle = project_handle.clone();
@ -3420,6 +3438,7 @@ impl Workspace {
bounds: Default::default(), bounds: Default::default(),
display: Default::default(), display: Default::default(),
docks, docks,
fullscreen: cx.is_fullscreen(),
}; };
cx.spawn(|_| persistence::DB.save_workspace(serialized_workspace)) cx.spawn(|_| persistence::DB.save_workspace(serialized_workspace))

View file

@ -222,7 +222,7 @@ pub fn initialize_workspace(app_state: Arc<AppState>, cx: &mut AppContext) {
cx.zoom_window(); cx.zoom_window();
}) })
.register_action(|_, _: &ToggleFullScreen, cx| { .register_action(|_, _: &ToggleFullScreen, cx| {
cx.toggle_full_screen(); cx.toggle_fullscreen();
}) })
.register_action(|_, action: &OpenZedUrl, cx| { .register_action(|_, action: &OpenZedUrl, cx| {
OpenListener::global(cx).open_urls(vec![action.url.clone()]) OpenListener::global(cx).open_urls(vec![action.url.clone()])