2020-10-05 20:41:00 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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 KEEPASSX_ICONS_H
|
|
|
|
#define KEEPASSX_ICONS_H
|
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
class Icons
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QIcon applicationIcon();
|
2020-12-19 00:20:24 +01:00
|
|
|
QIcon trayIcon(QString style = "unlocked");
|
2020-10-05 20:41:00 -04:00
|
|
|
QIcon trayIconLocked();
|
|
|
|
QIcon trayIconUnlocked();
|
|
|
|
QString trayIconAppearance() const;
|
|
|
|
QIcon icon(const QString& name, bool recolor = true, const QColor& overrideColor = QColor::Invalid);
|
|
|
|
QIcon onOffIcon(const QString& name, bool recolor = true);
|
|
|
|
|
|
|
|
static Icons* instance();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Icons();
|
|
|
|
|
|
|
|
static Icons* m_instance;
|
|
|
|
|
|
|
|
QHash<QString, QIcon> m_iconCache;
|
|
|
|
|
|
|
|
Q_DISABLE_COPY(Icons)
|
|
|
|
};
|
|
|
|
|
|
|
|
inline Icons* icons()
|
|
|
|
{
|
|
|
|
return Icons::instance();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // KEEPASSX_ICONS_H
|