swift
splashscreen.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_GUI_SPLASHSCREEN_H
7 #define SWIFT_GUI_SPLASHSCREEN_H
8 
9 #include <QFont>
10 #include <QPixmap>
11 #include <QSplashScreen>
12 #include <QTimer>
13 
14 #include "misc/statusmessage.h"
15 
16 namespace swift::gui
17 {
21  class CSplashScreen : public QSplashScreen
22  {
23  public:
25  CSplashScreen(const QPixmap &pixmap, const QFont &font);
26 
28  void showStatusMessage(const QString &msg);
29  };
30 } // namespace swift::gui
31 
32 #endif // SWIFT_GUI_SPLASHSCREEN_H
Own splash screen.
Definition: splashscreen.h:22
void showStatusMessage(const QString &msg)
Show status message.
CSplashScreen(const QPixmap &pixmap, const QFont &font)
Ctor.
GUI related classes.