mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Use XDG Desktop Portal to autostart the flatpak
This commit is contained in:
parent
8f03f2f59e
commit
b5827aa25f
@ -97,6 +97,9 @@ static const QHash<Config::ConfigKey, ConfigDirective> configStrings = {
|
||||
{Config::GUI_HidePreviewPanel, {QS("GUI/HidePreviewPanel"), Roaming, false}},
|
||||
{Config::GUI_AlwaysOnTop, {QS("GUI/GUI_AlwaysOnTop"), Local, false}},
|
||||
{Config::GUI_ToolButtonStyle, {QS("GUI/ToolButtonStyle"), Roaming, Qt::ToolButtonIconOnly}},
|
||||
#ifdef KEEPASSXC_DIST_FLATPAK
|
||||
{Config::GUI_LaunchAtStartup, {QS("GUI/LaunchAtStartup"), Roaming, false}},
|
||||
#endif
|
||||
{Config::GUI_ShowTrayIcon, {QS("GUI/ShowTrayIcon"), Roaming, false}},
|
||||
{Config::GUI_TrayIconAppearance, {QS("GUI/TrayIconAppearance"), Roaming, {}}},
|
||||
{Config::GUI_MinimizeToTray, {QS("GUI/MinimizeToTray"), Roaming, false}},
|
||||
|
@ -78,6 +78,9 @@ public:
|
||||
GUI_HidePreviewPanel,
|
||||
GUI_AlwaysOnTop,
|
||||
GUI_ToolButtonStyle,
|
||||
#ifdef KEEPASSXC_DIST_FLATPAK
|
||||
GUI_LaunchAtStartup,
|
||||
#endif
|
||||
GUI_ShowTrayIcon,
|
||||
GUI_TrayIconAppearance,
|
||||
GUI_MinimizeToTray,
|
||||
|
@ -21,11 +21,16 @@
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDBusInterface>
|
||||
#include <QDebug>
|
||||
#include <QDir>
|
||||
#include <QPointer>
|
||||
#include <QStandardPaths>
|
||||
#include <QStyle>
|
||||
#include <QTextStream>
|
||||
#ifdef KEEPASSXC_DIST_FLATPAK
|
||||
#include "core/Config.h"
|
||||
#include <QRandomGenerator>
|
||||
#endif
|
||||
#ifdef WITH_XC_X11
|
||||
#include <QX11Info>
|
||||
|
||||
@ -124,12 +129,17 @@ QString NixUtils::getAutostartDesktopFilename(bool createDirs) const
|
||||
|
||||
bool NixUtils::isLaunchAtStartupEnabled() const
|
||||
{
|
||||
#if !defined(KEEPASSXC_DIST_FLATPAK)
|
||||
return QFile::exists(getAutostartDesktopFilename());
|
||||
;
|
||||
#else
|
||||
return config()->get(Config::GUI_LaunchAtStartup).toBool();
|
||||
#endif
|
||||
}
|
||||
|
||||
void NixUtils::setLaunchAtStartup(bool enable)
|
||||
{
|
||||
#if !defined(KEEPASSXC_DIST_FLATPAK)
|
||||
if (enable) {
|
||||
QFile desktopFile(getAutostartDesktopFilename(true));
|
||||
if (!desktopFile.open(QIODevice::WriteOnly)) {
|
||||
@ -164,6 +174,49 @@ void NixUtils::setLaunchAtStartup(bool enable)
|
||||
} else if (isLaunchAtStartupEnabled()) {
|
||||
QFile::remove(getAutostartDesktopFilename());
|
||||
}
|
||||
#else
|
||||
QDBusConnection sessionBus = QDBusConnection::sessionBus();
|
||||
QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.portal.Desktop",
|
||||
"/org/freedesktop/portal/desktop",
|
||||
"org.freedesktop.portal.Background",
|
||||
"RequestBackground");
|
||||
|
||||
QMap<QString, QVariant> options;
|
||||
options["autostart"] = QVariant(enable);
|
||||
options["reason"] = QVariant("Launch KeePassXC at startup");
|
||||
int token = QRandomGenerator::global()->bounded(1000, 9999);
|
||||
options["handle_token"] = QVariant(QString("org/keepassxc/KeePassXC/%1").arg(token));
|
||||
|
||||
msg << "" << options;
|
||||
|
||||
QDBusMessage response = sessionBus.call(msg);
|
||||
|
||||
QDBusObjectPath handle = response.arguments().at(0).value<QDBusObjectPath>();
|
||||
|
||||
bool res = sessionBus.connect("org.freedesktop.portal.Desktop",
|
||||
handle.path(),
|
||||
"org.freedesktop.portal.Request",
|
||||
"Response",
|
||||
this,
|
||||
SLOT(launchAtStartupRequested(uint, QVariantMap)));
|
||||
|
||||
if (!res) {
|
||||
qDebug() << "Could not connect to org.freedesktop.portal.Request::Response signal";
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void NixUtils::launchAtStartupRequested(uint response, const QVariantMap& results)
|
||||
{
|
||||
if (response > 0) {
|
||||
qDebug() << "The interaction was cancelled";
|
||||
return;
|
||||
}
|
||||
bool isLauchedAtStartup = results["autostart"].value<bool>();
|
||||
qDebug() << "The autostart value is set to:" << isLauchedAtStartup;
|
||||
#if defined(KEEPASSXC_DIST_FLATPAK)
|
||||
config()->set(Config::GUI_LaunchAtStartup, isLauchedAtStartup);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool NixUtils::isCapslockEnabled()
|
||||
|
@ -52,6 +52,7 @@ public:
|
||||
private slots:
|
||||
void handleColorSchemeRead(QDBusVariant value);
|
||||
void handleColorSchemeChanged(QString ns, QString key, QDBusVariant value);
|
||||
void launchAtStartupRequested(uint response, const QVariantMap& results);
|
||||
|
||||
private:
|
||||
explicit NixUtils(QObject* parent = nullptr);
|
||||
|
Loading…
Reference in New Issue
Block a user