core initialisation, client model binding
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
|
||||
/* Forward declarations */
|
||||
class TransactionTableModel;
|
||||
class ClientModel;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QLabel;
|
||||
@@ -17,6 +18,7 @@ class BitcoinGUI : public QMainWindow
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit BitcoinGUI(QWidget *parent = 0);
|
||||
void setModel(ClientModel *model);
|
||||
|
||||
/* Transaction table tab indices */
|
||||
enum {
|
||||
@@ -27,6 +29,7 @@ public:
|
||||
} TabIndex;
|
||||
private:
|
||||
TransactionTableModel *transaction_model;
|
||||
ClientModel *model;
|
||||
|
||||
QLineEdit *address;
|
||||
QLabel *labelBalance;
|
||||
|
||||
31
gui/include/clientmodel.h
Normal file
31
gui/include/clientmodel.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef CLIENTMODEL_H
|
||||
#define CLIENTMODEL_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class ClientModel : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ClientModel(QObject *parent = 0);
|
||||
|
||||
double getBalance();
|
||||
QString getAddress();
|
||||
int getNumConnections();
|
||||
int getNumBlocks();
|
||||
int getNumTransactions();
|
||||
|
||||
signals:
|
||||
void balanceChanged(double balance);
|
||||
void addressChanged(const QString &address);
|
||||
void numConnectionsChanged(int count);
|
||||
void numBlocksChanged(int count);
|
||||
void numTransactionsChanged(int count);
|
||||
|
||||
public slots:
|
||||
|
||||
private slots:
|
||||
void update();
|
||||
};
|
||||
|
||||
#endif // CLIENTMODEL_H
|
||||
Reference in New Issue
Block a user