b4dd7500b24ee51f5629981f168230f317b158ec
[novacoin.git] / src / qt / bitcoingui.h
1 #ifndef BITCOINGUI_H
2 #define BITCOINGUI_H
3
4 #include <QMainWindow>
5 #include <QSystemTrayIcon>
6
7 class TransactionTableModel;
8 class ClientModel;
9 class WalletModel;
10 class TransactionView;
11 class OverviewPage;
12 class AddressBookPage;
13 class SendCoinsDialog;
14 class SignVerifyMessageDialog;
15 class Notificator;
16 class RPCConsole;
17
18 QT_BEGIN_NAMESPACE
19 class QLabel;
20 class QLineEdit;
21 class QTableView;
22 class QAbstractItemModel;
23 class QModelIndex;
24 class QProgressBar;
25 class QStackedWidget;
26 class QUrl;
27 QT_END_NAMESPACE
28
29 /**
30   Bitcoin GUI main class. This class represents the main window of the Bitcoin UI. It communicates with both the client and
31   wallet models to give the user an up-to-date view of the current core state.
32 */
33 class BitcoinGUI : public QMainWindow
34 {
35     Q_OBJECT
36 public:
37     explicit BitcoinGUI(QWidget *parent = 0);
38     ~BitcoinGUI();
39
40     /** Set the client model.
41         The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
42     */
43     void setClientModel(ClientModel *clientModel);
44     /** Set the wallet model.
45         The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending
46         functionality.
47     */
48     void setWalletModel(WalletModel *walletModel);
49
50 protected:
51     void changeEvent(QEvent *e);
52     void closeEvent(QCloseEvent *event);
53     void dragEnterEvent(QDragEnterEvent *event);
54     void dropEvent(QDropEvent *event);
55
56 private:
57     ClientModel *clientModel;
58     WalletModel *walletModel;
59
60     QStackedWidget *centralWidget;
61
62     OverviewPage *overviewPage;
63     QWidget *transactionsPage;
64     AddressBookPage *addressBookPage;
65     AddressBookPage *receiveCoinsPage;
66     SendCoinsDialog *sendCoinsPage;
67     SignVerifyMessageDialog *signVerifyMessageDialog;
68
69     QLabel *labelEncryptionIcon;
70     QLabel *labelConnectionsIcon;
71     QLabel *labelBlocksIcon;
72     QLabel *progressBarLabel;
73     QProgressBar *progressBar;
74
75     QMenuBar *appMenuBar;
76     QAction *overviewAction;
77     QAction *historyAction;
78     QAction *quitAction;
79     QAction *sendCoinsAction;
80     QAction *addressBookAction;
81     QAction *signMessageAction;
82     QAction *verifyMessageAction;
83     QAction *aboutAction;
84     QAction *receiveCoinsAction;
85     QAction *optionsAction;
86     QAction *toggleHideAction;
87     QAction *exportAction;
88     QAction *encryptWalletAction;
89     QAction *backupWalletAction;
90     QAction *dumpWalletAction;
91     QAction *importWalletAction;
92     QAction *changePassphraseAction;
93     QAction *aboutQtAction;
94     QAction *openRPCConsoleAction;
95
96     QSystemTrayIcon *trayIcon;
97     Notificator *notificator;
98     TransactionView *transactionView;
99     RPCConsole *rpcConsole;
100
101     QMovie *syncIconMovie;
102
103     /** Create the main UI actions. */
104     void createActions();
105     /** Create the menu bar and sub-menus. */
106     void createMenuBar();
107     /** Create the toolbars */
108     void createToolBars();
109     /** Create system tray (notification) icon */
110     void createTrayIcon();
111
112 public slots:
113     /** Set number of connections shown in the UI */
114     void setNumConnections(int count);
115     /** Set number of blocks shown in the UI */
116     void setNumBlocks(int count, int nTotalBlocks);
117     /** Set the encryption status as shown in the UI.
118        @param[in] status            current encryption status
119        @see WalletModel::EncryptionStatus
120     */
121     void setEncryptionStatus(int status);
122
123     /** Notify the user of an error in the network or transaction handling code. */
124     void error(const QString &title, const QString &message, bool modal);
125     void message(const QString &title, const QString &message, unsigned int style, const QString &detail=QString());
126
127     /** Asks the user whether to pay the transaction fee or to cancel the transaction.
128        It is currently not possible to pass a return value to another thread through
129        BlockingQueuedConnection, so an indirected pointer is used.
130        https://bugreports.qt-project.org/browse/QTBUG-10440
131
132       @param[in] nFeeRequired       the required fee
133       @param[out] payFee            true to pay the fee, false to not pay the fee
134     */
135     void askFee(qint64 nFeeRequired, bool *payFee);
136     void handleURI(QString strURI);
137
138 private slots:
139     /** Switch to overview (home) page */
140     void gotoOverviewPage();
141     /** Switch to history (transactions) page */
142     void gotoHistoryPage();
143     /** Switch to address book page */
144     void gotoAddressBookPage();
145     /** Switch to receive coins page */
146     void gotoReceiveCoinsPage();
147     /** Switch to send coins page */
148     void gotoSendCoinsPage();
149
150     /** Show Sign/Verify Message dialog and switch to sign message tab */
151     void gotoSignMessageTab(QString addr = "");
152     /** Show Sign/Verify Message dialog and switch to verify message tab */
153     void gotoVerifyMessageTab(QString addr = "");
154
155     /** Show configuration dialog */
156     void optionsClicked();
157     /** Show about dialog */
158     void aboutClicked();
159 #ifndef Q_OS_MAC
160     /** Handle tray icon clicked */
161     void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
162 #endif
163     /** Show incoming transaction notification for new transactions.
164
165         The new items are those between start and end inclusive, under the given parent item.
166     */
167     void incomingTransaction(const QModelIndex & parent, int start, int end);
168     /** Encrypt the wallet */
169     void encryptWallet(bool status);
170     /** Backup the wallet */
171     void backupWallet();
172     /** Change encrypted wallet passphrase */
173
174     void dumpWallet();
175     void importWallet();
176
177     void changePassphrase();
178     /** Ask for passphrase to unlock wallet temporarily */
179     void unlockWallet();
180
181     /** Show window if hidden, unminimize when minimized, rise when obscured or show if hidden and fToggleHidden is true */
182     void showNormalIfMinimized(bool fToggleHidden = false);
183     /** simply calls showNormalIfMinimized(true) for use in SLOT() macro */
184     void toggleHidden();
185 };
186
187 #endif