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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
crate::ix!();

//-------------------------------------------[.cpp/bitcoin/src/qt/walletmodel.h]

/**
  | Interface to Bitcoin wallet from Qt
  | view code.
  |
  */
#[Q_OBJECT]
pub struct WalletModel {
    base:                          QObject,

    wallet:                        Box<dyn WalletInterface>,
    handler_unload:                Box<dyn Handler>,
    handler_status_changed:        Box<dyn Handler>,
    handler_address_book_changed:  Box<dyn Handler>,
    handler_transaction_changed:   Box<dyn Handler>,
    handler_show_progress:         Box<dyn Handler>,
    handler_watch_only_changed:    Box<dyn Handler>,
    handler_can_get_addrs_changed: Box<dyn Handler>,
    client_model:                  *mut ClientModel,
    node:                          Rc<RefCell<dyn NodeInterface>>,
    have_watch_only:               bool,
    force_check_balance_changed:   bool, // default = { false }

    /**
      | Wallet has an options model for wallet-specific
      | options (transaction fee, for example)
      |
      */
    options_model:                 *mut OptionsModel,

    address_table_model:           *mut AddressTableModel,
    transaction_table_model:       *mut TransactionTableModel,
    recent_requests_table_model:   *mut RecentRequestsTableModel,

    /**
      | Cache some values to be able to detect
      | changes
      |
      */
    cached_balances:               WalletBalances,

    cached_encryption_status:      wallet_model::EncryptionStatus,
    timer:                         *mut QTimer,

    /**
      | Block hash denoting when the last balance
      | update was done.
      |
      */
    cached_last_update_tip:        u256,
}

pub mod wallet_model {

    use super::*;

    /**
      | Returned by sendCoins
      |
      */
    pub enum StatusCode 
    {
        OK,
        InvalidAmount,
        InvalidAddress,
        AmountExceedsBalance,
        AmountWithFeeExceedsBalance,
        DuplicateAddress,

        /**
          | Error returned when wallet is still
          | locked
          |
          */
        TransactionCreationFailed, 
        AbsurdFee,
        PaymentRequestExpired
    }

    pub enum EncryptionStatus
    {
        /**
          | !wallet->IsCrypted()
          |
          */
        Unencrypted,  

        /**
          | wallet->IsCrypted() && wallet->IsLocked()
          |
          */
        Locked,       

        /**
          | wallet->IsCrypted() && !wallet->IsLocked()
          |
          */
        Unlocked      
    }

    /**
      | Return status record for SendCoins,
      | contains error id + information
      |
      */
    pub struct SendCoinsReturn {
        status:               StatusCode,
        reason_commit_failed: String,
    }

    impl SendCoinsReturn {

        pub fn new(
            status:               Option<StatusCode>,
            reason_commit_failed: Option<&str>) -> Self {

            let status: StatusCode = status.unwrap_or(StatusCode::OK);

            let reason_commit_failed: &str =
                     reason_commit_failed.unwrap_or("");

            todo!();
            /*


                : status(_status),
                      reasonCommitFailed(_reasonCommitFailed)
            */
        }
    }

    /**
      | RAI object for unlocking wallet, returned
      | by requestUnlock()
      |
      */
    pub struct UnlockContext {
        wallet: *mut WalletModel,
        valid:  bool,

        /**
          | mutable, as it can be set to false by copying
          |
          */
        relock: RefCell<bool>,
    }

    impl Drop for UnlockContext {
        fn drop(&mut self) {
            todo!();
            /*
                if(valid && relock)
            {
                wallet->setWalletLocked(true);
            }
            */
        }
    }

    impl UnlockContext {
        
        pub fn is_valid(&self) -> bool {
            
            todo!();
            /*
                return valid;
            */
        }

        /**
          | Move operator and constructor transfer
          | the context
          |
          */
        pub fn new_from_other(obj: UnlockContext) -> Self {
        
            todo!();
            /*
                CopyFrom(std::move(obj));
            */
        }
        
        pub fn assign_from(&mut self, rhs: UnlockContext) -> &mut UnlockContext {
            
            todo!();
            /*
                CopyFrom(std::move(rhs)); return *this;
            */
        }
        
        pub fn new(
            wallet: *mut WalletModel,
            valid:  bool,
            relock: bool) -> Self {
        
            todo!();
            /*
                :
                wallet(_wallet),
                valid(_valid),
                relock(_relock)
            */
        }
        
