passwordmanager/quickgui/initiatequick.cpp

121 lines
4.2 KiB
C++
Raw Normal View History

2015-09-06 20:33:09 +02:00
#include "./initiatequick.h"
#include "./controller.h"
2018-09-04 00:52:43 +02:00
#ifdef Q_OS_ANDROID
#include "./android.h"
#endif
2015-04-22 19:30:09 +02:00
2016-04-25 22:06:24 +02:00
#include "resources/config.h"
2019-03-13 19:09:31 +01:00
#include "resources/qtconfig.h"
2015-12-05 22:52:00 +01:00
// enable inline helper functions for Qt Quick provided by qtutilities
#define QT_UTILITIES_GUI_QTQUICK
// ensure QGuiApplication is defined before resources.h for desktop file name
#ifdef PASSWORD_MANAGER_GUI_QTWIDGETS
#include <QApplication>
using App = QApplication;
#else
#include <QGuiApplication>
using App = QGuiApplication;
#endif
#include <qtutilities/misc/desktoputils.h>
2015-09-01 20:18:13 +02:00
#include <qtutilities/resources/qtconfigarguments.h>
2015-04-22 19:30:09 +02:00
#include <qtutilities/resources/resources.h>
#include <qtutilities/settingsdialog/qtsettings.h>
2015-04-22 19:30:09 +02:00
#include <passwordfile/util/openssl.h>
2024-03-31 13:49:44 +02:00
#include <QDebug>
2018-09-04 00:52:43 +02:00
#include <QIcon>
2017-05-01 03:26:04 +02:00
#include <QQmlApplicationEngine>
2018-09-02 19:07:02 +02:00
#include <QQmlContext>
2018-06-16 15:07:46 +02:00
#include <QSettings>
2015-04-22 19:30:09 +02:00
#include <cstdlib>
2019-06-10 22:44:59 +02:00
using namespace CppUtilities;
using namespace Util;
2015-09-01 20:18:13 +02:00
2015-04-22 19:30:09 +02:00
namespace QtGui {
int runQuickGui(int argc, char *argv[], const QtConfigArguments &qtConfigArgs, const QString &file)
2015-04-22 19:30:09 +02:00
{
// setup Android-specifics (logging, theming)
2018-09-04 00:52:43 +02:00
#ifdef Q_OS_ANDROID
setupAndroidSpecifics();
2018-09-04 00:52:43 +02:00
#endif
// init OpenSSL
OpenSsl::init();
2015-04-22 19:30:09 +02:00
// init application
2015-09-01 20:18:13 +02:00
SET_QT_APPLICATION_INFO;
auto application = App(argc, argv);
QObject::connect(&application, &QCoreApplication::aboutToQuit, &OpenSsl::clean);
// restore Qt settings
auto qtSettings = QtUtilities::QtSettings();
auto settings = QtUtilities::getSettings(QStringLiteral(PROJECT_NAME));
if (auto settingsError = QtUtilities::errorMessageForSettings(*settings); !settingsError.isEmpty()) {
qDebug() << settingsError;
}
qtSettings.restore(*settings);
qtSettings.apply();
// create controller and handle dark mode
// note: Not handling changes of the dark mode setting dynamically yet because it does not work with Kirigami.
// It looks like Kirigami does not follow the QCC2 theme (the Material.theme/Material.theme settings) but
// instead uses colors based on the initial palette. Not sure how to toggle Kirigami's palette in accordance
// with the QCC2 theme. Hence this code is disabled via APPLY_COLOR_SCHEME_DYNAMICALLY for now.
auto controller = Controller(*settings, file);
#ifdef APPLY_COLOR_SCHEME_DYNAMICALLY
QtUtilities::onDarkModeChanged(
[&qtSettings, &controller](bool isDarkModeEnabled) {
qtSettings.reapplyDefaultIconTheme(isDarkModeEnabled);
controller.setDarkModeEnabled(isDarkModeEnabled);
},
&controller);
#else
const auto isDarkModeEnabled = QtUtilities::isDarkModeEnabled().value_or(false);
qtSettings.reapplyDefaultIconTheme(isDarkModeEnabled);
controller.setDarkModeEnabled(isDarkModeEnabled);
#endif
2015-09-01 20:18:13 +02:00
// apply settings specified via command line args
qtConfigArgs.applySettings(qtSettings.hasCustomFont());
qtConfigArgs.applySettingsForQuickGui();
LOAD_QT_TRANSLATIONS;
2018-08-31 22:29:01 +02:00
// init QML engine
auto engine = QQmlApplicationEngine();
2018-09-04 00:52:43 +02:00
#ifdef Q_OS_ANDROID
registerControllerForAndroid(&controller);
#endif
auto *const context = engine.rootContext();
context->setContextProperty(QStringLiteral("nativeInterface"), &controller);
context->setContextProperty(QStringLiteral("app"), &application);
2018-12-03 18:11:42 +01:00
context->setContextProperty(QStringLiteral("description"), QStringLiteral(APP_DESCRIPTION));
context->setContextProperty(QStringLiteral("dependencyVersions"), QStringList(DEPENCENCY_VERSIONS));
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
const auto importPaths = qEnvironmentVariable(PROJECT_VARNAME_UPPER "_QML_IMPORT_PATHS").split(QChar(':'));
for (const auto &path : importPaths) {
engine.addImportPath(path);
}
#endif
// load main QML file; run event loop or exit if it cannot be loaded
const auto mainUrl = QUrl(QStringLiteral("qrc:/qml/main.qml"));
QObject::connect(
&engine, &QQmlApplicationEngine::objectCreated, &application,
[&mainUrl](QObject *obj, const QUrl &objUrl) {
if (!obj && objUrl == mainUrl) {
QCoreApplication::exit(EXIT_FAILURE);
}
},
Qt::QueuedConnection);
engine.load(mainUrl);
return application.exec();
2015-04-22 19:30:09 +02:00
}
2017-09-29 17:17:12 +02:00
} // namespace QtGui