Anoncoin  0.9.4
P2P Digital Currency
splashscreen.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2014 The Bitcoin developers
2 // Copyright (c) 2013-2014 The Anoncoin Core developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef SPLASHSCREEN_H
7 #define SPLASHSCREEN_H
8 
9 #include <QSplashScreen>
10 
13 class SplashScreen : public QSplashScreen
14 {
15  Q_OBJECT
16 
17 public:
18  explicit SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f, bool isTestNet);
19  ~SplashScreen();
20 
21 public slots:
23  void slotFinish(QWidget *mainWin);
24 
25 private:
30 };
31 
32 #endif // SPLASHSCREEN_H
void unsubscribeFromCoreSignals()
Disconnect core signals to splash screen.
class for the splashscreen with information of the running client
Definition: splashscreen.h:13
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.