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
1142
1143
1144
1145
1146
1147
1148
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/transactiontablemodel.h]
/**
| UI model for the transaction table of
| a wallet.
|
*/
#[Q_OBJECT]
pub struct TransactionTableModel {
base: QAbstractTableModel,
wallet_model: *mut WalletModel,
handler_transaction_changed: Box<dyn Handler>,
handler_show_progress: Box<dyn Handler>,
columns: QStringList,
priv_: *mut TransactionTablePriv,
processing_queued_transactions: bool,
platform_style: *const PlatformStyle,
}
pub mod transaction_table_model {
use super::*;
pub enum ColumnIndex {
Status = 0,
Watchonly = 1,
Date = 2,
Type = 3,
ToAddress = 4,
Amount = 5
}
/**
| Roles to get specific information from
| a transaction row.
|
| These are independent of column.
|
*/
#[repr(i32)]
pub enum RoleIndex {
/**
| Type of transaction
|
*/
TypeRole = USER_ROLE,
/**
| Date and time this transaction was created
|
*/
DateRole,
/**
| Watch-only boolean
|
*/
WatchonlyRole,
/**
| Watch-only icon
|
*/
WatchonlyDecorationRole,
/**
| Long description (HTML format)
|
*/
LongDescriptionRole,
/**
| Address of transaction
|
*/
AddressRole,
/**
| Label of address related to transaction
|
*/
LabelRole,
/**
| Net amount of transaction
|
*/
AmountRole,
/**
| Transaction hash
|
*/
TxHashRole,
/**
| Transaction data, hex-encoded
|
*/
TxHexRole,
/**
| Whole transaction as plain text
|
*/
TxPlainTextRole,
/**
| Is transaction confirmed?
|
*/
ConfirmedRole,
/**
| Formatted amount, without brackets
| when unconfirmed
|
*/
FormattedAmountRole,
/**
| Transaction status (TransactionRecord::Status)
|
*/
StatusRole,
/**
| Unprocessed icon
|
*/
RawDecorationRole,
}
}
impl Drop for TransactionTableModel {
fn drop(&mut self) {
todo!();
/*
unsubscribeFromCoreSignals();
delete priv;
*/
}
}
impl TransactionTableModel {
pub fn processing_queued_transactions(&self) -> bool {
todo!();
/*
return fProcessingQueuedTransactions;
*/
}
/**
| Needed to update fProcessingQueuedTransactions
| through a QueuedConnection
|
*/
#[Q_SLOT]
pub fn set_processing_queued_transactions(&mut self, value: bool) {
todo!();
/*
fProcessingQueuedTransactions = value;
*/
}
pub fn new(
platform_style: *const PlatformStyle,
parent: *mut WalletModel) -> Self {
todo!();
/*
:
QAbstractTableModel(parent),
walletModel(parent),
priv(new TransactionTablePriv(this)),
fProcessingQueuedTransactions(false),
platformStyle(_platformStyle)
subscribeToCoreSignals();
columns << QString() << QString() << tr("Date") << tr("Type") << tr("Label") << BitcoinUnits::getAmountColumnTitle(walletModel->getOptionsModel()->getDisplayUnit());
priv->refreshWallet(walletModel->wallet());
connect(walletModel->getOptionsModel(), &OptionsModel::displayUnitChanged, this, &TransactionTableModel::updateDisplayUnit);
*/
}
/**
| Updates the column title to "Amount
| (DisplayUnit)" and emits headerDataChanged()
| signal for table headers to react.
|
*/
#[Q_SLOT]
pub fn update_amount_column_title(&mut self) {
todo!();
/*
columns[Amount] = BitcoinUnits::getAmountColumnTitle(walletModel->getOptionsModel()->getDisplayUnit());
Q_EMIT headerDataChanged(QtHorizontal,Amount,Amount);
*/
}
/**
| New transaction, or transaction changed
| status
|
*/
#[Q_SLOT]
pub fn update_transaction(&mut self,
hash: &String,
status: i32,
show_transaction: bool) {
todo!();
/*
uint256 updated;
updated.SetHex(hash.toStdString());
priv->updateWallet(walletModel->wallet(), updated, status, showTransaction);
*/
}
#[Q_SLOT]
pub fn update_confirmations(&mut self) {
todo!();
/*
// Blocks came in since last poll.
// Invalidate status (number of confirmations) and (possibly) description
// for all rows. Qt is smart enough to only actually request the data for the
// visible rows.
Q_EMIT dataChanged(index(0, Status), index(priv->size()-1, Status));
Q_EMIT dataChanged(index(0, ToAddress), index(priv->size()-1, ToAddress));
*/
}
pub fn row_count(&self, parent: &QModelIndex) -> i32 {
todo!();
/*
if (parent.isValid()) {
return 0;
}
return priv->size();
*/
}
pub fn column_count(&self, parent: &QModelIndex) -> i32 {
todo!();
/*
if (parent.isValid()) {
return 0;
}
return columns.length();
*/
}
pub fn format_tx_status(&self, wtx: *const TransactionRecord) -> String {
todo!();
/*
QString status;
switch(wtx->status.status)
{
case TransactionStatus::OpenUntilBlock:
status = tr("Open for %n more block(s)","",wtx->status.open_for);
break;
case TransactionStatus::OpenUntilDate:
status = tr("Open until %1").arg(typename gui_util::dateTimeStr(wtx->status.open_for));
break;
case TransactionStatus::Unconfirmed:
status = tr("Unconfirmed");
break;
case TransactionStatus::Abandoned:
status = tr("Abandoned");
break;
case TransactionStatus::Confirming:
status = tr("Confirming (%1 of %2 recommended confirmations)").arg(wtx->status.depth).arg(TransactionRecord::RecommendedNumConfirmations);
break;
case TransactionStatus::Confirmed:
status = tr("Confirmed (%1 confirmations)").arg(wtx->status.depth);
break;
case TransactionStatus::Conflicted:
status = tr("Conflicted");
break;
case TransactionStatus::Immature:
status = tr("Immature (%1 confirmations, will be available after %2)").arg(wtx->status.depth).arg(wtx->status.depth + wtx->status.matures_in);
break;
case TransactionStatus::NotAccepted:
status = tr("Generated but not accepted");
break;
}
return status;
*/
}
pub fn format_tx_date(&self, wtx: *const TransactionRecord) -> String {
todo!();
/*
if(wtx->time)
{
return typename gui_util::dateTimeStr(wtx->time);
}
return QString();
*/
}
/**
| Look up address in address book, if found
| return label (address) otherwise just
| return (address)
|
*/
pub fn lookup_address(&self,
address: &String,
tooltip: bool) -> String {
todo!();
/*
QString label = walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(address));
QString description;
if(!label.isEmpty())
{
description += label;
}
if(label.isEmpty() || tooltip)
{
description += QString(" (") + QString::fromStdString(address) + QString(")");
}
return description;
*/
}
pub fn format_tx_type(&self, wtx: *const TransactionRecord) -> String {
todo!();
/*
switch(wtx->type)
{
case TransactionRecord::RecvWithAddress:
return tr("Received with");
case TransactionRecord::RecvFromOther:
return tr("Received from");
case TransactionRecord::SendToAddress:
case TransactionRecord::SendToOther:
return tr("Sent to");
case TransactionRecord::SendToSelf:
return tr("Payment to yourself");
case TransactionRecord::Generated:
return tr("Mined");
default:
return QString();
}
*/
}
pub fn tx_address_decoration(&self, wtx: *const TransactionRecord) -> QVariant {
todo!();
/*
switch(wtx->type)
{
case TransactionRecord::Generated:
return QIcon(":/icons/tx_mined");
case TransactionRecord::RecvWithAddress:
case TransactionRecord::RecvFromOther:
return QIcon(":/icons/tx_input");
case TransactionRecord::SendToAddress:
case TransactionRecord::SendToOther:
return QIcon(":/icons/tx_output");
default:
return QIcon(":/icons/tx_inout");
}
*/
}
pub fn format_tx_to_address(&self,
wtx: *const TransactionRecord,
tooltip: bool) -> String {
todo!();
/*
QString watchAddress;
if (tooltip && wtx->involvesWatchAddress) {
// Mark transactions involving watch-only addresses by adding " (watch-only)"
watchAddress = QLatin1String(" (") + tr("watch-only") + QLatin1Char(')');
}
switch(wtx->type)
{
case TransactionRecord::RecvFromOther:
return QString::fromStdString(wtx->address) + watchAddress;
case TransactionRecord::RecvWithAddress:
case TransactionRecord::SendToAddress:
case TransactionRecord::Generated:
return lookupAddress(wtx->address, tooltip) + watchAddress;
case TransactionRecord::SendToOther:
return QString::fromStdString(wtx->address) + watchAddress;
case TransactionRecord::SendToSelf:
return lookupAddress(wtx->address, tooltip) + watchAddress;
default:
return tr("(n/a)") + watchAddress;
}
*/
}
pub fn address_color(&self, wtx: *const TransactionRecord) -> QVariant {
todo!();
/*
// Show addresses without label in a less visible color
switch(wtx->type)
{
case TransactionRecord::RecvWithAddress:
case TransactionRecord::SendToAddress:
case TransactionRecord::Generated:
{
QString label = walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(wtx->address));
if(label.isEmpty())
return COLOR_BAREADDRESS;
} break;
case TransactionRecord::SendToSelf:
return COLOR_BAREADDRESS;
default:
break;
}
return QVariant();
*/
}
pub fn format_tx_amount(&self,
wtx: *const TransactionRecord,
show_unconfirmed: Option<bool>,
separators: Option<bitcoin_units::SeparatorStyle>) -> String {
let show_unconfirmed: bool = show_unconfirmed.unwrap_or(true);
let separators: bitcoin_units::SeparatorStyle = separators.unwrap_or(bitcoin_units::SeparatorStyle::STANDARD);
todo!();
/*
QString str = BitcoinUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), wtx->credit + wtx->debit, false, separators);
if(showUnconfirmed)
{
if(!wtx->status.countsForBalance)
{
str = QString("[") + str + QString("]");
}
}
return QString(str);
*/
}
pub fn tx_status_decoration(&self, wtx: *const TransactionRecord) -> QVariant {
todo!();
/*
switch(wtx->status.status)
{
case TransactionStatus::OpenUntilBlock:
case TransactionStatus::OpenUntilDate:
return COLOR_TX_STATUS_OPENUNTILDATE;
case TransactionStatus::Unconfirmed:
return QIcon(":/icons/transaction_0");
case TransactionStatus::Abandoned:
return QIcon(":/icons/transaction_abandoned");
case TransactionStatus::Confirming:
switch(wtx->status.depth)
{
case 1: return QIcon(":/icons/transaction_1");
case 2: return QIcon(":/icons/transaction_2");
case 3: return QIcon(":/icons/transaction_3");
case 4: return QIcon(":/icons/transaction_4");
default: return QIcon(":/icons/transaction_5");
};
case TransactionStatus::Confirmed:
return QIcon(":/icons/transaction_confirmed");
case TransactionStatus::Conflicted:
return QIcon(":/icons/transaction_conflicted");
case TransactionStatus::Immature: {
int total = wtx->status.depth + wtx->status.matures_in;
int part = (wtx->status.depth * 4 / total) + 1;
return QIcon(QString(":/icons/transaction_%1").arg(part));
}
case TransactionStatus::NotAccepted:
return QIcon(":/icons/transaction_0");
default:
return COLOR_BLACK;
}
*/
}
pub fn tx_watchonly_decoration(&self, wtx: *const TransactionRecord) -> QVariant {
todo!();
/*
if (wtx->involvesWatchAddress)
return QIcon(":/icons/eye");
else
return QVariant();
*/
}
pub fn format_tooltip(&self, rec: *const TransactionRecord) -> String {
todo!();
/*
QString tooltip = formatTxStatus(rec) + QString("\n") + formatTxType(rec);
if(rec->type==TransactionRecord::RecvFromOther || rec->type==TransactionRecord::SendToOther ||
rec->type==TransactionRecord::SendToAddress || rec->type==TransactionRecord::RecvWithAddress)
{
tooltip += QString(" ") + formatTxToAddress(rec, true);
}
return tooltip;
*/
}
pub fn data(&self,
index: &QModelIndex,
role: i32) -> QVariant {
todo!();
/*
if(!index.isValid())
return QVariant();
TransactionRecord *rec = static_cast<TransactionRecord*>(index.internalPointer());
const auto column = static_cast<ColumnIndex>(index.column());
switch (role) {
case RawDecorationRole:
switch (column) {
case Status:
return txStatusDecoration(rec);
case Watchonly:
return txWatchonlyDecoration(rec);
case Date: return {};
case Type: return {};
case ToAddress:
return txAddressDecoration(rec);
case Amount: return {};
} // no default case, so the compiler can warn about missing cases
assert(false);
case QtDecorationRole:
{
QIcon icon = qvariant_cast<QIcon>(index.data(RawDecorationRole));
return platformStyle->TextColorIcon(icon);
}
case QtDisplayRole:
switch (column) {
case Status: return {};
case Watchonly: return {};
case Date:
return formatTxDate(rec);
case Type:
return formatTxType(rec);
case ToAddress:
return formatTxToAddress(rec, false);
case Amount:
return formatTxAmount(rec, true, BitcoinUnits::SeparatorStyle::ALWAYS);
} // no default case, so the compiler can warn about missing cases
assert(false);
case QtEditRole:
// Edit role is used for sorting, so return the unformatted values
switch (column) {
case Status:
return QString::fromStdString(rec->status.sortKey);
case Date:
return rec->time;
case Type:
return formatTxType(rec);
case Watchonly:
return (rec->involvesWatchAddress ? 1 : 0);
case ToAddress:
return formatTxToAddress(rec, true);
case Amount:
return i64(rec->credit + rec->debit);
} // no default case, so the compiler can warn about missing cases
assert(false);
case QtToolTipRole:
return formatTooltip(rec);
case QtTextAlignmentRole:
return column_alignments[index.column()];
case QtForegroundRole:
// Use the "danger" color for abandoned transactions
if(rec->status.status == TransactionStatus::Abandoned)
{
return COLOR_TX_STATUS_DANGER;
}
// Non-confirmed (but not immature) as transactions are grey
if(!rec->status.countsForBalance && rec->status.status != TransactionStatus::Immature)
{
return COLOR_UNCONFIRMED;
}
if(index.column() == Amount && (rec->credit+rec->debit) < 0)
{
return COLOR_NEGATIVE;
}
if(index.column() == ToAddress)
{
return addressColor(rec);
}
break;
case TypeRole:
return rec->type;
case DateRole:
return QDateTime::fromSecsSinceEpoch(rec->time);
case WatchonlyRole:
return rec->involvesWatchAddress;
case WatchonlyDecorationRole:
return txWatchonlyDecoration(rec);
case LongDescriptionRole:
return priv->describe(walletModel->node(), walletModel->wallet(), rec, walletModel->getOptionsModel()->getDisplayUnit());
case AddressRole:
return QString::fromStdString(rec->address);
case LabelRole:
return walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(rec->address));
case AmountRole:
return i64(rec->credit + rec->debit);
case TxHashRole:
return rec->getTxHash();
case TxHexRole:
return priv->getTxHex(walletModel->wallet(), rec);
case TxPlainTextRole:
{
QString details;
QDateTime date = QDateTime::fromSecsSinceEpoch(rec->time);
QString txLabel = walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(rec->address));
details.append(date.toString("M/d/yy HH:mm"));
details.append(" ");
details.append(formatTxStatus(rec));
details.append(". ");
if(!formatTxType(rec).isEmpty()) {
details.append(formatTxType(rec));
details.append(" ");
}
if(!rec->address.empty()) {
if(txLabel.isEmpty())
details.append(tr("(no label)") + " ");
else {
details.append("(");
details.append(txLabel);
details.append(") ");
}
details.append(QString::fromStdString(rec->address));
details.append(" ");
}
details.append(formatTxAmount(rec, false, BitcoinUnits::SeparatorStyle::NEVER));
return details;
}
case ConfirmedRole:
return rec->status.status == TransactionStatus::Status::Confirming || rec->status.status == TransactionStatus::Status::Confirmed;
case FormattedAmountRole:
// Used for copy/export, so don't include separators
return formatTxAmount(rec, false, BitcoinUnits::SeparatorStyle::NEVER);
case StatusRole:
return rec->status.status;
}
return QVariant();
*/
}
pub fn header_data(&self,
section: i32,
orientation: QtOrientation,
role: i32) -> QVariant {
todo!();
/*
if(orientation == QtHorizontal)
{
if(role == QtDisplayRole)
{
return columns[section];
}
else if (role == QtTextAlignmentRole)
{
return column_alignments[section];
} else if (role == QtToolTipRole)
{
switch(section)
{
case Status:
return tr("Transaction status. Hover over this field to show number of confirmations.");
case Date:
return tr("Date and time that the transaction was received.");
case Type:
return tr("Type of transaction.");
case Watchonly:
return tr("Whether or not a watch-only address is involved in this transaction.");
case ToAddress:
return tr("User-defined intent/purpose of the transaction.");
case Amount:
return tr("Amount removed from or added to balance.");
}
}
}
return QVariant();
*/
}
pub fn index(&self,
row: i32,
column: i32,
parent: Option<&QModelIndex>) -> QModelIndex {
let parent: &QModelIndex = unsafe { parent.unwrap_or(&QModelIndex::new()) };
todo!();
/*
Q_UNUSED(parent);
TransactionRecord* data = priv->index(walletModel->wallet(), walletModel->getLastBlockProcessed(), row);
if(data)
{
return createIndex(row, column, data);
}
return QModelIndex();
*/
}
#[Q_SLOT]
pub fn update_display_unit(&mut self) {
todo!();
/*
// emit dataChanged to update Amount column with the current unit
updateAmountColumnTitle();
Q_EMIT dataChanged(index(0, Amount), index(priv->size()-1, Amount));
*/
}
pub fn subscribe_to_core_signals(&mut self) {
todo!();
/*
// Connect signals to wallet
m_handler_transaction_changed = walletModel->wallet().handleTransactionChanged(std::bind(&TransactionTablePriv::NotifyTransactionChanged, priv, std::placeholders::_1, std::placeholders::_2));
m_handler_show_progress = walletModel->wallet().handleShowProgress([this](const std::string&, int progress) {
priv->m_loading = progress < 100;
priv->DispatchNotifications();
});
*/
}
pub fn unsubscribe_from_core_signals(&mut self) {
todo!();
/*
// Disconnect signals from wallet
m_handler_transaction_changed->disconnect();
m_handler_show_progress->disconnect();
*/
}
}
//-------------------------------------------[.cpp/bitcoin/src/qt/transactiontablemodel.cpp]
/**
| Amount column is right-aligned it contains
| numbers
|
*/
lazy_static!{
/*
static int column_alignments[] = {
QtAlignLeft|QtAlignVCenter, /* status */
QtAlignLeft|QtAlignVCenter, /* watchonly */
QtAlignLeft|QtAlignVCenter, /* date */
QtAlignLeft|QtAlignVCenter, /* type */
QtAlignLeft|QtAlignVCenter, /* address */
QtAlignRight|QtAlignVCenter /* amount */
};
*/
}
/**
| Comparison operator for sort/binary
| search of model tx list
|
*/
pub struct TxLessThan {
}
impl TxLessThan {
pub fn invoke<T,S>(&self,
a: &T,
b: &S) -> bool {
todo!();
/*
pub fn invoke(&self,
a: &TransactionRecord,
b: &TransactionRecord) -> bool {
todo!();
/*
return a.hash < b.hash;
*/
}
pub fn invoke(&self,
a: &TransactionRecord,
b: &u256) -> bool {
todo!();
/*
return a.hash < b;
*/
}
pub fn invoke(&self,
a: &u256,
b: &TransactionRecord) -> bool {
todo!();
/*
return a < b.hash;
*/
}
*/
}
}
/**
| queue notifications to show a non freezing
| progress dialog e.g. for rescan
|
*/
#[derive(Default)]
pub struct TransactionNotification {
hash: u256,
status: ChangeType,
show_transaction: bool,
}
impl TransactionNotification {
pub fn new(
hash: u256,
status: ChangeType,
show_transaction: bool) -> Self {
todo!();
/*
: hash(_hash),
: status(_status),
: show_transaction(_showTransaction),
*/
}
pub fn invoke(&mut self, ttm: *mut QObject) {
todo!();
/*
QString strHash = QString::fromStdString(hash.GetHex());
qDebug() << "NotifyTransactionChanged: " + strHash + " status= " + QString::number(status);
bool invoked = QMetaObject::invokeMethod(ttm, "updateTransaction", QtQueuedConnection,
Q_ARG(QString, strHash),
Q_ARG(int, status),
Q_ARG(bool, showTransaction));
assert(invoked);
*/
}
}
/**
| Private implementation
|
*/
pub struct TransactionTablePriv {
parent: *mut TransactionTableModel,
/**
| Local cache of wallet.
|
| As it is in the same order as the CWallet,
| by definition this is sorted by sha256.
|
*/
cached_wallet: QList<TransactionRecord>,
/**
| True when model finishes loading all
| wallet transactions on start
|
*/
loaded: bool, // default = false
/**
| True when transactions are being notified,
| for instance when scanning
|
*/
loading: bool, // default = false
queue_notifications: Vec<TransactionNotification>,
}
impl TransactionTablePriv {
pub fn new(parent: *mut TransactionTableModel) -> Self {
todo!();
/*
: parent(_parent),
*/
}
/**
| Query entire wallet anew from core.
|
*/
pub fn refresh_wallet(&mut self, wallet: Rc<RefCell<dyn WalletInterface>>) {
todo!();
/*
assert(!m_loaded);
{
for (const auto& wtx : wallet.getWalletTxs()) {
if (TransactionRecord::showTransaction()) {
cachedWallet.append(TransactionRecord::decomposeTransaction(wtx));
}
}
}
m_loaded = true;
DispatchNotifications();
*/
}
/**
| Update our model of the wallet incrementally,
| to synchronize our model of the wallet
| with that of the core.
|
| Call with transaction that was added,
| removed or changed.
|
*/
pub fn update_wallet(&mut self,
wallet: Rc<RefCell<dyn WalletInterface>>,
hash: &u256,
status: i32,
show_transaction: bool) {
todo!();
/*
qDebug() << "TransactionTablePriv::updateWallet: " + QString::fromStdString(hash.ToString()) + " " + QString::number(status);
// Find bounds of this transaction in model
QList<TransactionRecord>::iterator lower = std::lower_bound(
cachedWallet.begin(), cachedWallet.end(), hash, TxLessThan());
QList<TransactionRecord>::iterator upper = std::upper_bound(
cachedWallet.begin(), cachedWallet.end(), hash, TxLessThan());
int lowerIndex = (lower - cachedWallet.begin());
int upperIndex = (upper - cachedWallet.begin());
bool inModel = (lower != upper);
if(status == CT_UPDATED)
{
if(showTransaction && !inModel)
status = CT_NEW; /* Not in model, but want to show, treat as new */
if(!showTransaction && inModel)
status = CT_DELETED; /* In model, but want to hide, treat as deleted */
}
qDebug() << " inModel=" + QString::number(inModel) +
" Index=" + QString::number(lowerIndex) + "-" + QString::number(upperIndex) +
" showTransaction=" + QString::number(showTransaction) + " derivedStatus=" + QString::number(status);
switch(status)
{
case CT_NEW:
if(inModel)
{
qWarning() << "TransactionTablePriv::updateWallet: Warning: Got CT_NEW, but transaction is already in model";
break;
}
if(showTransaction)
{
// Find transaction in wallet
typename interfaces::WalletTx wtx = wallet.getWalletTx(hash);
if(!wtx.tx)
{
qWarning() << "TransactionTablePriv::updateWallet: Warning: Got CT_NEW, but transaction is not in wallet";
break;
}
// Added -- insert at the right position
QList<TransactionRecord> toInsert =
TransactionRecord::decomposeTransaction(wtx);
if(!toInsert.isEmpty()) /* only if something to insert */
{
parent->beginInsertRows(QModelIndex(), lowerIndex, lowerIndex+toInsert.size()-1);
int insert_idx = lowerIndex;
for (const TransactionRecord &rec : toInsert)
{
cachedWallet.insert(insert_idx, rec);
insert_idx += 1;
}
parent->endInsertRows();
}
}
break;
case CT_DELETED:
if(!inModel)
{
qWarning() << "TransactionTablePriv::updateWallet: Warning: Got CT_DELETED, but transaction is not in model";
break;
}
// Removed -- remove entire transaction from table
parent->beginRemoveRows(QModelIndex(), lowerIndex, upperIndex-1);
cachedWallet.erase(lower, upper);
parent->endRemoveRows();
break;
case CT_UPDATED:
// Miscellaneous updates -- nothing to do, status update will take care of this, and is only computed for
// visible transactions.
for (int i = lowerIndex; i < upperIndex; i++) {
TransactionRecord *rec = &cachedWallet[i];
rec->status.needsUpdate = true;
}
break;
}
*/
}
pub fn size(&mut self) -> i32 {
todo!();
/*
return cachedWallet.size();
*/
}
pub fn index(&mut self,
wallet: Rc<RefCell<dyn WalletInterface>>,
cur_block_hash: &u256,
idx: i32) -> *mut TransactionRecord {
todo!();
/*
if (idx >= 0 && idx < cachedWallet.size()) {
TransactionRecord *rec = &cachedWallet[idx];
// If a status update is needed (blocks came in since last check),
// try to update the status of this transaction from the wallet.
// Otherwise, simply re-use the cached status.
typename interfaces::WalletTxStatus wtx;
int numBlocks;
int64_t block_time;
if (!cur_block_hash.IsNull() && rec->statusUpdateNeeded(cur_block_hash) && wallet.tryGetTxStatus(rec->hash, wtx, numBlocks, block_time)) {
rec->updateStatus(wtx, cur_block_hash, numBlocks, block_time);
}
return rec;
}
return nullptr;
*/
}
pub fn describe(&mut self,
node: Rc<RefCell<dyn NodeInterface>>,
wallet: Rc<RefCell<dyn WalletInterface>>,
rec: *mut TransactionRecord,
unit: i32) -> String {
todo!();
/*
return TransactionDesc::toHTML(node, wallet, rec, unit);
*/
}
pub fn get_tx_hex(&mut self,
wallet: Rc<RefCell<dyn WalletInterface>>,
rec: *mut TransactionRecord) -> String {
todo!();
/*
auto tx = wallet.getTx(rec->hash);
if (tx) {
std::string strHex = EncodeHexTx(*tx);
return QString::fromStdString(strHex);
}
return QString();
*/
}
pub fn notify_transaction_changed(&mut self,
hash: &u256,
status: ChangeType) {
todo!();
/*
// Find transaction in wallet
// Determine whether to show transaction or not (determine this here so that no relocking is needed in GUI thread)
bool showTransaction = TransactionRecord::showTransaction();
TransactionNotification notification(hash, status, showTransaction);
if (!m_loaded || m_loading)
{
vQueueNotifications.push_back(notification);
return;
}
notification.invoke(parent);
*/
}
pub fn dispatch_notifications(&mut self) {
todo!();
/*
if (!m_loaded || m_loading) return;
if (vQueueNotifications.size() > 10) { // prevent balloon spam, show maximum 10 balloons
bool invoked = QMetaObject::invokeMethod(parent, "setProcessingQueuedTransactions", QtQueuedConnection, Q_ARG(bool, true));
assert(invoked);
}
for (unsigned int i = 0; i < vQueueNotifications.size(); ++i)
{
if (vQueueNotifications.size() - i <= 10) {
bool invoked = QMetaObject::invokeMethod(parent, "setProcessingQueuedTransactions", QtQueuedConnection, Q_ARG(bool, false));
assert(invoked);
}
vQueueNotifications[i].invoke(parent);
}
vQueueNotifications.clear();
*/
}
}