forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrencyunitdialog.cpp
75 lines (60 loc) · 1.96 KB
/
currencyunitdialog.cpp
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
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// currencyprefixdialog.cpp
//
// Copyright (c) 2014 Eric Lombrozo
//
// All Rights Reserved.
#include "currencyunitdialog.h"
#include "coinparams.h"
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLabel>
#include <QComboBox>
#include <QMessageBox>
#include <stdexcept>
CurrencyUnitDialog::CurrencyUnitDialog(QWidget* parent)
: QDialog(parent)
{
// Buttons
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
// Currency unit drop down
QLabel* label = new QLabel();
label->setText(tr("Choose currency units:"));
currencyUnitBox = new QComboBox();
populateSelectorBox();
QHBoxLayout* currencyUnitLayout = new QHBoxLayout();
currencyUnitLayout->setSizeConstraint(QLayout::SetNoConstraint);
currencyUnitLayout->addWidget(label);
currencyUnitLayout->addWidget(currencyUnitBox);
// Main Layout
QVBoxLayout *mainLayout = new QVBoxLayout();
mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
mainLayout->addLayout(currencyUnitLayout);
mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
}
QString CurrencyUnitDialog::getCurrencyUnit() const
{
QString unit = currencyUnitBox->currentText();
return unit;
}
QString CurrencyUnitDialog::getCurrencyUnitPrefix() const
{
QString unit = currencyUnitBox->currentText();
return unit.left(unit.size() - strlen(getCoinParams().currency_symbol()));
}
void CurrencyUnitDialog::populateSelectorBox()
{
for (auto& prefix: getValidCurrencyPrefixes())
{
currencyUnitBox->addItem(prefix + getCoinParams().currency_symbol());
}
currencyUnitBox->setCurrentText(getCurrencySymbol());
}