Master Core  v0.0.9 - 2abfd2849db8ba7a83957c64eb976b406713c123
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
splashscreen.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2014 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef SPLASHSCREEN_H
6 #define SPLASHSCREEN_H
7 
8 #include <QSplashScreen>
9 
13 {
14  Q_OBJECT
15 
16 public:
17  explicit SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f, bool isTestNet);
18  ~SplashScreen();
19 
20 public slots:
22  void slotFinish(QWidget *mainWin);
23 
24 private:
29 };
30 
31 #endif // SPLASHSCREEN_H
void unsubscribeFromCoreSignals()
Disconnect core signals to splash screen.
class for the splashscreen with information of the running client
Definition: splashscreen.h:12
void subscribeToCoreSignals()
Connect core signals to splash screen.
SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f, bool isTestNet)
void slotFinish(QWidget *mainWin)
Slot to call finish() method as it's not defined as slot.