        pub fn copy_from(&mut self, rhs: UnlockContext)  {
            
            todo!();
            /*
                // Transfer context; old object no longer relocks wallet
            *this = rhs;
            rhs.relock = false;
            */
        }
    }
}

//-------------------------------------------[.cpp/bitcoin/src/qt/walletmodel.cpp]
impl Drop for WalletModel {
    fn drop(&mut self) {
        todo!();
        /*
            unsubscribeFromCoreSignals();
        */
    }
}

impl WalletModel {

    pub fn node(&self) -> Rc<RefCell<dyn NodeInterface>> {
        
        todo!();
        /*
            return m_node;
        */
    }
    
    pub fn wallet(&self) -> Rc<RefCell<dyn WalletInterface>> {
        
        todo!();
        /*
            return *m_wallet;
        */
    }
    
    pub fn client_model(&self) -> &mut ClientModel {
        
        todo!();
        /*
            return *m_client_model;
        */
    }
    
    /**
      | Signal that balance in wallet changed
      |
      */
    #[Q_SIGNAL]
    pub fn balance_changed(&mut self, balances: &WalletBalances)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Encryption status of wallet changed
      |
      */
    #[Q_SIGNAL]
    pub fn encryption_status_changed(&mut self)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Signal emitted when wallet needs to be
      | unlocked
      |
      | It is valid behaviour for listeners to keep
      | the wallet locked after this signal; this
      | means that the unlocking failed or was
      | cancelled.
      */
    #[Q_SIGNAL]
    pub fn require_unlock(&mut self)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Fired when a message should be reported
      | to the user
      |
      */
    #[Q_SIGNAL]
    pub fn message(&mut self, 
        title:   &String,
        message: &String,
        style:   u32)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Coins sent: from wallet, to recipient,
      | in (serialized) transaction:
      |
      */
    #[Q_SIGNAL]
    pub fn coins_sent(&mut self, 
        wallet:      *mut WalletModel,
        recipient:   SendCoinsRecipient,
        transaction: QByteArray)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Show progress dialog e.g. for rescan
      |
      */
    #[Q_SIGNAL]
    pub fn show_progress(&mut self, 
        title:      &String,
        n_progress: i32)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Watch-only address added
      |
      */
    #[Q_SIGNAL]
    pub fn notify_watchonly_changed(&mut self, have_watchonly: bool)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Signal that wallet is about to be removed
      |
      */
    #[Q_SIGNAL]
    pub fn unload(&mut self)  {
        
        todo!();
        /*
        
        */
    }

    /**
      | Notify that there are now keys in the
      | keypool
      |
      */
    #[Q_SIGNAL]
    pub fn can_get_addresses_changed(&mut self)  {
        
        todo!();
        /*
        
        */
    }
    
    #[Q_SIGNAL]
    pub fn timer_timeout(&mut self)  {
        
        todo!();
        /*
        
        */
    }

    pub fn new(
        wallet:         Box<dyn WalletInterface>,
        client_model:   &mut ClientModel,
        platform_style: *const PlatformStyle,
        parent:         *mut QObject) -> Self {
    
        todo!();
        /*


            :
        QObject(parent),
        m_wallet(std::move(wallet)),
        m_client_model(&client_model),
        m_node(client_model.node()),
        optionsModel(client_model.getOptionsModel()),
        addressTableModel(nullptr),
        transactionTableModel(nullptr),
        recentRequestsTableModel(nullptr),
        cachedEncryptionStatus(Unencrypted),
        timer(new QTimer(this))
        fHaveWatchOnly = m_wallet->haveWatchOnly();
        addressTableModel = new AddressTableModel(this);
        transactionTableModel = new TransactionTableModel(platformStyle, this);
        recentRequestsTableModel = new RecentRequestsTableModel(this);

        subscribeToCoreSignals();
        */
    }
    
    /**
      | Starts a timer to periodically update
      | the balance
      |
      */
    #[Q_SLOT]
    pub fn start_poll_balance(&mut self)  {
        
        todo!();
        /*
            // This timer will be fired repeatedly to update the balance
        // Since the QTimer::timeout is a private signal, it cannot be used
        // in the typename gui_util::ExceptionSafeConnect directly.
        connect(timer, &QTimer::timeout, this, &WalletModel::timerTimeout);
        typename gui_util::ExceptionSafeConnect(this, &WalletModel::timerTimeout, this, &WalletModel::pollBalanceChanged);
        timer->start(MODEL_UPDATE_DELAY);
        */
    }
    
