keepassxc/src/core/FilePath.h

59 lines
1.6 KiB
C++
Raw Normal View History

/*
* 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/>.
*/
2012-07-18 20:44:28 +02:00
#ifndef KEEPASSX_FILEPATH_H
#define KEEPASSX_FILEPATH_H
#include <QHash>
#include <QIcon>
#include <QString>
2012-07-18 20:44:28 +02:00
class FilePath
{
public:
2012-07-18 20:44:28 +02:00
QString dataPath(const QString& name);
QString pluginPath(const QString& name);
QString wordlistPath(const QString& name);
QIcon applicationIcon();
QIcon trayIcon();
2016-10-08 18:55:05 +02:00
QIcon trayIconLocked();
QIcon trayIconUnlocked();
QIcon icon(const QString& category, const QString& name, bool fromTheme = true);
QIcon onOffIcon(const QString& category, const QString& name);
2012-07-18 20:44:28 +02:00
static FilePath* instance();
private:
2012-07-18 20:44:28 +02:00
FilePath();
bool testSetDir(const QString& dir);
2017-12-17 16:52:13 +02:00
bool useDarkIcon();
2012-07-18 20:44:28 +02:00
static FilePath* 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;
2012-07-18 20:44:28 +02:00
Q_DISABLE_COPY(FilePath)
};
2018-03-31 16:01:30 -04:00
inline FilePath* filePath()
{
2012-07-18 20:44:28 +02:00
return FilePath::instance();
}
2012-07-18 20:44:28 +02:00
#endif // KEEPASSX_FILEPATH_H