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
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/bitcoinamountfield.h]
/**
| Widget for entering bitcoin amounts.
|
*/
// ugly hack: for some unknown reason CAmount
//
// (instead of i64) does not work here as expected
//
// discussion:
// https://github.com/bitcoin/bitcoin/pull/5117
#[Q_PROPERTY(i64 value READ value WRITE setValue NOTIFY valueChanged USER true)]
#[Q_OBJECT]
pub struct BitcoinAmountField {
base: QWidget,
amount: *mut AmountSpinBox,
unit: *mut QValueComboBox,
}
impl BitcoinAmountField {
#[Q_SIGNALS]
pub fn value_changed(&mut self) { }
pub fn new(parent: *mut QWidget) -> Self {
todo!();
/*
: q_widget(parent),
: amount(nullptr),
amount = new AmountSpinBox(this);
amount->setLocale(QLocale::c());
amount->installEventFilter(this);
amount->setMaximumWidth(240);
QHBoxLayout *layout = new QHBoxLayout(this);
layout->addWidget(amount);
unit = new QValueComboBox(this);
unit->setModel(new BitcoinUnits(this));
layout->addWidget(unit);
layout->addStretch(1);
layout->setContentsMargins(0,0,0,0);
setLayout(layout);
setFocusPolicy(QtTabFocus);
setFocusProxy(amount);
// If one if the widgets changes, the combined content changes as well
connect(amount, &AmountSpinBox::valueChanged, this, &BitcoinAmountField::valueChanged);
connect(unit, qOverload<int>(&QComboBox::currentIndexChanged), this, &BitcoinAmountField::unitChanged);
// Set default based on configuration
unitChanged(unit->currentIndex());
*/
}
/**
| Make field empty and ready for new input.
|
*/
pub fn clear(&mut self) {
todo!();
/*
amount->clear();
unit->setCurrentIndex(0);
*/
}
/**
| Enable/Disable.
|
*/
pub fn set_enabled(&mut self, enabled: bool) {
todo!();
/*
amount->setEnabled(fEnabled);
unit->setEnabled(fEnabled);
*/
}
/**
| Perform input validation, mark field
| as invalid if entered value is not valid.
|
*/
pub fn validate(&mut self) -> bool {
todo!();
/*
bool valid = false;
value(&valid);
setValid(valid);
return valid;
*/
}
/**
| Mark current value as invalid in UI.
|
*/
pub fn set_valid(&mut self, valid: bool) {
todo!();
/*
if (valid)
amount->setStyleSheet("");
else
amount->setStyleSheet(STYLE_INVALID);
*/
}
/**
| Intercept focus-in event and ',' key
| presses
|
*/
#[Q_SIGNALS]
pub fn event_filter(&mut self,
object: *mut QObject,
event: *mut QEvent) -> bool {
todo!();
/*
if (event->type() == QEvent::FocusIn)
{
// Clear invalid flag on focus
setValid(true);
}
return QWidget::eventFilter(object, event);
*/
}
/**
| Qt messes up the tab chain by default
| in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907),
| in these cases we have to set it up manually.
|
*/
pub fn setup_tab_chain(&mut self, prev: *mut QWidget) -> *mut QWidget {
todo!();
/*
QWidget::setTabOrder(prev, amount);
QWidget::setTabOrder(amount, unit);
return unit;
*/
}
pub fn value(&self, valid_out: *mut bool) -> Amount {
todo!();
/*
return amount->value(valid_out);
*/
}
pub fn set_value(&mut self, value: &Amount) {
todo!();
/*
amount->setValue(value);
*/
}
/**
| If allow empty is set to false the field
| will be set to the minimum allowed value
| if left empty. *
|
*/
pub fn set_allow_empty(&mut self, allow: bool) {
todo!();
/*
amount->SetAllowEmpty(allow);
*/
}
/**
| Set the minimum value in satoshis *
|
*/
pub fn set_min_value(&mut self, value: &Amount) {
todo!();
/*
amount->SetMinValue(value);
*/
}
/**
| Set the maximum value in satoshis *
|
*/
pub fn set_max_value(&mut self, value: &Amount) {
todo!();
/*
amount->SetMaxValue(value);
*/
}
/**
| Make read-only *
|
*/
pub fn set_read_only(&mut self, read_only: bool) {
todo!();
/*
amount->setReadOnly(fReadOnly);
*/
}
#[Q_SLOT]
pub fn unit_changed(&mut self, idx: i32) {
todo!();
/*
// Use description tooltip for current unit for the combobox
unit->setToolTip(unit->itemData(idx, QtToolTipRole).toString());
// Determine new unit ID
int newUnit = unit->itemData(idx, BitcoinUnits::UnitRole).toInt();
amount->setDisplayUnit(newUnit);
*/
}
/**
| Change unit used to display amount.
|
*/
pub fn set_display_unit(&mut self, new_unit: i32) {
todo!();
/*
unit->setValue(newUnit);
*/
}
/**
| Set single step in satoshis *
|
*/
pub fn set_single_step(&mut self, step: &Amount) {
todo!();
/*
amount->setSingleStep(step);
*/
}
}
//-------------------------------------------[.cpp/bitcoin/src/qt/bitcoinamountfield.cpp]
/**
| QSpinBox that uses fixed-point numbers
| internally and uses our own formatting/parsing
| functions.
|
*/
#[Q_OBJECT]
pub struct AmountSpinBox {
base: QAbstractSpinBox,
current_unit: i32, //{BitcoinUnits::BTC};
single_step: Amount, //{CAmount(100000)}; // satoshis
cached_minimum_size_hint: RefCell<QSize>,
allow_empty: bool, //{true};
min_amount: Amount, //{CAmount(0)};
max_amount: Amount, //{BitcoinUnits::maxMoney()};
}
impl AmountSpinBox {
pub fn new(parent: *mut QWidget) -> Self {
todo!();
/*
: q_abstract_spin_box(parent),
setAlignment(QtAlignRight);
connect(lineEdit(), &QLineEdit::textEdited, this, &AmountSpinBox::valueChanged);
*/
}
pub fn validate(&self,
text: &mut String,
pos: &mut i32) -> QValidatorState {
todo!();
/*
if(text.isEmpty())
return QValidatorIntermediate;
bool valid = false;
parse(text, &valid);
/* Make sure we return Intermediate so that fixup() is called on defocus */
return valid ? QValidatorIntermediate : QValidatorInvalid;
*/
}
pub fn fixup(&self, input: &mut String) {
todo!();
/*
bool valid;
CAmount val;
if (input.isEmpty() && !m_allow_empty) {
valid = true;
val = m_min_amount;
} else {
valid = false;
val = parse(input, &valid);
}
if (valid) {
val = qBound(m_min_amount, val, m_max_amount);
input = BitcoinUnits::format(currentUnit, val, false, BitcoinUnits::SeparatorStyle::ALWAYS);
lineEdit()->setText(input);
}
*/
}
pub fn value(&self, valid_out: Option<*mut bool>) -> Amount {
todo!();
/*
return parse(text(), valid_out);
*/
}
pub fn set_value(&mut self, value: &Amount) {
todo!();
/*
lineEdit()->setText(BitcoinUnits::format(currentUnit, value, false, BitcoinUnits::SeparatorStyle::ALWAYS));
Q_EMIT valueChanged();
*/
}
pub fn set_allow_empty(&mut self, allow: bool) {
todo!();
/*
m_allow_empty = allow;
*/
}
pub fn set_min_value(&mut self, value: &Amount) {
todo!();
/*
m_min_amount = value;
*/
}
pub fn set_max_value(&mut self, value: &Amount) {
todo!();
/*
m_max_amount = value;
*/
}
pub fn step_by(&mut self, steps: i32) {
todo!();
/*
bool valid = false;
CAmount val = value(&valid);
val = val + steps * singleStep;
val = qBound(m_min_amount, val, m_max_amount);
setValue(val);
*/
}
pub fn set_display_unit(&mut self, unit: i32) {
todo!();
/*
bool valid = false;
CAmount val = value(&valid);
currentUnit = unit;
lineEdit()->setPlaceholderText(BitcoinUnits::format(currentUnit, m_min_amount, false, BitcoinUnits::SeparatorStyle::ALWAYS));
if(valid)
setValue(val);
else
clear();
*/
}
pub fn set_single_step(&mut self, step: &Amount) {
todo!();
/*
singleStep = step;
*/
}
pub fn minimum_size_hint(&self) -> QSize {
todo!();
/*
if(cachedMinimumSizeHint.isEmpty())
{
ensurePolished();
const QFontMetrics fm(fontMetrics());
int h = lineEdit()->minimumSizeHint().height();
int w = gui_util::TextWidth(fm, BitcoinUnits::format(BitcoinUnits::BTC, BitcoinUnits::maxMoney(), false, BitcoinUnits::SeparatorStyle::ALWAYS));
w += 2; // cursor blinking space
QStyleOptionSpinBox opt;
initStyleOption(&opt);
QSize hint(w, h);
QSize extra(35, 6);
opt.rect.setSize(hint + extra);
extra += hint - style()->subControlRect(QStyle::CC_SpinBox, &opt,
QStyle::SC_SpinBoxEditField, this).size();
// get closer to final result by repeating the calculation
opt.rect.setSize(hint + extra);
extra += hint - style()->subControlRect(QStyle::CC_SpinBox, &opt,
QStyle::SC_SpinBoxEditField, this).size();
hint += extra;
hint.setHeight(h);
opt.rect = rect();
cachedMinimumSizeHint = style()->sizeFromContents(QStyle::CT_SpinBox, &opt, hint, this)
.expandedTo(QApplication::globalStrut());
}
return cachedMinimumSizeHint;
*/
}
/**
| Parse a string into a number of base monetary
| units and return validity.
|
| -----------
| @note
|
| Must return 0 if !valid.
|
*/
pub fn parse(&self,
text: &String,
valid_out: Option<*mut bool>) -> Amount {
todo!();
/*
CAmount val = 0;
bool valid = BitcoinUnits::parse(currentUnit, text, &val);
if(valid)
{
if(val < 0 || val > BitcoinUnits::maxMoney())
valid = false;
}
if(valid_out)
*valid_out = valid;
return valid ? val : 0;
*/
}
pub fn event(&mut self, event: *mut QEvent) -> bool {
todo!();
/*
if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease)
{
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
if (keyEvent->key() == QtKey_Comma)
{
// Translate a comma into a period
QKeyEvent periodKeyEvent(event->type(), QtKey_Period, keyEvent->modifiers(), ".", keyEvent->isAutoRepeat(), keyEvent->count());
return QAbstractSpinBox::event(&periodKeyEvent);
}
}
return QAbstractSpinBox::event(event);
*/
}
pub fn step_enabled(&self) -> StepEnabled {
todo!();
/*
if (isReadOnly()) // Disable steps when AmountSpinBox is read-only
return StepNone;
if (text().isEmpty()) // Allow step-up with empty field
return StepUpEnabled;
StepEnabled rv = StepNone;
bool valid = false;
CAmount val = value(&valid);
if (valid) {
if (val > m_min_amount)
rv |= StepDownEnabled;
if (val < m_max_amount)
rv |= StepUpEnabled;
}
return rv;
*/
}
#[Q_SIGNAL]
pub fn value_changed(&mut self) { }
}