    pub fn set_client_model(&mut self, client_model: *mut ClientModel)  {
        
        todo!();
        /*
            m_client_model = client_model;
        if (!m_client_model) timer->stop();
        */
    }
    
    /**
      | Wallet status might have changed
      |
      */
    #[Q_SLOT]
    pub fn update_status(&mut self)  {
        
        todo!();
        /*
            EncryptionStatus newEncryptionStatus = getEncryptionStatus();

        if(cachedEncryptionStatus != newEncryptionStatus) {
            Q_EMIT encryptionStatusChanged();
        }
        */
    }
    
    /**
      | Current, immature or unconfirmed balance
      | might have changed - emit 'balanceChanged'
      | if so
      |
      */
    #[Q_SLOT]
    pub fn poll_balance_changed(&mut self)  {
        
        todo!();
        /*
            // Avoid recomputing wallet balances unless a TransactionChanged or
        // BlockTip notification was received.
        if (!fForceCheckBalanceChanged && m_cached_last_update_tip == getLastBlockProcessed()) return;

        // Try to get balances and return early if locks can't be acquired. This
        // avoids the GUI from getting stuck on periodical polls if the core is
        // holding the locks for a longer time - for example, during a wallet
        // rescan.
        typename interfaces::WalletBalances new_balances;
        uint256 block_hash;
        if (!m_wallet->tryGetBalances(new_balances, block_hash)) {
            return;
        }

        if (fForceCheckBalanceChanged || block_hash != m_cached_last_update_tip) {
            fForceCheckBalanceChanged = false;

            // Balance and number of transactions might have changed
            m_cached_last_update_tip = block_hash;

            checkBalanceChanged(new_balances);
            if(transactionTableModel)
                transactionTableModel->updateConfirmations();
        }
        */
    }
    
    pub fn check_balance_changed(&mut self, new_balances: &WalletBalances)  {
        
        todo!();
        /*
            if(new_balances.balanceChanged(m_cached_balances)) {
            m_cached_balances = new_balances;
            Q_EMIT balanceChanged(new_balances);
        }
        */
    }
    
    /**
      | New transaction, or transaction changed
      | status
      |
      */
    #[Q_SLOT]
    pub fn update_transaction(&mut self)  {
        
        todo!();
        /*
            // Balance and number of transactions might have changed
        fForceCheckBalanceChanged = true;
        */
    }
    
    /**
      | New, updated or removed address book
      | entry
      |
      */
    #[Q_SLOT]
    pub fn update_address_book(&mut self, 
        address: &String,
        label:   &String,
        is_mine: bool,
        purpose: &String,
        status:  i32)  {
        
        todo!();
        /*
            if(addressTableModel)
            addressTableModel->updateEntry(address, label, isMine, purpose, status);
        */
    }
    
    /**
      | Watch-only added
      |
      */
    #[Q_SLOT]
    pub fn update_watch_only_flag(&mut self, have_watchonly: bool)  {
        
        todo!();
        /*
            fHaveWatchOnly = fHaveWatchonly;
        Q_EMIT notifyWatchonlyChanged(fHaveWatchonly);
        */
    }
    
    /**
      | Check address for validity
      |
      */
    pub fn validate_address(&mut self, address: &String) -> bool {
        
        todo!();
        /*
            return IsValidDestinationString(address.toStdString());
        */
    }
    
