keepassxc/src/core/FilePath.h

53 lines
1.4 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 14:44:28 -04:00
#ifndef KEEPASSX_FILEPATH_H
#define KEEPASSX_FILEPATH_H
#include <QHash>
#include <QIcon>
#include <QString>
2012-07-18 14:44:28 -04:00
class FilePath
{
public:
2012-07-18 14:44:28 -04:00
QString dataPath(const QString& name);
QString pluginPath(const QString& name);
QIcon applicationIcon();
QIcon icon(const QString& category, const QString& name, bool fromTheme = true);
QIcon onOffIcon(const QString& category, const QString& name);
2012-07-18 14:44:28 -04:00
static FilePath* instance();
private:
2012-07-18 14:44:28 -04:00
FilePath();
bool testSetDir(const QString& dir);
2012-07-18 14:44:28 -04:00
static FilePath* m_instance;
2012-07-18 15:04:47 -04:00
QString m_dataPath;
2012-07-18 15:06:46 -04:00
QHash<QString, QIcon> m_iconCache;
2012-07-18 14:44:28 -04:00
Q_DISABLE_COPY(FilePath)
};
2012-07-18 14:44:28 -04:00
inline FilePath* filePath() {
return FilePath::instance();
}
2012-07-18 14:44:28 -04:00
#endif // KEEPASSX_FILEPATH_H