You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
// Copyright (c) 2011-2014 The Bitcoin developers |
|
// Distributed under the MIT/X11 software license, see the accompanying |
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
#ifndef SPLASHSCREEN_H |
|
#define SPLASHSCREEN_H |
|
|
|
#include <QSplashScreen> |
|
|
|
/** 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. |
|
*/ |
|
class SplashScreen : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit SplashScreen(Qt::WindowFlags f, bool isTestNet); |
|
~SplashScreen(); |
|
|
|
protected: |
|
void paintEvent(QPaintEvent *event); |
|
void closeEvent(QCloseEvent *event); |
|
|
|
public slots: |
|
/** Slot to call finish() method as it's not defined as slot */ |
|
void slotFinish(QWidget *mainWin); |
|
|
|
/** Show message and progress */ |
|
void showMessage(const QString &message, int alignment, const QColor &color); |
|
|
|
private: |
|
/** Connect core signals to splash screen */ |
|
void subscribeToCoreSignals(); |
|
/** Disconnect core signals to splash screen */ |
|
void unsubscribeFromCoreSignals(); |
|
|
|
QPixmap pixmap; |
|
QString curMessage; |
|
QColor curColor; |
|
int curAlignment; |
|
}; |
|
|
|
#endif // SPLASHSCREEN_H
|
|
|