2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_QT_BITCOINGUI_H
|
|
|
|
#define BITCOIN_QT_BITCOINGUI_H
|
2011-05-07 17:13:39 -03:00
|
|
|
|
2013-12-11 11:00:56 -03:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <config/bitcoin-config.h>
|
2013-12-11 11:00:56 -03:00
|
|
|
#endif
|
|
|
|
|
2018-05-16 16:05:09 -04:00
|
|
|
#include <qt/optionsdialog.h>
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <amount.h>
|
2014-04-22 19:46:19 -03:00
|
|
|
|
2014-06-07 02:20:22 -04:00
|
|
|
#include <QLabel>
|
2011-05-07 17:13:39 -03:00
|
|
|
#include <QMainWindow>
|
2013-03-22 14:32:49 -03:00
|
|
|
#include <QMap>
|
2014-06-07 02:20:22 -04:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QPoint>
|
2013-04-13 02:13:08 -03:00
|
|
|
#include <QSystemTrayIcon>
|
2011-05-12 14:16:42 -04:00
|
|
|
|
2018-11-01 12:22:06 -03:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
#include <qt/macos_appnap.h>
|
|
|
|
#endif
|
|
|
|
|
2017-04-17 15:33:47 -03:00
|
|
|
#include <memory>
|
|
|
|
|
2011-05-22 11:19:43 -04:00
|
|
|
class ClientModel;
|
2014-10-09 06:04:49 -03:00
|
|
|
class NetworkStyle;
|
2011-09-03 15:52:54 -03:00
|
|
|
class Notificator;
|
2014-06-07 02:20:22 -04:00
|
|
|
class OptionsModel;
|
2015-07-28 10:20:14 -03:00
|
|
|
class PlatformStyle;
|
2012-04-09 16:07:25 -03:00
|
|
|
class RPCConsole;
|
2013-04-13 02:13:08 -03:00
|
|
|
class SendCoinsRecipient;
|
2014-07-04 10:51:25 -04:00
|
|
|
class UnitDisplayStatusBarControl;
|
2013-04-13 02:13:08 -03:00
|
|
|
class WalletFrame;
|
|
|
|
class WalletModel;
|
2015-08-27 16:53:16 -03:00
|
|
|
class HelpMessageDialog;
|
2016-07-19 09:51:24 -04:00
|
|
|
class ModalOverlay;
|
2011-05-13 16:00:27 -04:00
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
namespace interfaces {
|
2017-04-17 15:33:47 -03:00
|
|
|
class Handler;
|
|
|
|
class Node;
|
|
|
|
}
|
|
|
|
|
2011-05-13 16:00:27 -04:00
|
|
|
QT_BEGIN_NAMESPACE
|
2013-04-13 02:13:08 -03:00
|
|
|
class QAction;
|
2016-09-09 07:43:54 -03:00
|
|
|
class QComboBox;
|
2011-06-18 15:25:38 -04:00
|
|
|
class QProgressBar;
|
2014-05-23 12:04:09 -04:00
|
|
|
class QProgressDialog;
|
2011-05-13 16:00:27 -04:00
|
|
|
QT_END_NAMESPACE
|
2011-05-07 17:13:39 -03:00
|
|
|
|
2018-05-16 16:05:09 -04:00
|
|
|
namespace GUIUtil {
|
|
|
|
class ClickableLabel;
|
2018-06-24 11:18:22 -04:00
|
|
|
class ClickableProgressBar;
|
2018-05-16 16:05:09 -04:00
|
|
|
}
|
|
|
|
|
2011-11-13 07:12:33 -03:00
|
|
|
/**
|
|
|
|
Bitcoin GUI main class. This class represents the main window of the Bitcoin UI. It communicates with both the client and
|
|
|
|
wallet models to give the user an up-to-date view of the current core state.
|
|
|
|
*/
|
2011-05-07 17:13:39 -03:00
|
|
|
class BitcoinGUI : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-01-23 17:51:02 -03:00
|
|
|
|
2011-05-07 17:13:39 -03:00
|
|
|
public:
|
2015-11-28 18:44:55 -03:00
|
|
|
static const std::string DEFAULT_UIPLATFORM;
|
2013-04-03 12:29:02 -03:00
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
explicit BitcoinGUI(interfaces::Node& node, const PlatformStyle *platformStyle, const NetworkStyle *networkStyle, QWidget *parent = 0);
|
2011-10-07 08:21:45 -03:00
|
|
|
~BitcoinGUI();
|
|
|
|
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Set the client model.
|
|
|
|
The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
|
|
|
|
*/
|
2011-06-30 12:05:29 -04:00
|
|
|
void setClientModel(ClientModel *clientModel);
|
2013-10-25 09:19:44 -03:00
|
|
|
|
2013-12-11 11:00:56 -03:00
|
|
|
#ifdef ENABLE_WALLET
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Set the wallet model.
|
|
|
|
The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending
|
|
|
|
functionality.
|
|
|
|
*/
|
2017-10-12 04:22:48 -03:00
|
|
|
bool addWallet(WalletModel *walletModel);
|
2018-06-05 06:17:28 -04:00
|
|
|
bool removeWallet(WalletModel* walletModel);
|
2013-03-22 14:32:49 -03:00
|
|
|
void removeAllWallets();
|
2014-10-30 03:31:34 -03:00
|
|
|
#endif // ENABLE_WALLET
|
2018-06-24 09:15:17 -04:00
|
|
|
bool enableWallet = false;
|
2012-05-05 09:24:06 -04:00
|
|
|
|
2011-06-05 08:19:57 -04:00
|
|
|
protected:
|
|
|
|
void changeEvent(QEvent *e);
|
|
|
|
void closeEvent(QCloseEvent *event);
|
2016-05-11 16:08:36 -03:00
|
|
|
void showEvent(QShowEvent *event);
|
2011-08-07 10:04:48 -04:00
|
|
|
void dragEnterEvent(QDragEnterEvent *event);
|
|
|
|
void dropEvent(QDropEvent *event);
|
2012-10-12 11:08:47 -03:00
|
|
|
bool eventFilter(QObject *object, QEvent *event);
|
2011-06-05 08:19:57 -04:00
|
|
|
|
2011-05-12 14:16:42 -04:00
|
|
|
private:
|
2018-04-07 04:42:02 -03:00
|
|
|
interfaces::Node& m_node;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_message_box;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_question;
|
2018-06-24 09:15:17 -04:00
|
|
|
ClientModel* clientModel = nullptr;
|
|
|
|
WalletFrame* walletFrame = nullptr;
|
|
|
|
|
|
|
|
UnitDisplayStatusBarControl* unitDisplayControl = nullptr;
|
|
|
|
QLabel* labelWalletEncryptionIcon = nullptr;
|
|
|
|
QLabel* labelWalletHDStatusIcon = nullptr;
|
2018-05-16 16:05:09 -04:00
|
|
|
GUIUtil::ClickableLabel* labelProxyIcon = nullptr;
|
|
|
|
GUIUtil::ClickableLabel* connectionsControl = nullptr;
|
2018-06-24 11:18:22 -04:00
|
|
|
GUIUtil::ClickableLabel* labelBlocksIcon = nullptr;
|
2018-06-24 09:15:17 -04:00
|
|
|
QLabel* progressBarLabel = nullptr;
|
2018-06-24 11:18:22 -04:00
|
|
|
GUIUtil::ClickableProgressBar* progressBar = nullptr;
|
2018-06-24 09:15:17 -04:00
|
|
|
QProgressDialog* progressDialog = nullptr;
|
|
|
|
|
|
|
|
QMenuBar* appMenuBar = nullptr;
|
|
|
|
QToolBar* appToolBar = nullptr;
|
|
|
|
QAction* overviewAction = nullptr;
|
|
|
|
QAction* historyAction = nullptr;
|
|
|
|
QAction* quitAction = nullptr;
|
|
|
|
QAction* sendCoinsAction = nullptr;
|
|
|
|
QAction* sendCoinsMenuAction = nullptr;
|
|
|
|
QAction* usedSendingAddressesAction = nullptr;
|
|
|
|
QAction* usedReceivingAddressesAction = nullptr;
|
|
|
|
QAction* signMessageAction = nullptr;
|
|
|
|
QAction* verifyMessageAction = nullptr;
|
|
|
|
QAction* aboutAction = nullptr;
|
|
|
|
QAction* receiveCoinsAction = nullptr;
|
|
|
|
QAction* receiveCoinsMenuAction = nullptr;
|
|
|
|
QAction* optionsAction = nullptr;
|
|
|
|
QAction* toggleHideAction = nullptr;
|
|
|
|
QAction* encryptWalletAction = nullptr;
|
|
|
|
QAction* backupWalletAction = nullptr;
|
|
|
|
QAction* changePassphraseAction = nullptr;
|
|
|
|
QAction* aboutQtAction = nullptr;
|
|
|
|
QAction* openRPCConsoleAction = nullptr;
|
|
|
|
QAction* openAction = nullptr;
|
|
|
|
QAction* showHelpMessageAction = nullptr;
|
|
|
|
QAction* m_wallet_selector_label_action = nullptr;
|
|
|
|
QAction* m_wallet_selector_action = nullptr;
|
2013-04-01 09:43:50 -03:00
|
|
|
|
2018-06-05 06:17:28 -04:00
|
|
|
QLabel *m_wallet_selector_label = nullptr;
|
2018-06-24 09:15:17 -04:00
|
|
|
QComboBox* m_wallet_selector = nullptr;
|
2016-09-09 07:43:54 -03:00
|
|
|
|
2018-06-24 09:15:17 -04:00
|
|
|
QSystemTrayIcon* trayIcon = nullptr;
|
|
|
|
QMenu* trayIconMenu = nullptr;
|
|
|
|
Notificator* notificator = nullptr;
|
|
|
|
RPCConsole* rpcConsole = nullptr;
|
|
|
|
HelpMessageDialog* helpMessageDialog = nullptr;
|
|
|
|
ModalOverlay* modalOverlay = nullptr;
|
2011-05-12 14:16:42 -04:00
|
|
|
|
2018-11-01 12:22:06 -03:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
CAppNapInhibitor* m_app_nap_inhibitor = nullptr;
|
|
|
|
#endif
|
|
|
|
|
2013-02-10 15:01:30 -03:00
|
|
|
/** Keep track of previous number of blocks, to detect progress */
|
2018-06-24 09:15:17 -04:00
|
|
|
int prevBlocks = 0;
|
|
|
|
int spinnerFrame = 0;
|
2011-07-17 11:30:58 -04:00
|
|
|
|
2015-07-28 10:20:14 -03:00
|
|
|
const PlatformStyle *platformStyle;
|
|
|
|
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Create the main UI actions. */
|
2015-03-03 04:42:52 -03:00
|
|
|
void createActions();
|
2012-07-25 20:48:39 -04:00
|
|
|
/** Create the menu bar and sub-menus. */
|
2011-10-07 08:21:45 -03:00
|
|
|
void createMenuBar();
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Create the toolbars */
|
2011-10-07 08:21:45 -03:00
|
|
|
void createToolBars();
|
2012-11-27 18:20:43 -03:00
|
|
|
/** Create system tray icon and notification */
|
2014-10-09 06:04:49 -03:00
|
|
|
void createTrayIcon(const NetworkStyle *networkStyle);
|
2012-11-27 18:20:43 -03:00
|
|
|
/** Create system tray menu (or setup the dock menu) */
|
|
|
|
void createTrayIconMenu();
|
2011-05-12 14:16:42 -04:00
|
|
|
|
2013-11-12 10:54:43 -03:00
|
|
|
/** Enable or disable all wallet-related actions */
|
|
|
|
void setWalletActionsEnabled(bool enabled);
|
|
|
|
|
2014-01-08 04:59:24 -03:00
|
|
|
/** Connect core signals to GUI client */
|
|
|
|
void subscribeToCoreSignals();
|
|
|
|
/** Disconnect core signals from GUI client */
|
|
|
|
void unsubscribeFromCoreSignals();
|
|
|
|
|
2013-03-25 23:07:06 -03:00
|
|
|
/** Update UI with latest network info from model. */
|
|
|
|
void updateNetworkState();
|
|
|
|
|
2017-01-03 11:09:57 -03:00
|
|
|
void updateHeadersSyncProgressLabel();
|
|
|
|
|
2018-05-16 16:05:09 -04:00
|
|
|
/** Open the OptionsDialog on the specified tab index */
|
|
|
|
void openOptionsDialogWithTab(OptionsDialog::Tab tab);
|
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
Q_SIGNALS:
|
2013-11-06 11:08:56 -03:00
|
|
|
/** Signal raised when a URI was entered or dragged to the GUI */
|
|
|
|
void receivedURI(const QString &uri);
|
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
public Q_SLOTS:
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Set number of connections shown in the UI */
|
2011-05-12 14:28:07 -04:00
|
|
|
void setNumConnections(int count);
|
2013-03-25 23:07:06 -03:00
|
|
|
/** Set network state shown in the UI */
|
|
|
|
void setNetworkActive(bool networkActive);
|
2015-02-09 07:19:01 -03:00
|
|
|
/** Set number of blocks and last block date shown in the UI */
|
2016-04-28 11:18:45 -03:00
|
|
|
void setNumBlocks(int count, const QDateTime& blockDate, double nVerificationProgress, bool headers);
|
2011-08-23 15:08:42 -03:00
|
|
|
|
2012-11-05 04:04:21 -03:00
|
|
|
/** Notify the user of an event from the core network or transaction handling code.
|
|
|
|
@param[in] title the message box / notification title
|
|
|
|
@param[in] message the displayed text
|
2012-12-03 09:24:42 -03:00
|
|
|
@param[in] style modality and style definitions (icon and used buttons - buttons only for message boxes)
|
2012-11-05 04:04:21 -03:00
|
|
|
@see CClientUIInterface::MessageBoxFlags
|
2013-02-16 13:58:45 -03:00
|
|
|
@param[in] ret pointer to a bool that will be modified to whether Ok was clicked (modal only)
|
2012-11-05 04:04:21 -03:00
|
|
|
*/
|
2017-08-07 01:36:37 -04:00
|
|
|
void message(const QString &title, const QString &message, unsigned int style, bool *ret = nullptr);
|
2013-10-22 16:27:24 -03:00
|
|
|
|
2013-12-11 11:00:56 -03:00
|
|
|
#ifdef ENABLE_WALLET
|
2016-09-09 07:43:54 -03:00
|
|
|
bool setCurrentWallet(const QString& name);
|
2018-05-18 08:34:53 -04:00
|
|
|
bool setCurrentWalletBySelectorIndex(int index);
|
2016-10-24 04:21:51 -03:00
|
|
|
/** Set the UI status indicators based on the currently selected wallet.
|
|
|
|
*/
|
|
|
|
void updateWalletStatus();
|
2016-09-09 07:43:54 -03:00
|
|
|
|
|
|
|
private:
|
2013-12-11 11:00:56 -03:00
|
|
|
/** Set the encryption status as shown in the UI.
|
|
|
|
@param[in] status current encryption status
|
|
|
|
@see WalletModel::EncryptionStatus
|
|
|
|
*/
|
|
|
|
void setEncryptionStatus(int status);
|
|
|
|
|
2016-08-17 09:09:47 -03:00
|
|
|
/** Set the hd-enabled status as shown in the UI.
|
2018-08-08 15:12:14 -04:00
|
|
|
@param[in] hdEnabled current hd enabled status
|
2016-08-17 09:09:47 -03:00
|
|
|
@see WalletModel::EncryptionStatus
|
|
|
|
*/
|
2018-09-17 23:39:26 -03:00
|
|
|
void setHDStatus(bool privkeyDisabled, int hdEnabled);
|
2016-08-17 09:09:47 -03:00
|
|
|
|
2016-10-24 04:21:51 -03:00
|
|
|
public Q_SLOTS:
|
2013-10-24 10:49:13 -03:00
|
|
|
bool handlePaymentRequest(const SendCoinsRecipient& recipient);
|
2011-05-12 14:28:07 -04:00
|
|
|
|
2013-03-22 14:32:49 -03:00
|
|
|
/** Show incoming transaction notification for new transactions. */
|
2018-03-06 01:26:40 -03:00
|
|
|
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address, const QString& label, const QString& walletName);
|
2014-10-30 03:31:34 -03:00
|
|
|
#endif // ENABLE_WALLET
|
2013-03-22 14:32:49 -03:00
|
|
|
|
2017-10-02 11:59:32 -03:00
|
|
|
private:
|
|
|
|
/** Set the proxy-enabled icon as shown in the UI. */
|
|
|
|
void updateProxyIcon();
|
|
|
|
|
2018-06-24 11:18:22 -04:00
|
|
|
public Q_SLOTS:
|
2013-12-11 11:00:56 -03:00
|
|
|
#ifdef ENABLE_WALLET
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Switch to overview (home) page */
|
2011-07-07 11:33:15 -04:00
|
|
|
void gotoOverviewPage();
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Switch to history (transactions) page */
|
2011-07-07 11:33:15 -04:00
|
|
|
void gotoHistoryPage();
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Switch to receive coins page */
|
2011-07-07 11:33:15 -04:00
|
|
|
void gotoReceiveCoinsPage();
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Switch to send coins page */
|
2013-04-01 09:43:50 -03:00
|
|
|
void gotoSendCoinsPage(QString addr = "");
|
2011-07-07 11:33:15 -04:00
|
|
|
|
2012-07-08 12:48:56 -04:00
|
|
|
/** Show Sign/Verify Message dialog and switch to sign message tab */
|
|
|
|
void gotoSignMessageTab(QString addr = "");
|
|
|
|
/** Show Sign/Verify Message dialog and switch to verify message tab */
|
|
|
|
void gotoVerifyMessageTab(QString addr = "");
|
|
|
|
|
2013-12-11 11:00:56 -03:00
|
|
|
/** Show open dialog */
|
|
|
|
void openClicked();
|
2014-10-30 03:31:34 -03:00
|
|
|
#endif // ENABLE_WALLET
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Show configuration dialog */
|
2011-05-10 13:03:10 -04:00
|
|
|
void optionsClicked();
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Show about dialog */
|
2011-05-12 03:40:40 -04:00
|
|
|
void aboutClicked();
|
2015-09-07 06:00:59 -03:00
|
|
|
/** Show debug window */
|
|
|
|
void showDebugWindow();
|
2015-11-12 08:59:26 -03:00
|
|
|
/** Show debug window and set focus to the console */
|
|
|
|
void showDebugWindowActivateConsole();
|
2014-01-22 10:47:33 -03:00
|
|
|
/** Show help message dialog */
|
|
|
|
void showHelpMessageClicked();
|
2012-09-21 14:06:53 -03:00
|
|
|
#ifndef Q_OS_MAC
|
2011-11-13 07:12:33 -03:00
|
|
|
/** Handle tray icon clicked */
|
2011-06-05 08:19:57 -04:00
|
|
|
void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
|
2018-10-31 16:15:31 -03:00
|
|
|
#else
|
|
|
|
/** Handle macOS Dock icon clicked */
|
|
|
|
void macosDockIconActivated();
|
2011-10-07 08:21:45 -03:00
|
|
|
#endif
|
2012-02-17 19:19:52 -03:00
|
|
|
|
2012-06-05 01:23:26 -04:00
|
|
|
/** Show window if hidden, unminimize when minimized, rise when obscured or show if hidden and fToggleHidden is true */
|
2018-06-24 11:18:22 -04:00
|
|
|
void showNormalIfMinimized() { showNormalIfMinimized(false); }
|
|
|
|
void showNormalIfMinimized(bool fToggleHidden);
|
2012-10-12 11:08:47 -03:00
|
|
|
/** Simply calls showNormalIfMinimized(true) for use in SLOT() macro */
|
2012-02-17 11:34:53 -03:00
|
|
|
void toggleHidden();
|
2013-03-23 19:14:12 -03:00
|
|
|
|
2018-05-16 15:17:40 -04:00
|
|
|
/** called by a timer to check if ShutdownRequested() has been set **/
|
2013-03-23 19:14:12 -03:00
|
|
|
void detectShutdown();
|
2014-05-23 12:04:09 -04:00
|
|
|
|
|
|
|
/** Show progress dialog e.g. for verifychain */
|
|
|
|
void showProgress(const QString &title, int nProgress);
|
2018-07-24 11:59:49 -04:00
|
|
|
|
2016-05-11 23:28:02 -03:00
|
|
|
/** When hideTrayIcon setting is changed in OptionsModel hide or show the icon accordingly. */
|
|
|
|
void setTrayIconVisible(bool);
|
2016-07-19 09:51:24 -04:00
|
|
|
|
|
|
|
void showModalOverlay();
|
2011-05-07 17:13:39 -03:00
|
|
|
};
|
|
|
|
|
2014-06-07 02:20:22 -04:00
|
|
|
class UnitDisplayStatusBarControl : public QLabel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-07-28 10:20:14 -03:00
|
|
|
explicit UnitDisplayStatusBarControl(const PlatformStyle *platformStyle);
|
2014-06-07 02:20:22 -04:00
|
|
|
/** Lets the control know about the Options Model (and its signals) */
|
|
|
|
void setOptionsModel(OptionsModel *optionsModel);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/** So that it responds to left-button clicks */
|
|
|
|
void mousePressEvent(QMouseEvent *event);
|
|
|
|
|
|
|
|
private:
|
|
|
|
OptionsModel *optionsModel;
|
|
|
|
QMenu* menu;
|
2014-08-07 03:34:31 -04:00
|
|
|
|
2014-06-07 02:20:22 -04:00
|
|
|
/** Shows context menu with Display Unit options by the mouse coordinates */
|
|
|
|
void onDisplayUnitsClicked(const QPoint& point);
|
|
|
|
/** Creates context menu, its actions, and wires up all the relevant signals for mouse events. */
|
|
|
|
void createContextMenu();
|
|
|
|
|
2015-07-14 08:59:05 -03:00
|
|
|
private Q_SLOTS:
|
2014-06-07 02:20:22 -04:00
|
|
|
/** When Display Units are changed on OptionsModel it will refresh the display text of the control on the status bar */
|
|
|
|
void updateDisplayUnit(int newUnits);
|
|
|
|
/** Tells underlying optionsModel to update its current display unit. */
|
|
|
|
void onMenuSelection(QAction* action);
|
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_QT_BITCOINGUI_H
|