1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/walletframe.h]
/**
| A container for embedding all wallet-related
| controls into BitcoinGUI.
|
| The purpose of this class is to allow
| future refinements of the wallet controls
| with minimal need for further modifications
| to BitcoinGUI, thus greatly simplifying
| merges while reducing the risk of breaking
| top-level stuff.
|
*/
#[Q_OBJECT]
pub struct WalletFrame {
base: QFrame,
wallet_stack: *mut QStackedWidget,
client_model: *mut ClientModel,
map_wallet_views: QMap<*mut WalletModel,*mut WalletView>,
out_of_sync: bool,
platform_style: *const PlatformStyle,
size_hint: QSize,
}
//-------------------------------------------[.cpp/bitcoin/src/qt/walletframe.cpp]
impl WalletFrame {
pub fn size_hint(&self) -> QSize {
todo!();
/*
return m_size_hint;
*/
}
#[Q_SIGNAL]
pub fn create_wallet_button_clicked(&mut self) {
todo!();
/*
*/
}
#[Q_SIGNAL]
pub fn message(&mut self,
title: &String,
message: &String,
style: u32) {
todo!();
/*
*/
}
#[Q_SIGNAL]
pub fn current_wallet_set(&mut self) {
todo!();
/*
*/
}
pub fn new(
platform_style: *const PlatformStyle,
parent: *mut QWidget) -> Self {
todo!();
/*
: QFrame(parent),
platformStyle(_platformStyle),
m_size_hint(OverviewPage{platformStyle, nullptr}.sizeHint())
// Leave HBox hook for adding a list view later
QHBoxLayout *walletFrameLayout = new QHBoxLayout(this);
setContentsMargins(0,0,0,0);
walletStack = new QStackedWidget(this);
walletFrameLayout->setContentsMargins(0,0,0,0);
walletFrameLayout->addWidget(walletStack);
// hbox for no wallet
QGroupBox* no_wallet_group = new QGroupBox(walletStack);
QVBoxLayout* no_wallet_layout = new QVBoxLayout(no_wallet_group);
QLabel *noWallet = new QLabel(tr("No wallet has been loaded.\nGo to File > Open Wallet to load a wallet.\n- OR -"));
noWallet->setAlignment(QtAlignCenter);
no_wallet_layout->addWidget(noWallet, 0, QtAlignHCenter | QtAlignBottom);
// A button for create wallet dialog
QPushButton* create_wallet_button = new QPushButton(tr("Create a new wallet"), walletStack);
connect(create_wallet_button, &QPushButton::clicked, this, &WalletFrame::createWalletButtonClicked);
no_wallet_layout->addWidget(create_wallet_button, 0, QtAlignHCenter | QtAlignTop);
no_wallet_group->setLayout(no_wallet_layout);
walletStack->addWidget(no_wallet_group);
*/
}
pub fn set_client_model(&mut self, client_model: *mut ClientModel) {
todo!();
/*
this->clientModel = _clientModel;
for (auto i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i) {
i.value()->setClientModel(_clientModel);
}
*/
}
pub fn add_view(&mut self, wallet_view: *mut WalletView) -> bool {
todo!();
/*
if (!clientModel) return false;
if (mapWalletViews.count(walletView->getWalletModel()) > 0) return false;
walletView->setClientModel(clientModel);
walletView->showOutOfSyncWarning(bOutOfSync);
WalletView* current_wallet_view = currentWalletView();
if (current_wallet_view) {
walletView->setCurrentIndex(current_wallet_view->currentIndex());
} else {
walletView->gotoOverviewPage();
}
walletStack->addWidget(walletView);
mapWalletViews[walletView->getWalletModel()] = walletView;
return true;
*/
}
pub fn set_current_wallet(&mut self, wallet_model: *mut WalletModel) {
todo!();
/*
if (mapWalletViews.count(wallet_model) == 0) return;
// Stop the effect of hidden widgets on the size hint of the shown one in QStackedWidget.
WalletView* view_about_to_hide = currentWalletView();
if (view_about_to_hide) {
QSizePolicy sp = view_about_to_hide->sizePolicy();
sp.setHorizontalPolicy(QSizePolicy::Ignored);
view_about_to_hide->setSizePolicy(sp);
}
WalletView *walletView = mapWalletViews.value(wallet_model);
assert(walletView);
// Set or restore the default QSizePolicy which could be set to QSizePolicy::Ignored previously.
QSizePolicy sp = walletView->sizePolicy();
sp.setHorizontalPolicy(QSizePolicy::Preferred);
walletView->setSizePolicy(sp);
walletView->updateGeometry();
walletStack->setCurrentWidget(walletView);
Q_EMIT currentWalletSet();
*/
}
pub fn remove_wallet(&mut self, wallet_model: *mut WalletModel) {
todo!();
/*
if (mapWalletViews.count(wallet_model) == 0) return;
WalletView *walletView = mapWalletViews.take(wallet_model);
walletStack->removeWidget(walletView);
delete walletView;
*/
}
pub fn remove_all_wallets(&mut self) {
todo!();
/*
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
walletStack->removeWidget(i.value());
mapWalletViews.clear();
*/
}
pub fn handle_payment_request(&mut self, recipient: &SendCoinsRecipient) -> bool {
todo!();
/*
WalletView *walletView = currentWalletView();
if (!walletView)
return false;
return walletView->handlePaymentRequest(recipient);
*/
}
pub fn show_out_of_sync_warning(&mut self, show: bool) {
todo!();
/*
bOutOfSync = fShow;
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
i.value()->showOutOfSyncWarning(fShow);
*/
}
/**
| Switch to overview (home) page
|
*/
#[Q_SLOT]
pub fn goto_overview_page(&mut self) {
todo!();
/*
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
i.value()->gotoOverviewPage();
*/
}
/**
| Switch to history (transactions) page
|
*/
#[Q_SLOT]
pub fn goto_history_page(&mut self) {
todo!();
/*
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
i.value()->gotoHistoryPage();
*/
}
/**
| Switch to receive coins page
|
*/
#[Q_SLOT]
pub fn goto_receive_coins_page(&mut self) {
todo!();
/*
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
i.value()->gotoReceiveCoinsPage();
*/
}
/**
| Switch to send coins page
|
*/
#[Q_SLOT]
pub fn goto_send_coins_page(&mut self, addr: Option<&str>) {
let addr: &str = addr.unwrap_or("");
todo!();
/*
QMap<WalletModel*, WalletView*>::const_iterator i;
for (i = mapWalletViews.constBegin(); i != mapWalletViews.constEnd(); ++i)
i.value()->gotoSendCoinsPage(addr);
*/
}
/**
| Show Sign/Verify Message dialog and
| switch to sign message tab
|
*/
#[Q_SLOT]
pub fn goto_sign_message_tab(&mut self, addr: Option<&str>) {
let addr: &str = addr.unwrap_or("");
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->gotoSignMessageTab(addr);
*/
}
/**
| Show Sign/Verify Message dialog and
| switch to verify message tab
|
*/
#[Q_SLOT]
pub fn goto_verify_message_tab(&mut self, addr: Option<&str>) {
let addr: &str = addr.unwrap_or("");
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->gotoVerifyMessageTab(addr);
*/
}
/**
| Load Partially Signed Bitcoin Transaction
|
*/
#[Q_SLOT]
pub fn goto_loadpsbt(&mut self, from_clipboard: Option<bool>) {
let from_clipboard: bool = from_clipboard.unwrap_or(false);
todo!();
/*
std::string data;
if (from_clipboard) {
std::string raw = QApplication::clipboard()->text().toStdString();
bool invalid;
data = DecodeBase64(raw, &invalid);
if (invalid) {
Q_EMIT message(tr("Error"), tr("Unable to decode PSBT from clipboard (invalid base64)"), CClientUIInterface::MSG_ERROR);
return;
}
} else {
QString filename = typename gui_util::getOpenFileName(this,
tr("Load Transaction Data"), QString(),
tr("Partially Signed Transaction (*.psbt)"), nullptr);
if (filename.isEmpty()) return;
if (GetFileSize(filename.toLocal8Bit().data(), MAX_FILE_SIZE_PSBT) == MAX_FILE_SIZE_PSBT) {
Q_EMIT message(tr("Error"), tr("PSBT file must be smaller than 100 MiB"), CClientUIInterface::MSG_ERROR);
return;
}
std::ifstream in(filename.toLocal8Bit().data(), std::ios::binary);
data = std::string(std::istreambuf_iterator<char>{in}, {});
}
std::string error;
PartiallySignedTransaction psbtx;
if (!DecodeRawPSBT(psbtx, data, error)) {
Q_EMIT message(tr("Error"), tr("Unable to decode PSBT") + "\n" + QString::fromStdString(error), CClientUIInterface::MSG_ERROR);
return;
}
auto dlg = new PSBTOperationsDialog(this, currentWalletModel(), clientModel);
dlg->openWithPSBT(psbtx);
typename gui_util::ShowModalDialogAndDeleteOnClose(dlg);
*/
}
/**
| Encrypt the wallet
|
*/
#[Q_SLOT]
pub fn encrypt_wallet(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->encryptWallet();
*/
}
/**
| Backup the wallet
|
*/
#[Q_SLOT]
pub fn backup_wallet(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->backupWallet();
*/
}
/**
| Change encrypted wallet passphrase
|
*/
#[Q_SLOT]
pub fn change_passphrase(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->changePassphrase();
*/
}
/**
| Ask for passphrase to unlock wallet
| temporarily
|
*/
#[Q_SLOT]
pub fn unlock_wallet(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->unlockWallet();
*/
}
/**
| Show used sending addresses
|
*/
#[Q_SLOT]
pub fn used_sending_addresses(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->usedSendingAddresses();
*/
}
/**
| Show used receiving addresses
|
*/
#[Q_SLOT]
pub fn used_receiving_addresses(&mut self) {
todo!();
/*
WalletView *walletView = currentWalletView();
if (walletView)
walletView->usedReceivingAddresses();
*/
}
pub fn current_wallet_view(&self) -> *mut WalletView {
todo!();
/*
return qobject_cast<WalletView*>(walletStack->currentWidget());
*/
}
pub fn current_wallet_model(&self) -> *mut WalletModel {
todo!();
/*
WalletView* wallet_view = currentWalletView();
return wallet_view ? wallet_view->getWalletModel() : nullptr;
*/
}
}