    /**
      | prepare transaction for getting txfee
      | before sending coins
      |
      */
    pub fn prepare_transaction(&mut self, 
        transaction:  &mut WalletModelTransaction,
        coin_control: &CoinControl) -> wallet_model::SendCoinsReturn {
        
        todo!();
        /*
            CAmount total = 0;
        bool fSubtractFeeFromAmount = false;
        QList<SendCoinsRecipient> recipients = transaction.getRecipients();
        std::vector<CRecipient> vecSend;

        if(recipients.empty())
        {
            return OK;
        }

        QSet<QString> setAddress; // Used to detect duplicates
        int nAddresses = 0;

        // Pre-check input data for validity
        for (const SendCoinsRecipient &rcp : recipients)
        {
            if (rcp.fSubtractFeeFromAmount)
                fSubtractFeeFromAmount = true;
            {   // User-entered bitcoin address / amount:
                if(!validateAddress(rcp.address))
                {
                    return InvalidAddress;
                }
                if(rcp.amount <= 0)
                {
                    return InvalidAmount;
                }
                setAddress.insert(rcp.address);
                ++nAddresses;

                CScript scriptPubKey = GetScriptForDestination(DecodeDestination(rcp.address.toStdString()));
                CRecipient recipient = {scriptPubKey, rcp.amount, rcp.fSubtractFeeFromAmount};
                vecSend.push_back(recipient);

                total += rcp.amount;
            }
        }
        if(setAddress.size() != nAddresses)
        {
            return DuplicateAddress;
        }

        CAmount nBalance = m_wallet->getAvailableBalance(coinControl);

        if(total > nBalance)
        {
            return AmountExceedsBalance;
        }

        {
            CAmount nFeeRequired = 0;
            int nChangePosRet = -1;
            bilingual_str error;

            auto& newTx = transaction.getWtx();
            newTx = m_wallet->createTransaction(vecSend, coinControl, !wallet().privateKeysDisabled() /* sign */, nChangePosRet, nFeeRequired, error);
            transaction.setTransactionFee(nFeeRequired);
            if (fSubtractFeeFromAmount && newTx)
                transaction.reassignAmounts(nChangePosRet);

            if(!newTx)
            {
                if(!fSubtractFeeFromAmount && (total + nFeeRequired) > nBalance)
                {
                    return SendCoinsReturn(AmountWithFeeExceedsBalance);
                }
                Q_EMIT message(tr("Send Coins"), QString::fromStdString(error.translated),
                    CClientUIInterface::MSG_ERROR);
                return TransactionCreationFailed;
            }

