twisterp2pblockchainnetworkbittorrentmicrobloggingipv6social-networkdhtdecentralizedtwisterarmyp2p-networktwister-servertwister-ipv6twister-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.5 KiB
107 lines
2.5 KiB
#include <string> |
|
#include <vector> |
|
|
|
#include <QClipboard> |
|
#include <QInputDialog> |
|
#include <QList> |
|
#include <QListWidgetItem> |
|
#include <QMessageBox> |
|
|
|
#include "main.h" |
|
#include "wallet.h" |
|
#include "init.h" |
|
#include "util.h" |
|
|
|
#include "messagepage.h" |
|
#include "ui_messagepage.h" |
|
|
|
#include "addressbookpage.h" |
|
#include "guiutil.h" |
|
#include "walletmodel.h" |
|
|
|
MessagePage::MessagePage(QWidget *parent) : |
|
QDialog(parent), |
|
ui(new Ui::MessagePage) |
|
{ |
|
ui->setupUi(this); |
|
|
|
GUIUtil::setupAddressWidget(ui->signFrom, this); |
|
} |
|
|
|
MessagePage::~MessagePage() |
|
{ |
|
delete ui; |
|
} |
|
|
|
void MessagePage::setModel(WalletModel *model) |
|
{ |
|
this->model = model; |
|
} |
|
|
|
void MessagePage::setAddress(QString addr) |
|
{ |
|
ui->signFrom->setText(addr); |
|
ui->message->setFocus(); |
|
} |
|
|
|
void MessagePage::on_pasteButton_clicked() |
|
{ |
|
setAddress(QApplication::clipboard()->text()); |
|
} |
|
|
|
void MessagePage::on_addressBookButton_clicked() |
|
{ |
|
AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::ReceivingTab, this); |
|
dlg.setModel(model->getAddressTableModel()); |
|
if(dlg.exec()) |
|
{ |
|
setAddress(dlg.getReturnValue()); |
|
} |
|
} |
|
|
|
void MessagePage::on_copyToClipboard_clicked() |
|
{ |
|
QApplication::clipboard()->setText(ui->signature->text()); |
|
} |
|
|
|
void MessagePage::on_signMessage_clicked() |
|
{ |
|
QString address = ui->signFrom->text(); |
|
|
|
CBitcoinAddress addr(address.toStdString()); |
|
if (!addr.IsValid()) |
|
{ |
|
QMessageBox::critical(this, tr("Error signing"), tr("%1 is not a valid address.").arg(address), |
|
QMessageBox::Abort, QMessageBox::Abort); |
|
return; |
|
} |
|
|
|
WalletModel::UnlockContext ctx(model->requestUnlock()); |
|
if(!ctx.isValid()) |
|
{ |
|
// Unlock wallet was cancelled |
|
return; |
|
} |
|
|
|
CKey key; |
|
if (!pwalletMain->GetKey(addr, key)) |
|
{ |
|
QMessageBox::critical(this, tr("Error signing"), tr("Private key for %1 is not available.").arg(address), |
|
QMessageBox::Abort, QMessageBox::Abort); |
|
return; |
|
} |
|
|
|
CDataStream ss(SER_GETHASH); |
|
ss << strMessageMagic; |
|
ss << ui->message->document()->toPlainText().toStdString(); |
|
|
|
std::vector<unsigned char> vchSig; |
|
if (!key.SignCompact(Hash(ss.begin(), ss.end()), vchSig)) |
|
{ |
|
QMessageBox::critical(this, tr("Error signing"), tr("Sign failed"), |
|
QMessageBox::Abort, QMessageBox::Abort); |
|
} |
|
|
|
ui->signature->setText(QString::fromStdString(EncodeBase64(&vchSig[0], vchSig.size()))); |
|
ui->signature->setFont(GUIUtil::bitcoinAddressFont()); |
|
}
|
|
|