mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-26 22:36:59 -05:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
|
/*
|
||
|
* 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();
|
||
|
QIcon trayIcon();
|
||
|
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
|