8d5266b46393a2cc4e6fbd9e1de56f4436ce18bb
[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 *labelMiningIcon;
73     QLabel *progressBarLabel;
74     QProgressBar *progressBar;
75
76     QMenuBar *appMenuBar;
77     QAction *overviewAction;
78     QAction *historyAction;
79     QAction *quitAction;
80     QAction *sendCoinsAction;
81     QAction *addressBookAction;
82     QAction *signMessageAction;
83     QAction *verifyMessageAction;
84     QAction *aboutAction;
85     QAction *receiveCoinsAction;
86     QAction *optionsAction;
87     QAction *toggleHideAction;
88     QAction *exportAction;
89     QAction *encryptWalletAction;
90     QAction *backupWalletAction;
91     QAction *dumpWalletAction;
92     QAction *importWalletAction;
93     QAction *changePassphraseAction;
94     QAction *aboutQtAction;
95     QAction *openRPCConsoleAction;
96
97     QSystemTrayIcon *trayIcon;
98     Notificator *notificator;
99     TransactionView *transactionView;
100     RPCConsole *rpcConsole;
101
102     QMovie *syncIconMovie;
103
104     /** Create the main UI actions. */
105     void createActions();
106     /** Create the menu bar and sub-menus. */
107     void createMenuBar();
108     /** Create the toolbars */
109     void createToolBars();
110     /** Create system tray (notification) icon */
111     void createTrayIcon();
112
113 public slots:
114     /** Set number of connections shown in the UI */
115     void setNumConnections(int count);
116     /** Set number of blocks shown in the UI */
117     void setNumBlocks(int count, int nTotalBlocks);
118     /** Set stake miner status in the UI */
119     void updateMining();
120     /** Set the encryption status as shown in the UI.
121        @param[in] status            current encryption status
122        @see WalletModel::EncryptionStatus
123     */
124     void setEncryptionStatus(int status);
125
126     /** Notify the user of an error in the network or transaction handling code. */
127     void error(const QString &title, const QString &message, bool modal);
128     void message(const QString &title, const QString &message, unsigned int style, const QString &detail=QString());
129
130     /** Asks the user whether to pay the transaction fee or to cancel the transaction.
131        It is currently not possible to pass a return value to another thread through
132        BlockingQueuedConnection, so an indirected pointer is used.
133        https://bugreports.qt-project.org/browse/QTBUG-10440
134
135       @param[in] nFeeRequired       the required fee
136       @param[out] payFee            true to pay the fee, false to not pay the fee
137     */
138     void askFee(qint64 nFeeRequired, bool *payFee);
139     void handleURI(QString strURI);
140
141 private slots:
142     /** Switch to overview (home) page */
143     void gotoOverviewPage();
144     /** Switch to history (transactions) page */
145     void gotoHistoryPage();
146     /** Switch to address book page */
147     void gotoAddressBookPage();
148     /** Switch to receive coins page */
149     void gotoReceiveCoinsPage();
150     /** Switch to send coins page */
151     void gotoSendCoinsPage();
152
153     /** Show Sign/Verify Message dialog and switch to sign message tab */
154     void gotoSignMessageTab(QString addr = "");
155     /** Show Sign/Verify Message dialog and switch to verify message tab */
156     void gotoVerifyMessageTab(QString addr = "");
157
158     /** Show configuration dialog */
159     void optionsClicked();
160     /** Show about dialog */
161     void aboutClicked();
162 #ifndef Q_OS_MAC
163     /** Handle tray icon clicked */
164     void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
165 #endif
166     /** Show incoming transaction notification for new transactions.
167
168         The new items are those between start and end inclusive, under the given parent item.
169     */
170     void incomingTransaction(const QModelIndex & parent, int start, int end);
171     /** Encrypt the wallet */
172     void encryptWallet(bool status);
173     /** Backup the wallet */
174     void backupWallet();
175     /** Change encrypted wallet passphrase */
176
177     void dumpWallet();
178     void importWallet();
179
180     void changePassphrase();
181     /** Ask for passphrase to unlock wallet temporarily */
182     void unlockWallet();
183
184     /** Show window if hidden, unminimize when minimized, rise when obscured or show if hidden and fToggleHidden is true */
185     void showNormalIfMinimized(bool fToggleHidden = false);
186     /** simply calls showNormalIfMinimized(true) for use in SLOT() macro */
187     void toggleHidden();
188 };
189
190 #endif