2017-11-09 19:34:51 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Flowee project
|
|
|
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2013-11-04 16:20:43 +01:00
|
|
|
|
2018-01-16 10:47:52 +00:00
|
|
|
#ifndef FLOWEE_QT_SPLASHSCREEN_H
|
|
|
|
|
#define FLOWEE_QT_SPLASHSCREEN_H
|
2013-04-14 11:35:37 +02:00
|
|
|
|
|
|
|
|
#include <QSplashScreen>
|
|
|
|
|
|
2014-10-09 11:04:49 +02:00
|
|
|
class NetworkStyle;
|
|
|
|
|
|
2014-09-22 10:08:47 +02:00
|
|
|
/** Class for the splashscreen with information of the running client.
|
|
|
|
|
*
|
2017-11-13 23:09:33 +01:00
|
|
|
* @note this is intentionally not a QSplashScreen. The hub initialization
|
2014-09-22 10:08:47 +02:00
|
|
|
* 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:
|
2017-01-30 12:17:25 +01:00
|
|
|
explicit SplashScreen(const NetworkStyle &networkStyle, Qt::WindowFlags flags = 0);
|
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);
|
|
|
|
|
|
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();
|
2014-09-18 13:14:38 +02:00
|
|
|
|
|
|
|
|
QPixmap pixmap;
|
|
|
|
|
QString curMessage;
|
|
|
|
|
QColor curColor;
|
|
|
|
|
int curAlignment;
|
2013-04-14 11:35:37 +02:00
|
|
|
};
|
|
|
|
|
|
2018-01-16 10:47:52 +00:00
|
|
|
#endif
|