/* * Copyright (C) 2020 KeePassXC Team * Copyright (C) 2011 Felix Geyer * * 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 . */ #ifndef KEEPASSX_ICONS_H #define KEEPASSX_ICONS_H #include class Icons { public: QIcon applicationIcon(); QIcon trayIcon(QString style = "unlocked"); 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 on, bool recolor = true); static Icons* instance(); private: Icons(); static Icons* m_instance; QHash m_iconCache; Q_DISABLE_COPY(Icons) }; inline Icons* icons() { return Icons::instance(); } #endif // KEEPASSX_ICONS_H