mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Closes #5991 Closes #3337 - Support fingerprint readers on Linux Polkit allows for authentication of many means, including fingerprint scanning. Furthermore, a common interface for Quick Unlocking has been implemented, and has been replaced throughout to make implementing other quick unlock strategies easier. Refactor QuickUnlock to use UUID stored in headers. This is a new feature using the KDBX 4 standard to store a randomly generated UUID in the public headers of the database. This enables identification of KDBX file without relying on path or filename and will eventually support persistent Quick Unlock.
97 lines
2.9 KiB
C++
97 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSXC_NIXUTILS_H
|
|
#define KEEPASSXC_NIXUTILS_H
|
|
|
|
#include "gui/osutils/OSUtilsBase.h"
|
|
#include <QAbstractNativeEventFilter>
|
|
#include <QSharedPointer>
|
|
#include <QtDBus/QDBusVariant>
|
|
|
|
class NixUtils : public OSUtilsBase, QAbstractNativeEventFilter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static NixUtils* instance();
|
|
|
|
bool isDarkMode() const override;
|
|
bool isStatusBarDark() const override;
|
|
bool isLaunchAtStartupEnabled() const override;
|
|
void setLaunchAtStartup(bool enable) override;
|
|
bool isCapslockEnabled() override;
|
|
|
|
void registerNativeEventFilter() override;
|
|
|
|
bool registerGlobalShortcut(const QString& name,
|
|
Qt::Key key,
|
|
Qt::KeyboardModifiers modifiers,
|
|
QString* error = nullptr) override;
|
|
bool unregisterGlobalShortcut(const QString& name) override;
|
|
|
|
bool canPreventScreenCapture() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
quint64 getProcessStartTime() const;
|
|
|
|
private slots:
|
|
void handleColorSchemeRead(QDBusVariant value);
|
|
void handleColorSchemeChanged(QString ns, QString key, QDBusVariant value);
|
|
|
|
private:
|
|
explicit NixUtils(QObject* parent = nullptr);
|
|
~NixUtils() override;
|
|
|
|
bool nativeEventFilter(const QByteArray& eventType, void* message, long*) override;
|
|
QString getAutostartDesktopFilename(bool createDirs = false) const;
|
|
|
|
bool triggerGlobalShortcut(uint keycode, uint modifiers);
|
|
|
|
static QPointer<NixUtils> m_instance;
|
|
|
|
struct globalShortcut
|
|
{
|
|
uint nativeKeyCode;
|
|
uint nativeModifiers;
|
|
};
|
|
QHash<QString, QSharedPointer<globalShortcut>> m_globalShortcuts;
|
|
|
|
// defined as per "org.freedesktop.appearance color-scheme" spec in
|
|
// https://github.com/flatpak/xdg-desktop-portal/blob/d7a304a00697d7d608821253cd013f3b97ac0fb6/data/org.freedesktop.impl.portal.Settings.xml#L33-L45
|
|
enum ColorschemePref
|
|
{
|
|
PreferNone,
|
|
PreferDark,
|
|
PreferLight
|
|
};
|
|
ColorschemePref m_systemColorschemePref = ColorschemePref::PreferNone;
|
|
bool m_systemColorschemePrefExists;
|
|
|
|
void setColorScheme(QDBusVariant value);
|
|
|
|
Q_DISABLE_COPY(NixUtils)
|
|
};
|
|
|
|
inline NixUtils* nixUtils()
|
|
{
|
|
return NixUtils::instance();
|
|
}
|
|
|
|
#endif // KEEPASSXC_NIXUTILS_H
|