mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
#include <QQmlContext>
|
|
|
|
#include <QFile>
|
|
#include <QLocale>
|
|
#include <QTranslator>
|
|
|
|
#include "actions.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
// Translations
|
|
QLocale locale;
|
|
QString qmFilePath = QString("%1/%2.qm").arg("/usr/share/cutefish-shutdown/translations/").arg(locale.name());
|
|
if (QFile::exists(qmFilePath)) {
|
|
QTranslator *translator = new QTranslator(QGuiApplication::instance());
|
|
if (translator->load(qmFilePath)) {
|
|
QGuiApplication::installTranslator(translator);
|
|
} else {
|
|
translator->deleteLater();
|
|
}
|
|
}
|
|
|
|
QQmlApplicationEngine engine;
|
|
const QUrl url(QStringLiteral("qrc:/main.qml"));
|
|
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
|
|
&app, [url](QObject *obj, const QUrl &objUrl) {
|
|
if (!obj && url == objUrl)
|
|
QCoreApplication::exit(-1);
|
|
}, Qt::QueuedConnection);
|
|
engine.rootContext()->setContextProperty("actions", new Actions);
|
|
engine.load(url);
|
|
|
|
return app.exec();
|
|
}
|