3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 11:45:54 +00:00
2022-03-05 22:41:29 +05:00

64 lines
1.6 KiB
C++

/*
SPDX-FileCopyrightText: 2011 Ivan Cukic <ivan.cukic(at)kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "splashapp.h"
#include <QQuickWindow>
#include <QTextStream>
#include <kworkspace.h>
#include <iostream>
#include <unistd.h>
void logMessageHandler(QtMsgType type, const char *msg)
{
QString txt;
switch (type) {
case QtDebugMsg:
txt = QStringLiteral("Debug: %1").arg(msg);
break;
case QtInfoMsg:
txt = QStringLiteral("Info: %1").arg(msg);
break;
case QtWarningMsg:
txt = QStringLiteral("Warning: %1").arg(msg);
break;
case QtCriticalMsg:
txt = QStringLiteral("Critical: %1").arg(msg);
break;
case QtFatalMsg:
txt = QStringLiteral("Fatal: %1").arg(msg);
break;
}
QFile outFile(QStringLiteral("/tmp/ksplash"));
outFile.open(QIODevice::WriteOnly | QIODevice::Append);
QTextStream ts(&outFile);
ts << txt << '\n';
}
int main(int argc, char **argv)
{
bool test = false;
for (int i = 1; i < argc; i++) {
if (strcmp("--test", argv[i]) == 0 || strcmp("--help", argv[i]) == 0)
test = true;
}
// read ksplashrc as config file, not ksplashqmlrc
QCoreApplication::setApplicationName(QStringLiteral("ksplash"));
// enable to send log output to /tmp/ksplash
// which is useful for debugging
// qInstallMsgHandler(myMessageHandler);
KWorkSpace::detectPlatform(argc, argv);
QQuickWindow::setDefaultAlphaBuffer(true);
SplashApp app(argc, argv);
return app.exec();
}