            // Reject absurdly high fee. (This can never happen because the
            // wallet never creates transactions with fee greater than
            // m_default_max_tx_fee. This merely a belt-and-suspenders check).
            if (nFeeRequired > m_wallet->getDefaultMaxTxFee()) {
                return AbsurdFee;
            }
        }

        return SendCoinsReturn(OK);
        */
    }
    
    /**
      | Send coins to a list of recipients
      |
      */
    pub fn send_coins(&mut self, transaction: &mut WalletModelTransaction) -> wallet_model::SendCoinsReturn {
        
        todo!();
        /*
            QByteArray transaction_array; /* store serialized transaction */

        {
            std::vector<std::pair<std::string, std::string>> vOrderForm;
            for (const SendCoinsRecipient &rcp : transaction.getRecipients())
            {
                if (!rcp.message.isEmpty()) // Message from normal bitcoin:URI (bitcoin:123...?message=example)
                    vOrderForm.emplace_back("Message", rcp.message.toStdString());
            }

            auto& newTx = transaction.getWtx();
            wallet().commitTransaction(newTx, {} /* mapValue */, std::move(vOrderForm));

            DataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
            ssTx << *newTx;
            transaction_array.append((const char*)ssTx.data(), ssTx.size());
        }

        // Add addresses / update labels that we've sent to the address book,
        // and emit coinsSent signal for each recipient
        for (const SendCoinsRecipient &rcp : transaction.getRecipients())
        {
            {
                std::string strAddress = rcp.address.toStdString();
                TxDestination dest = DecodeDestination(strAddress);
                std::string strLabel = rcp.label.toStdString();
                {
                    // Check if we have a new address or an updated label
                    std::string name;
                    if (!m_wallet->getAddress(
                         dest, &name, /* is_mine= */ nullptr, /* purpose= */ nullptr))
                    {
                        m_wallet->setAddressBook(dest, strLabel, "send");
                    }
                    else if (name != strLabel)
                    {
                        m_wallet->setAddressBook(dest, strLabel, ""); // "" means don't change purpose
                    }
                }
            }
            Q_EMIT coinsSent(this, rcp, transaction_array);
        }

        checkBalanceChanged(m_wallet->getBalances()); // update balance immediately, otherwise there could be a short noticeable delay until pollBalanceChanged hits

        return SendCoinsReturn(OK);
        */
    }
    
    pub fn get_options_model(&mut self) -> *mut OptionsModel {
        
        todo!();
        /*
            return optionsModel;
        */
    }
    
    pub fn get_address_table_model(&mut self) -> *mut AddressTableModel {
        
        todo!();
        /*
            return addressTableModel;
        */
    }
    
    pub fn get_transaction_table_model(&mut self) -> *mut TransactionTableModel {
        
        todo!();
        /*
            return transactionTableModel;
        */
    }
    
    pub fn get_recent_requests_table_model(&mut self) -> *mut RecentRequestsTableModel {
        
        todo!();
        /*
            return recentRequestsTableModel;
        */
    }
    
    pub fn get_encryption_status(&self) -> wallet_model::EncryptionStatus {
        
        todo!();
        /*
            if(!m_wallet->isCrypted())
        {
            return Unencrypted;
        }
        else if(m_wallet->isLocked())
        {
            return Locked;
        }
        else
        {
            return Unlocked;
        }
        */
    }
    
    /**
      | Wallet encryption
      |
      */
    pub fn set_wallet_encrypted(&mut self, passphrase: &SecureString) -> bool {
        
        todo!();
        /*
            return m_wallet->encryptWallet(passphrase);
        */
    }
    
    /**
      | Passphrase only needed when unlocking
      |
      */
    pub fn set_wallet_locked(&mut self, 
        locked:      bool,
        pass_phrase: Option<&SecureString>) -> bool {

        let pass_phrase: &SecureString = 
            pass_phrase.unwrap_or(&SecureString::default());
        
        todo!();
        /*
            if(locked)
        {
            // Lock
            return m_wallet->lock();
        }
        else
        {
            // Unlock
            return m_wallet->unlock(passPhrase);
        }
        */
    }
    
    pub fn change_passphrase(&mut self, 
        old_pass: &SecureString,
        new_pass: &SecureString) -> bool {
        
        todo!();
        /*
            m_wallet->lock(); // Make sure wallet is locked before attempting pass change
        return m_wallet->changeWalletPassphrase(oldPass, newPass);
        */
    }

    pub fn subscribe_to_core_signals(&mut self)  {
        
        todo!();
        /*
            // Connect signals to wallet
        m_handler_unload = m_wallet->handleUnload(std::bind(&NotifyUnload, this));
        m_handler_status_changed = m_wallet->handleStatusChanged(std::bind(&NotifyKeyStoreStatusChanged, this));
        m_handler_address_book_changed = m_wallet->handleAddressBookChanged(std::bind(NotifyAddressBookChanged, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5));
        m_handler_transaction_changed = m_wallet->handleTransactionChanged(std::bind(NotifyTransactionChanged, this, std::placeholders::_1, std::placeholders::_2));
        m_handler_show_progress = m_wallet->handleShowProgress(std::bind(ShowProgress, this, std::placeholders::_1, std::placeholders::_2));
        m_handler_watch_only_changed = m_wallet->handleWatchOnlyChanged(std::bind(NotifyWatchonlyChanged, this, std::placeholders::_1));
        m_handler_can_get_addrs_changed = m_wallet->handleCanGetAddressesChanged(std::bind(NotifyCanGetAddressesChanged, this));
        */
    }
    
    pub fn unsubscribe_from_core_signals(&mut self)  {
        
        todo!();
        /*
            // Disconnect signals from wallet
        m_handler_unload->disconnect();
        m_handler_status_changed->disconnect();
        m_handler_address_book_changed->disconnect();
        m_handler_transaction_changed->disconnect();
        m_handler_show_progress->disconnect();
        m_handler_watch_only_changed->disconnect();
        m_handler_can_get_addrs_changed->disconnect();
        */
    }

    /**
      | WalletModel::UnlockContext implementation
      |
      */
    pub fn request_unlock(&mut self) -> wallet_model::UnlockContext {
        
        todo!();
        /*
            bool was_locked = getEncryptionStatus() == Locked;
        if(was_locked)
        {
            // Request UI to unlock wallet
            Q_EMIT requireUnlock();
        }
        // If wallet is still locked, unlock was failed or cancelled, mark context as invalid
        bool valid = getEncryptionStatus() != Locked;

        return UnlockContext(this, valid, was_locked);
        */
    }
    
    pub fn bump_fee(&mut self, 
        hash:     u256,
        new_hash: &mut u256) -> bool {
        
        todo!();
        /*
            CCoinControl coin_control;
        coin_control.m_signal_bip125_rbf = true;
        std::vector<bilingual_str> errors;
        CAmount old_fee;
        CAmount new_fee;
        CMutableTransaction mtx;
        if (!m_wallet->createBumpTransaction(hash, coin_control, errors, old_fee, new_fee, mtx)) {
            QMessageBox::critical(nullptr, tr("Fee bump error"), tr("Increasing transaction fee failed") + "<br />(" +
                (errors.size() ? QString::fromStdString(errors[0].translated) : "") +")");
            return false;
        }

        const bool create_psbt = m_wallet->privateKeysDisabled();

        // allow a user based fee verification
        QString questionString = create_psbt ? tr("Do you want to draft a transaction with fee increase?") : tr("Do you want to increase the fee?");
        questionString.append("<br />");
        questionString.append("<table style=\"text-align: left;\">");
        questionString.append("<tr><td>");
        questionString.append(tr("Current fee:"));
        questionString.append("</td><td>");
        questionString.append(BitcoinUnits::formatHtmlWithUnit(getOptionsModel()->getDisplayUnit(), old_fee));
        questionString.append("</td></tr><tr><td>");
        questionString.append(tr("Increase:"));
        questionString.append("</td><td>");
        questionString.append(BitcoinUnits::formatHtmlWithUnit(getOptionsModel()->getDisplayUnit(), new_fee - old_fee));
        questionString.append("</td></tr><tr><td>");
        questionString.append(tr("New fee:"));
        questionString.append("</td><td>");
        questionString.append(BitcoinUnits::formatHtmlWithUnit(getOptionsModel()->getDisplayUnit(), new_fee));
        questionString.append("</td></tr></table>");

        // Display warning in the "Confirm fee bump" window if the "Coin Control Features" option is enabled
        if (getOptionsModel()->getCoinControlFeatures()) {
            questionString.append("<br><br>");
            questionString.append(tr("Warning: This may pay the additional fee by reducing change outputs or adding inputs, when necessary. It may add a new change output if one does not already exist. These changes may potentially leak privacy."));
        }

        auto confirmationDialog = new SendConfirmationDialog(tr("Confirm fee bump"), questionString);
        confirmationDialog->setAttribute(QtWA_DeleteOnClose);
        // TODO: Replace QDialog::exec() with safer QDialog::show().
        const auto retval = static_cast<QMessageBox::StandardButton>(confirmationDialog->exec());

        // cancel sign&broadcast if user doesn't want to bump the fee
        if (retval != QMessageBox::Yes) {
            return false;
        }

        WalletModel::UnlockContext ctx(requestUnlock());
        if(!ctx.isValid())
        {
            return false;
        }

        // Short-circuit if we are returning a bumped transaction PSBT to clipboard
        if (create_psbt) {
            PartiallySignedTransaction psbtx(mtx);
            bool complete = false;
            const TransactionError err = wallet().fillPSBT(SIGHASH_ALL, false /* sign */, true /* bip32derivs */, nullptr, psbtx, complete);
            if (err != TransactionError::OK || complete) {
                QMessageBox::critical(nullptr, tr("Fee bump error"), tr("Can't draft transaction."));
                return false;
            }
            // Serialize the PSBT
            DataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
            ssTx << psbtx;
            typename gui_util::setClipboard(EncodeBase64(ssTx.str()).c_str());
            Q_EMIT message(tr("PSBT copied"), "Copied to clipboard", CClientUIInterface::MSG_INFORMATION);
            return true;
        }

        // sign bumped transaction
        if (!m_wallet->signBumpTransaction(mtx)) {
            QMessageBox::critical(nullptr, tr("Fee bump error"), tr("Can't sign transaction."));
            return false;
        }
        // commit the bumped transaction
        if(!m_wallet->commitBumpTransaction(hash, std::move(mtx), errors, new_hash)) {
            QMessageBox::critical(nullptr, tr("Fee bump error"), tr("Could not commit transaction") + "<br />(" +
                QString::fromStdString(errors[0].translated)+")");
            return false;
        }
        return true;
        */
    }
    
    pub fn display_address(&mut self, address: String) -> bool {
        
        todo!();
        /*
            TxDestination dest = DecodeDestination(sAddress);
        bool res = false;
        try {
            res = m_wallet->displayAddress(dest);
        } catch (const std::runtime_error& e) {
            QMessageBox::critical(nullptr, tr("Can't display address"), e.what());
        }
        return res;
        */
    }
    
    pub fn is_wallet_enabled(&mut self) -> bool {
        
        todo!();
        /*
            return !gArgs.GetBoolArg("-disablewallet", DEFAULT_DISABLE_WALLET);
        */
    }
    
    pub fn get_wallet_name(&self) -> String {
        
        todo!();
        /*
            return QString::fromStdString(m_wallet->getWalletName());
        */
    }
    
    pub fn get_display_name(&self) -> String {
        
        todo!();
        /*
            const QString name = getWalletName();
        return name.isEmpty() ? "["+tr("default wallet")+"]" : name;
        */
    }
    
    pub fn is_multiwallet(&mut self) -> bool {
        
        todo!();
        /*
            return m_node.walletClient().getWallets().size() > 1;
        */
    }
    
    pub fn refresh(&mut self, pk_hash_only: Option<bool>)  {
        
        let pk_hash_only: bool = pk_hash_only.unwrap_or(false);

        todo!();
        /*
            addressTableModel = new AddressTableModel(this, pk_hash_only);
        */
    }
    
    pub fn get_last_block_processed(&self) -> u256 {
        
        todo!();
        /*
            return m_client_model ? m_client_model->getBestBlockHash() : uint256{};
        */
    }
}

