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.
46 lines
830 B
46 lines
830 B
#ifndef OVERVIEWPAGE_H |
|
#define OVERVIEWPAGE_H |
|
|
|
#include <QWidget> |
|
|
|
QT_BEGIN_NAMESPACE |
|
class QModelIndex; |
|
QT_END_NAMESPACE |
|
|
|
namespace Ui { |
|
class OverviewPage; |
|
} |
|
class WalletModel; |
|
class TxViewDelegate; |
|
|
|
/** Overview ("home") page widget */ |
|
class OverviewPage : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit OverviewPage(QWidget *parent = 0); |
|
~OverviewPage(); |
|
|
|
void setModel(WalletModel *model); |
|
|
|
public slots: |
|
void setBalance(qint64 balance, qint64 unconfirmedBalance); |
|
void setNumTransactions(int count); |
|
|
|
signals: |
|
void transactionClicked(const QModelIndex &index); |
|
|
|
private: |
|
Ui::OverviewPage *ui; |
|
WalletModel *model; |
|
qint64 currentBalance; |
|
qint64 currentUnconfirmedBalance; |
|
|
|
TxViewDelegate *txdelegate; |
|
|
|
private slots: |
|
void displayUnitChanged(); |
|
}; |
|
|
|
#endif // OVERVIEWPAGE_H
|
|
|