keepassxc/src/core/Resources.h

61 lines
1.7 KiB
C++
Raw Normal View History

/*
* 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_RESOURCES_H
#define KEEPASSX_RESOURCES_H
2019-10-21 10:49:09 +02:00
#include <QColor>
#include <QHash>
#include <QIcon>
#include <QString>
class Resources
{
public:
QString dataPath(const QString& name) const;
QString pluginPath(const QString& name) const;
QString wordlistPath(const QString& name) const;
QIcon applicationIcon();
QIcon trayIcon();
2016-10-08 18:55:05 +02:00
QIcon trayIconLocked();
QIcon trayIconUnlocked();
QString trayIconAppearance() const;
2019-10-21 10:49:09 +02:00
QIcon icon(const QString& name, bool recolor = true, const QColor& overrideColor = QColor::Invalid);
QIcon onOffIcon(const QString& name, bool recolor = true);
static Resources* instance();
private:
Resources();
bool testResourceDir(const QString& dir);
static Resources* m_instance;
2012-07-18 21:04:47 +02:00
QString m_dataPath;
2012-07-18 21:06:46 +02:00
QHash<QString, QIcon> m_iconCache;
Q_DISABLE_COPY(Resources)
};
inline Resources* resources()
2018-03-31 16:01:30 -04:00
{
return Resources::instance();
}
#endif // KEEPASSX_RESOURCES_H