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.
95 lines
2.6 KiB
95 lines
2.6 KiB
/* |
|
* Copyright (C) 2010 Ivan Cukic <ivan.cukic(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. |
|
*/ |
|
|
|
#include "SplashWindow.h" |
|
|
|
#include <QApplication> |
|
#include <QQmlContext> |
|
#include <QQuickItem> |
|
#include <QKeyEvent> |
|
#include <QMouseEvent> |
|
#include <QTimer> |
|
#include <QStandardPaths> |
|
#include <QSurfaceFormat> |
|
#include <shellpluginloader.h> |
|
|
|
SplashWindow::SplashWindow(bool testing, bool window) |
|
: QQuickView(), |
|
m_stage(0), |
|
m_testing(testing), |
|
m_window(window) |
|
{ |
|
setColor(Qt::transparent); |
|
setDefaultAlphaBuffer(true); |
|
setClearBeforeRendering(true); |
|
setResizeMode(QQuickView::SizeRootObjectToView); |
|
|
|
if (!m_window) { |
|
setFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); |
|
} |
|
|
|
if (!m_testing && !m_window) { |
|
setFlags(Qt::BypassWindowManagerHint); |
|
} |
|
|
|
if (m_testing && !m_window) { |
|
setWindowState(Qt::WindowFullScreen); |
|
} |
|
|
|
//be sure it will be eventually closed |
|
//FIXME: should never be stuck |
|
QTimer::singleShot(30000, this, SLOT(close())); |
|
} |
|
|
|
void SplashWindow::setStage(int stage) |
|
{ |
|
m_stage = stage; |
|
|
|
rootObject()->setProperty("stage", stage); |
|
} |
|
|
|
void SplashWindow::keyPressEvent(QKeyEvent *event) |
|
{ |
|
QQuickView::keyPressEvent(event); |
|
if (m_testing && !event->isAccepted() && event->key() == Qt::Key_Escape) { |
|
close(); |
|
} |
|
} |
|
|
|
void SplashWindow::mousePressEvent(QMouseEvent *event) |
|
{ |
|
QQuickView::mousePressEvent(event); |
|
if (m_testing && !event->isAccepted()) { |
|
close(); |
|
} |
|
} |
|
|
|
void SplashWindow::setGeometry(const QRect& rect) |
|
{ |
|
bool oldGeometryEmpty = geometry().isNull(); |
|
QQuickView::setGeometry(rect); |
|
|
|
if (oldGeometryEmpty) { |
|
ShellPluginLoader::init(); |
|
Plasma::Package pkg = Plasma::PluginLoader::self()->loadPackage("Plasma/LookAndFeel"); |
|
pkg.setPath("org.kde.lookandfeel"); |
|
|
|
setSource(QUrl::fromLocalFile(pkg.filePath("splashmainscript"))); |
|
} |
|
}
|
|
|