2011-05-22 17:19:43 +02:00
|
|
|
#ifndef CLIENTMODEL_H
|
|
|
|
#define CLIENTMODEL_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-06-03 21:03:20 +02:00
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
class OptionsModel;
|
2011-06-03 21:03:20 +02:00
|
|
|
class AddressTableModel;
|
2011-06-05 16:03:29 +02:00
|
|
|
class TransactionTableModel;
|
2011-05-22 17:19:43 +02:00
|
|
|
|
|
|
|
class ClientModel : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ClientModel(QObject *parent = 0);
|
|
|
|
|
2011-05-30 20:20:12 +02:00
|
|
|
enum StatusCode
|
|
|
|
{
|
|
|
|
OK,
|
|
|
|
InvalidAmount,
|
|
|
|
InvalidAddress,
|
|
|
|
AmountExceedsBalance,
|
|
|
|
AmountWithFeeExceedsBalance,
|
|
|
|
Aborted,
|
|
|
|
MiscError
|
|
|
|
};
|
|
|
|
|
2011-05-31 22:24:53 +02:00
|
|
|
OptionsModel *getOptionsModel();
|
2011-06-03 21:03:20 +02:00
|
|
|
AddressTableModel *getAddressTableModel();
|
2011-06-05 16:03:29 +02:00
|
|
|
TransactionTableModel *getTransactionTableModel();
|
2011-05-31 22:24:53 +02:00
|
|
|
|
2011-06-18 13:13:48 +02:00
|
|
|
qint64 getBalance() const;
|
|
|
|
int getNumConnections() const;
|
|
|
|
int getNumBlocks() const;
|
|
|
|
int getNumTransactions() const;
|
|
|
|
|
|
|
|
/* Return true if core is doing initial block download */
|
|
|
|
bool inInitialBlockDownload() const;
|
2011-06-18 21:25:38 +02:00
|
|
|
/* Return conservative estimate of total number of blocks, or 0 if unknown */
|
|
|
|
int getTotalBlocksEstimate() const;
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-06-03 20:48:03 +02:00
|
|
|
/* Send coins */
|
2011-05-30 20:20:12 +02:00
|
|
|
StatusCode sendCoins(const QString &payTo, qint64 payAmount);
|
2011-05-31 22:24:53 +02:00
|
|
|
private:
|
2011-06-03 21:03:20 +02:00
|
|
|
OptionsModel *optionsModel;
|
|
|
|
AddressTableModel *addressTableModel;
|
2011-06-05 16:03:29 +02:00
|
|
|
TransactionTableModel *transactionTableModel;
|
2011-05-30 20:20:12 +02:00
|
|
|
|
2011-05-22 17:19:43 +02:00
|
|
|
signals:
|
2011-05-27 21:24:17 +02:00
|
|
|
void balanceChanged(qint64 balance);
|
2011-05-22 17:19:43 +02:00
|
|
|
void numConnectionsChanged(int count);
|
|
|
|
void numBlocksChanged(int count);
|
|
|
|
void numTransactionsChanged(int count);
|
2011-05-30 20:20:12 +02:00
|
|
|
/* Asynchronous error notification */
|
|
|
|
void error(const QString &title, const QString &message);
|
2011-05-22 17:19:43 +02:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void update();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CLIENTMODEL_H
|