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.
75 lines
1.8 KiB
75 lines
1.8 KiB
/* |
|
* Copyright (C) 2010 Ivan Cukic <ivan.cukic(at)kde.org> |
|
* Copyright (C) 2013 Martin Klapetek <mklapetek(at)kde.org> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License version 2, |
|
* or (at your option) any later version, as published by the Free |
|
* Software Foundation |
|
* |
|
* 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, write to the |
|
* Free Software Foundation, Inc., |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#ifndef SPLASH_APP_H_ |
|
#define SPLASH_APP_H_ |
|
|
|
#include <QBasicTimer> |
|
#include <QGuiApplication> |
|
#include <QObject> |
|
|
|
class SplashWindow; |
|
|
|
namespace KWayland |
|
{ |
|
namespace Client |
|
{ |
|
class PlasmaShell; |
|
} |
|
} |
|
|
|
class SplashApp : public QGuiApplication |
|
{ |
|
Q_OBJECT |
|
Q_CLASSINFO("D-Bus Interface", "org.kde.KSplash") |
|
|
|
public: |
|
explicit SplashApp(int &argc, char **argv); |
|
~SplashApp() override; |
|
|
|
KWayland::Client::PlasmaShell *waylandPlasmaShellInterface() const |
|
{ |
|
return m_waylandPlasmaShell; |
|
} |
|
|
|
public Q_SLOTS: |
|
Q_SCRIPTABLE void setStage(const QString &messgae); |
|
|
|
protected: |
|
void timerEvent(QTimerEvent *event) override; |
|
void setStage(int stage); |
|
|
|
private: |
|
void setupWaylandIntegration(); |
|
int m_stage; |
|
QList<SplashWindow *> m_windows; |
|
bool m_testing; |
|
bool m_window; |
|
QStringList m_stages; |
|
QBasicTimer m_timer; |
|
QString m_theme; |
|
|
|
KWayland::Client::PlasmaShell *m_waylandPlasmaShell = nullptr; |
|
|
|
private Q_SLOTS: |
|
void adoptScreen(QScreen *); |
|
}; |
|
|
|
#endif // SPLASH_APP_H_
|
|
|