2023-08-03 00:00:23 +03:00
|
|
|
// Copyright 2023 The Grim Developers
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
2023-08-03 23:49:11 +03:00
|
|
|
// limitations under the License.
|
|
|
|
|
2023-08-16 04:42:05 +03:00
|
|
|
use egui::{Id, Margin, ScrollArea};
|
2023-08-13 21:09:04 +03:00
|
|
|
|
2023-08-16 04:42:05 +03:00
|
|
|
use crate::gui::Colors;
|
2023-08-03 23:49:11 +03:00
|
|
|
use crate::gui::platform::PlatformCallbacks;
|
2023-08-15 21:20:20 +03:00
|
|
|
use crate::gui::views::{Root, View};
|
2023-08-13 21:09:04 +03:00
|
|
|
use crate::gui::views::wallets::setup::{CommonSetup, ConnectionSetup, RecoverySetup};
|
2023-08-03 23:49:11 +03:00
|
|
|
use crate::gui::views::wallets::wallet::types::{WalletTab, WalletTabType};
|
2023-08-12 04:24:23 +03:00
|
|
|
use crate::gui::views::wallets::wallet::WalletContent;
|
|
|
|
use crate::wallet::{ExternalConnection, Wallet};
|
2023-08-03 23:49:11 +03:00
|
|
|
|
|
|
|
/// Wallet settings tab content.
|
2023-08-11 17:29:25 +03:00
|
|
|
pub struct WalletSettings {
|
2023-08-13 21:09:04 +03:00
|
|
|
/// Common setup content.
|
|
|
|
common_setup: CommonSetup,
|
2023-08-11 17:29:25 +03:00
|
|
|
/// Connection setup content.
|
2023-08-13 21:09:04 +03:00
|
|
|
conn_setup: ConnectionSetup,
|
|
|
|
/// Recovery setup content.
|
|
|
|
recovery_setup: RecoverySetup
|
2023-08-11 17:29:25 +03:00
|
|
|
}
|
2023-08-03 23:49:11 +03:00
|
|
|
|
2023-08-12 04:24:23 +03:00
|
|
|
impl Default for WalletSettings {
|
|
|
|
fn default() -> Self {
|
2023-08-13 21:09:04 +03:00
|
|
|
// Check external connections availability on opening.
|
2023-08-12 04:24:23 +03:00
|
|
|
ExternalConnection::start_ext_conn_availability_check();
|
|
|
|
Self {
|
2023-08-13 21:09:04 +03:00
|
|
|
common_setup: CommonSetup::default(),
|
2023-08-12 04:24:23 +03:00
|
|
|
conn_setup: ConnectionSetup::default(),
|
2023-08-13 21:09:04 +03:00
|
|
|
recovery_setup: RecoverySetup::default()
|
2023-08-12 04:24:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-03 23:49:11 +03:00
|
|
|
impl WalletTab for WalletSettings {
|
|
|
|
fn get_type(&self) -> WalletTabType {
|
|
|
|
WalletTabType::Settings
|
|
|
|
}
|
|
|
|
|
2023-08-11 01:20:41 +03:00
|
|
|
fn ui(&mut self,
|
|
|
|
ui: &mut egui::Ui,
|
|
|
|
frame: &mut eframe::Frame,
|
2023-08-11 17:29:25 +03:00
|
|
|
wallet: &mut Wallet,
|
2023-08-11 01:20:41 +03:00
|
|
|
cb: &dyn PlatformCallbacks) {
|
2023-08-13 21:09:04 +03:00
|
|
|
// Show loading progress if navigation is blocked.
|
|
|
|
if WalletContent::block_navigation_on_sync(wallet) {
|
|
|
|
WalletContent::sync_progress_ui(ui, wallet);
|
2023-08-12 04:24:23 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-16 04:42:05 +03:00
|
|
|
// Show settings content panel.
|
|
|
|
egui::CentralPanel::default()
|
|
|
|
.frame(egui::Frame {
|
|
|
|
stroke: View::DEFAULT_STROKE,
|
|
|
|
fill: Colors::WHITE,
|
|
|
|
inner_margin: Margin {
|
|
|
|
left: View::far_left_inset_margin(ui) + 4.0,
|
|
|
|
right: View::get_right_inset() + 4.0,
|
|
|
|
top: 3.0,
|
|
|
|
bottom: 4.0,
|
|
|
|
},
|
|
|
|
..Default::default()
|
|
|
|
})
|
|
|
|
.show_inside(ui, |ui| {
|
|
|
|
ScrollArea::vertical()
|
2023-10-18 02:26:22 +03:00
|
|
|
.id_source(Id::from("wallet_settings_scroll").with(wallet.get_config().id))
|
2023-08-16 04:42:05 +03:00
|
|
|
.auto_shrink([false; 2])
|
|
|
|
.show(ui, |ui| {
|
|
|
|
ui.vertical_centered(|ui| {
|
|
|
|
View::max_width_ui(ui, Root::SIDE_PANEL_WIDTH * 1.3, |ui| {
|
|
|
|
// Show common wallet setup.
|
|
|
|
self.common_setup.ui(ui, frame, wallet, cb);
|
|
|
|
// Show wallet connections setup.
|
|
|
|
self.conn_setup.wallet_ui(ui, frame, wallet, cb);
|
|
|
|
// Show wallet recovery setup.
|
|
|
|
self.recovery_setup.ui(ui, frame, wallet, cb);
|
|
|
|
});
|
|
|
|
});
|
2023-08-13 21:09:04 +03:00
|
|
|
});
|
|
|
|
});
|
2023-08-03 23:49:11 +03:00
|
|
|
}
|
|
|
|
}
|