/**
  | Handlers for core signals
  |
  */
pub fn notify_unload(wallet_model: *mut WalletModel)  {
    
    todo!();
        /*
            qDebug() << "NotifyUnload";
        bool invoked = QMetaObject::invokeMethod(walletModel, "unload");
        assert(invoked);
        */
}

pub fn notify_key_store_status_changed(walletmodel: *mut WalletModel)  {
    
    todo!();
        /*
            qDebug() << "NotifyKeyStoreStatusChanged";
        bool invoked = QMetaObject::invokeMethod(walletmodel, "updateStatus", QtQueuedConnection);
        assert(invoked);
        */
}

pub fn notify_address_book_changed(
        walletmodel: *mut WalletModel,
        address:     &TxDestination,
        label:       &String,
        is_mine:     bool,
        purpose:     &String,
        status:      ChangeType)  {
    
    todo!();
        /*
            QString strAddress = QString::fromStdString(EncodeDestination(address));
        QString strLabel = QString::fromStdString(label);
        QString strPurpose = QString::fromStdString(purpose);

        qDebug() << "NotifyAddressBookChanged: " + strAddress + " " + strLabel + " isMine=" + QString::number(isMine) + " purpose=" + strPurpose + " status=" + QString::number(status);
        bool invoked = QMetaObject::invokeMethod(walletmodel, "updateAddressBook", QtQueuedConnection,
                                  Q_ARG(QString, strAddress),
                                  Q_ARG(QString, strLabel),
                                  Q_ARG(bool, isMine),
                                  Q_ARG(QString, strPurpose),
                                  Q_ARG(int, status));
        assert(invoked);
        */
}

