implement restore action

This commit is contained in:
yggverse 2024-10-05 15:32:03 +03:00
parent 4fee1c06a3
commit ff82804e5b
2 changed files with 27 additions and 3 deletions

View File

@ -248,7 +248,18 @@ impl Browser {
}
pub fn restore(&self, app_id: &i64) {
// @TODO
match self.database.records(app_id) {
Ok(records) => {
for record in records {
// Delegate restore action to childs
// @TODO
// self.header.restore(record.id);
// self.main.restore(record.id);
self.widget.restore(&record.id);
}
}
Err(error) => panic!("{error}"), // @TODO
}
}
pub fn save(&self, app_id: &i64) {

View File

@ -62,8 +62,21 @@ impl Widget {
}
}
pub fn restore(&self) {
// @TODO
pub fn restore(&self, app_browser_id: &i64) {
match self.database.records(app_browser_id) {
Ok(records) => {
for record in records {
// Restore widget
self.application_window.set_maximized(record.is_maximized);
self.application_window
.set_default_size(record.default_width, record.default_height);
// Delegate restore action to childs
// nothing yet..
}
}
Err(error) => panic!("{error}"), // @TODO
}
}
pub fn save(&self, app_browser_id: &i64) {