General cleanups

This commit is contained in:
Wladimir J. van der Laan 2011-07-01 17:06:36 +02:00
parent c60015a260
commit 0052fe7bbc
6 changed files with 19 additions and 10 deletions

View File

@ -1,14 +1,18 @@
#include "aboutdialog.h"
#include "ui_aboutdialog.h"
#include "util.h"
#include "clientmodel.h"
AboutDialog::AboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AboutDialog)
{
ui->setupUi(this);
ui->versionLabel->setText(QString::fromStdString(FormatFullVersion()));
}
void AboutDialog::setModel(ClientModel *model)
{
ui->versionLabel->setText(model->formatFullVersion());
}
AboutDialog::~AboutDialog()

View File

@ -6,6 +6,7 @@
namespace Ui {
class AboutDialog;
}
class ClientModel;
class AboutDialog : public QDialog
{
@ -15,6 +16,7 @@ public:
explicit AboutDialog(QWidget *parent = 0);
~AboutDialog();
void setModel(ClientModel *model);
private:
Ui::AboutDialog *ui;

View File

@ -1,7 +1,5 @@
#include "bitcoinaddressvalidator.h"
#include <QDebug>
/* Base58 characters are:
"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"

View File

@ -18,8 +18,6 @@
#include "addresstablemodel.h"
#include "transactionview.h"
#include "headers.h"
#include <QApplication>
#include <QMainWindow>
#include <QMenuBar>
@ -290,6 +288,7 @@ void BitcoinGUI::optionsClicked()
void BitcoinGUI::aboutClicked()
{
AboutDialog dlg;
dlg.setModel(clientModel);
dlg.exec();
}
@ -311,7 +310,7 @@ void BitcoinGUI::copyClipboardClicked()
void BitcoinGUI::setBalance(qint64 balance)
{
labelBalance->setText(QString::fromStdString(FormatMoney(balance)) + QString(" BTC"));
labelBalance->setText(GUIUtil::formatMoney(balance) + QString(" BTC"));
}
void BitcoinGUI::setAddress(const QString &addr)
@ -410,7 +409,7 @@ void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
QString strMessage =
tr("This transaction is over the size limit. You can still send it for a fee of %1, "
"which goes to the nodes that process your transaction and helps to support the network. "
"Do you want to pay the fee?").arg(QString::fromStdString(FormatMoney(nFeeRequired)));
"Do you want to pay the fee?").arg(GUIUtil::formatMoney(nFeeRequired));
QMessageBox::StandardButton retval = QMessageBox::question(
this, tr("Sending..."), strMessage,
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
@ -442,7 +441,7 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int
trayIcon->showMessage(tr("Incoming transaction"),
tr("Date: ") + date + "\n" +
tr("Amount: ") + QString::fromStdString(FormatMoney(amount, true)) + "\n" +
tr("Amount: ") + GUIUtil::formatMoney(amount, true) + "\n" +
tr("Type: ") + type + "\n" +
tr("Address: ") + address + "\n",
QSystemTrayIcon::Information);

View File

@ -59,3 +59,7 @@ OptionsModel *ClientModel::getOptionsModel()
return optionsModel;
}
QString ClientModel::formatFullVersion() const
{
return QString::fromStdString(FormatFullVersion());
}

View File

@ -29,6 +29,8 @@ public:
// Return conservative estimate of total number of blocks, or 0 if unknown
int getTotalBlocksEstimate() const;
QString formatFullVersion() const;
private:
CWallet *wallet;