pub fn notify_transaction_changed(
        walletmodel: *mut WalletModel,
        hash:        &u256,
        status:      ChangeType)  {
    
    todo!();
        /*
            Q_UNUSED(hash);
        Q_UNUSED(status);
        bool invoked = QMetaObject::invokeMethod(walletmodel, "updateTransaction", QtQueuedConnection);
        assert(invoked);
        */
}

pub fn show_progress(
        walletmodel: *mut WalletModel,
        title:       &String,
        n_progress:  i32)  {
    
    todo!();
        /*
            // emits signal "showProgress"
        bool invoked = QMetaObject::invokeMethod(walletmodel, "showProgress", QtQueuedConnection,
                                  Q_ARG(QString, QString::fromStdString(title)),
                                  Q_ARG(int, nProgress));
        assert(invoked);
        */
}

pub fn notify_watchonly_changed(
        walletmodel:    *mut WalletModel,
        have_watchonly: bool)  {
    
    todo!();
        /*
            bool invoked = QMetaObject::invokeMethod(walletmodel, "updateWatchOnlyFlag", QtQueuedConnection,
                                  Q_ARG(bool, fHaveWatchonly));
        assert(invoked);
        */
}

pub fn notify_can_get_addresses_changed(walletmodel: *mut WalletModel)  {
    
    todo!();
        /*
            bool invoked = QMetaObject::invokeMethod(walletmodel, "canGetAddressesChanged");
        assert(invoked);
        */
}