mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
implement restore action
This commit is contained in:
parent
4fee1c06a3
commit
ff82804e5b
2 changed files with 27 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue