mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
36 lines
No EOL
890 B
C++
36 lines
No EOL
890 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#include "ui_ContactsDialog.h"
|
|
#include "ContactsDialog.h"
|
|
|
|
ContactsDialog::ContactsDialog(QWidget *parent, const QString &address, const QString &name)
|
|
: WindowModalDialog(parent)
|
|
, ui(new Ui::ContactsDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
setMinimumWidth(400);
|
|
|
|
ui->lineEdit_address->setText(address);
|
|
ui->lineEdit_name->setText(name);
|
|
if (!name.isEmpty()) {
|
|
ui->lineEdit_name->setFocus();
|
|
}
|
|
|
|
connect(ui->buttonBox, &QDialogButtonBox::accepted, [&](){
|
|
m_address = ui->lineEdit_address->text();
|
|
m_name = ui->lineEdit_name->text();
|
|
});
|
|
|
|
this->adjustSize();
|
|
}
|
|
|
|
QString ContactsDialog::getAddress() {
|
|
return m_address;
|
|
}
|
|
|
|
QString ContactsDialog::getName() {
|
|
return m_name;
|
|
}
|
|
|
|
ContactsDialog::~ContactsDialog() = default; |