Dogecoin Core  1.14.2
P2P Digital Currency
overviewpage.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_QT_OVERVIEWPAGE_H
6 #define BITCOIN_QT_OVERVIEWPAGE_H
7 
8 #include "amount.h"
9 
10 #include <QWidget>
11 #include <memory>
12 
13 class ClientModel;
15 class TxViewDelegate;
16 class PlatformStyle;
17 class WalletModel;
18 
19 namespace Ui {
20  class OverviewPage;
21 }
22 
23 QT_BEGIN_NAMESPACE
24 class QModelIndex;
25 QT_END_NAMESPACE
26 
28 class OverviewPage : public QWidget
29 {
30  Q_OBJECT
31 
32 public:
33  explicit OverviewPage(const PlatformStyle *platformStyle, QWidget *parent = 0);
34  ~OverviewPage();
35 
38  void showOutOfSyncWarning(bool fShow);
39 
40 public Q_SLOTS:
41  void setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance,
42  const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance);
43 
44 Q_SIGNALS:
45  void transactionClicked(const QModelIndex &index);
47 
48 private:
49  Ui::OverviewPage *ui;
58 
60  std::unique_ptr<TransactionFilterProxy> filter;
61 
62 private Q_SLOTS:
63  void updateDisplayUnit();
64  void handleTransactionClicked(const QModelIndex &index);
65  void updateAlerts(const QString &warnings);
66  void updateWatchOnlyLabels(bool showWatchOnly);
68 };
69 
70 #endif // BITCOIN_QT_OVERVIEWPAGE_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:15
Model for Bitcoin network client.
Definition: clientmodel.h:42
Overview ("home") page widget.
Definition: overviewpage.h:29
void updateDisplayUnit()
CAmount currentImmatureBalance
Definition: overviewpage.h:54
CAmount currentWatchOnlyBalance
Definition: overviewpage.h:55
void setWalletModel(WalletModel *walletModel)
CAmount currentWatchUnconfBalance
Definition: overviewpage.h:56
void updateAlerts(const QString &warnings)
void updateWatchOnlyLabels(bool showWatchOnly)
void setClientModel(ClientModel *clientModel)
WalletModel * walletModel
Definition: overviewpage.h:51
Ui::OverviewPage * ui
Definition: overviewpage.h:49
CAmount currentWatchImmatureBalance
Definition: overviewpage.h:57
void handleTransactionClicked(const QModelIndex &index)
void transactionClicked(const QModelIndex &index)
OverviewPage(const PlatformStyle *platformStyle, QWidget *parent=0)
CAmount currentUnconfirmedBalance
Definition: overviewpage.h:53
void handleOutOfSyncWarningClicks()
CAmount currentBalance
Definition: overviewpage.h:52
std::unique_ptr< TransactionFilterProxy > filter
Definition: overviewpage.h:60
void outOfSyncWarningClicked()
void showOutOfSyncWarning(bool fShow)
ClientModel * clientModel
Definition: overviewpage.h:50
void setBalance(const CAmount &balance, const CAmount &unconfirmedBalance, const CAmount &immatureBalance, const CAmount &watchOnlyBalance, const CAmount &watchUnconfBalance, const CAmount &watchImmatureBalance)
TxViewDelegate * txdelegate
Definition: overviewpage.h:59
Filter the transaction list according to pre-specified rules.
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:99