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.
114 lines
3.4 KiB
114 lines
3.4 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 <QGuiApplication> |
|
#include <QQmlContext> |
|
#include <QQuickItem> |
|
#include <QKeyEvent> |
|
#include <QMouseEvent> |
|
#include <QTimer> |
|
#include <QStandardPaths> |
|
#include <QSurfaceFormat> |
|
#include <KSharedConfig> |
|
#include <KConfigGroup> |
|
|
|
#include <KPackage/Package> |
|
#include <KPackage/PackageLoader> |
|
|
|
SplashWindow::SplashWindow(bool testing, bool window) |
|
: KQuickAddons::QuickViewSharedEngine(), |
|
m_stage(0), |
|
m_testing(testing), |
|
m_window(window) |
|
{ |
|
setColor(Qt::transparent); |
|
setDefaultAlphaBuffer(true); |
|
setClearBeforeRendering(true); |
|
setResizeMode(KQuickAddons::QuickViewSharedEngine::SizeRootObjectToView); |
|
|
|
if (!m_window) { |
|
setFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); |
|
} |
|
|
|
if (!m_testing && !m_window) { |
|
if (QGuiApplication::platformName().compare(QLatin1String("xcb"), Qt::CaseInsensitive) == 0) { |
|
// X11 specific hint only on X11 |
|
setFlags(Qt::BypassWindowManagerHint); |
|
} else { |
|
// on other platforms go fullscreen |
|
setWindowState(Qt::WindowFullScreen); |
|
} |
|
} |
|
|
|
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) |
|
{ |
|
KQuickAddons::QuickViewSharedEngine::keyPressEvent(event); |
|
if (m_testing && !event->isAccepted() && event->key() == Qt::Key_Escape) { |
|
close(); |
|
} |
|
} |
|
|
|
void SplashWindow::mousePressEvent(QMouseEvent *event) |
|
{ |
|
KQuickAddons::QuickViewSharedEngine::mousePressEvent(event); |
|
if (m_testing && !event->isAccepted()) { |
|
close(); |
|
} |
|
} |
|
|
|
void SplashWindow::setGeometry(const QRect& rect) |
|
{ |
|
bool oldGeometryEmpty = geometry().isNull(); |
|
KQuickAddons::QuickViewSharedEngine::setGeometry(rect); |
|
|
|
if (oldGeometryEmpty) { |
|
|
|
KPackage::Package package = KPackage::PackageLoader::self()->loadPackage("Plasma/LookAndFeel"); |
|
KConfigGroup cg(KSharedConfig::openConfig("kdeglobals"), "KDE"); |
|
const QString packageName = cg.readEntry("LookAndFeelPackage", QString()); |
|
if (!packageName.isEmpty()) { |
|
package.setPath(packageName); |
|
}; |
|
|
|
const QString theme = QGuiApplication::arguments().at(1); |
|
if (!theme.startsWith("--")) { |
|
package.setPath(theme); |
|
} |
|
|
|
setSource(QUrl::fromLocalFile(package.filePath("splashmainscript"))); |
|
} |
|
}
|
|
|