2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_SPLASHSCREEN_H
|
|
|
|
#define BITCOIN_QT_SPLASHSCREEN_H
|
2013-04-14 11:35:37 +02:00
|
|
|
|
2017-06-23 09:32:38 +02:00
|
|
|
#include <functional>
|
2013-04-14 11:35:37 +02:00
|
|
|
#include <QSplashScreen>
|
|
|
|
|
2017-04-17 21:10:47 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-10-09 11:04:49 +02:00
|
|
|
class NetworkStyle;
|
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
namespace interfaces {
|
2017-04-17 21:10:47 +02:00
|
|
|
class Handler;
|
|
|
|
class Node;
|
|
|
|
class Wallet;
|
|
|
|
};
|
|
|
|
|
2014-09-22 10:08:47 +02:00
|
|
|
/** Class for the splashscreen with information of the running client.
|
|
|
|
*
|
|
|
|
* @note this is intentionally not a QSplashScreen. Bitcoin Core initialization
|
|
|
|
* can take a long time, and in that case a progress window that cannot be
|
|
|
|
* moved around and minimized has turned out to be frustrating to the user.
|
2013-04-14 11:35:37 +02:00
|
|
|
*/
|
2014-09-18 13:14:38 +02:00
|
|
|
class SplashScreen : public QWidget
|
2013-04-14 11:35:37 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-04-07 09:42:02 +02:00
|
|
|
explicit SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const NetworkStyle *networkStyle);
|
2014-01-08 08:59:24 +01:00
|
|
|
~SplashScreen();
|
|
|
|
|
2014-09-18 13:14:38 +02:00
|
|
|
protected:
|
2014-09-22 10:08:47 +02:00
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
void closeEvent(QCloseEvent *event);
|
2014-09-18 13:14:38 +02:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2014-01-08 08:59:24 +01:00
|
|
|
/** Slot to call finish() method as it's not defined as slot */
|
|
|
|
void slotFinish(QWidget *mainWin);
|
|
|
|
|
2014-09-18 13:14:38 +02:00
|
|
|
/** Show message and progress */
|
|
|
|
void showMessage(const QString &message, int alignment, const QColor &color);
|
|
|
|
|
2017-06-23 09:32:38 +02:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject * obj, QEvent * ev);
|
|
|
|
|
2014-01-08 08:59:24 +01:00
|
|
|
private:
|
|
|
|
/** Connect core signals to splash screen */
|
|
|
|
void subscribeToCoreSignals();
|
|
|
|
/** Disconnect core signals to splash screen */
|
|
|
|
void unsubscribeFromCoreSignals();
|
2016-09-08 21:58:30 +02:00
|
|
|
/** Connect wallet signals to splash screen */
|
2018-04-07 09:42:02 +02:00
|
|
|
void ConnectWallet(std::unique_ptr<interfaces::Wallet> wallet);
|
2014-09-18 13:14:38 +02:00
|
|
|
|
|
|
|
QPixmap pixmap;
|
|
|
|
QString curMessage;
|
|
|
|
QColor curColor;
|
|
|
|
int curAlignment;
|
2016-09-08 21:58:30 +02:00
|
|
|
|
2018-04-07 09:42:02 +02:00
|
|
|
interfaces::Node& m_node;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_init_message;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_show_progress;
|
|
|
|
std::unique_ptr<interfaces::Handler> m_handler_load_wallet;
|
|
|
|
std::list<std::unique_ptr<interfaces::Wallet>> m_connected_wallets;
|
|
|
|
std::list<std::unique_ptr<interfaces::Handler>> m_connected_wallet_handlers;
|
2013-04-14 11:35:37 +02:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_SPLASHSCREEN_H
|