mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
/*
|
|
* Copyright (C) 2021 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_OSUTILSBASE_H
|
|
#define KEEPASSXC_OSUTILSBASE_H
|
|
|
|
#include <QObject>
|
|
|
|
class QWindow;
|
|
|
|
/**
|
|
* Abstract base class for generic OS-specific functionality
|
|
* which can be reasonably expected to be available on all platforms.
|
|
*/
|
|
class OSUtilsBase : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* @return OS dark mode enabled.
|
|
*/
|
|
virtual bool isDarkMode() const = 0;
|
|
|
|
/**
|
|
* @return OS task / menu bar is dark.
|
|
*/
|
|
virtual bool isStatusBarDark() const = 0;
|
|
|
|
/**
|
|
* @return KeePassXC set to launch at system startup (autostart).
|
|
*/
|
|
virtual bool isLaunchAtStartupEnabled() const = 0;
|
|
|
|
/**
|
|
* @param enable Add or remove KeePassXC from system autostart.
|
|
*/
|
|
virtual void setLaunchAtStartup(bool enable) = 0;
|
|
|
|
/**
|
|
* @return OS caps lock enabled.
|
|
*/
|
|
virtual bool isCapslockEnabled() = 0;
|
|
|
|
virtual void registerNativeEventFilter() = 0;
|
|
|
|
virtual bool registerGlobalShortcut(const QString& name,
|
|
Qt::Key key,
|
|
Qt::KeyboardModifiers modifiers,
|
|
QString* error = nullptr) = 0;
|
|
virtual bool unregisterGlobalShortcut(const QString& name) = 0;
|
|
|
|
virtual bool canPreventScreenCapture() const = 0;
|
|
virtual bool setPreventScreenCapture(QWindow* window, bool allow) const;
|
|
|
|
signals:
|
|
void globalShortcutTriggered(const QString& name, const QString& search = {});
|
|
|
|
/**
|
|
* Indicates platform UI theme change (light mode to dark mode).
|
|
*/
|
|
void interfaceThemeChanged();
|
|
|
|
/*
|
|
* Indicates a change in the tray / statusbar theme.
|
|
*/
|
|
void statusbarThemeChanged();
|
|
|
|
protected:
|
|
explicit OSUtilsBase(QObject* parent = nullptr);
|
|
virtual ~OSUtilsBase();
|
|
};
|
|
|
|
#endif // KEEPASSXC_OSUTILSBASE_H
|