Added internal messaging and workers to handle per toolbx settings, actual settings handling still missing

This commit is contained in:
2022-08-05 12:47:48 +02:00
parent 48cbc506e2
commit 5049762167
11 changed files with 171 additions and 18 deletions

View File

@@ -1,4 +1,9 @@
use crate::toolbx::ToolbxContainer;
use super::model::ToolboxPreferences;
pub enum ToolboxSettingsDialogMsg {
Show,
Show(ToolbxContainer),
ReplyToolbxSettings(ToolboxPreferences),
Close,
}