forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquicknewaccountdialog.cpp
113 lines (94 loc) · 3.3 KB
/
quicknewaccountdialog.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
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
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// quicknewaccountdialog.cpp
//
// Copyright (c) 2013-2014 Eric Lombrozo
//
// All Rights Reserved.
#include "quicknewaccountdialog.h"
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QComboBox>
#include <QLabel>
#include <QDateTimeEdit>
#include <QCalendarWidget>
#include <stdexcept>
static const int MAX_SIG_COUNT = 8;
QuickNewAccountDialog::QuickNewAccountDialog(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()));
// Account Name
QLabel* nameLabel = new QLabel();
nameLabel->setText(tr("Account Name:"));
nameEdit = new QLineEdit();
QHBoxLayout* nameLayout = new QHBoxLayout();
nameLayout->setSizeConstraint(QLayout::SetNoConstraint);
nameLayout->addWidget(nameLabel);
nameLayout->addWidget(nameEdit);
// Policy
QLabel *policyLabel = new QLabel();
policyLabel->setText(tr("Policy:"));
QLabel *ofLabel = new QLabel();
ofLabel->setText(tr("of"));
minSigComboBox = new QComboBox();
maxSigComboBox = new QComboBox();
for (int i = 1; i <= MAX_SIG_COUNT; i++) {
minSigComboBox->addItem(QString::number(i));
maxSigComboBox->addItem(QString::number(i));
}
QHBoxLayout* policyLayout = new QHBoxLayout();
policyLayout->setSizeConstraint(QLayout::SetNoConstraint);
policyLayout->addWidget(policyLabel);
policyLayout->addWidget(minSigComboBox);
policyLayout->addWidget(ofLabel);
policyLayout->addWidget(maxSigComboBox);
// Creation Time
QDateTime localDateTime = QDateTime::currentDateTime();
QLabel* creationTimeLabel = new QLabel(tr("Creation Time ") + "(" + localDateTime.timeZoneAbbreviation() + "):");
creationTimeEdit = new QDateTimeEdit(QDateTime::currentDateTime());
creationTimeEdit->setDisplayFormat("yyyy.MM.dd hh:mm:ss");
creationTimeEdit->setCalendarPopup(true);
calendarWidget = new QCalendarWidget(this);
creationTimeEdit->setCalendarWidget(calendarWidget);
QHBoxLayout* creationTimeLayout = new QHBoxLayout();
creationTimeLayout->setSizeConstraint(QLayout::SetNoConstraint);
creationTimeLayout->addWidget(creationTimeLabel);
creationTimeLayout->addWidget(creationTimeEdit);
// Main Layout
QVBoxLayout *mainLayout = new QVBoxLayout();
mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
mainLayout->addLayout(nameLayout);
mainLayout->addLayout(policyLayout);
mainLayout->addLayout(creationTimeLayout);
mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
}
QuickNewAccountDialog::~QuickNewAccountDialog()
{
delete calendarWidget;
}
QString QuickNewAccountDialog::getName() const
{
return nameEdit->text();
}
int QuickNewAccountDialog::getMinSigs() const
{
return minSigComboBox->currentIndex() + 1;
}
int QuickNewAccountDialog::getMaxSigs() const
{
return maxSigComboBox->currentIndex() + 1;
}
qint64 QuickNewAccountDialog::getCreationTime() const
{
return creationTimeEdit->dateTime().toMSecsSinceEpoch();
}