2011-12-23 11:59:09 +01:00
|
|
|
/*
|
|
|
|
* 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
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2013-10-03 15:18:16 +02:00
|
|
|
#include <QHash>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QString>
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
class FilePath
|
2011-12-23 11:59:09 +01:00
|
|
|
{
|
|
|
|
public:
|
2012-07-18 20:44:28 +02:00
|
|
|
QString dataPath(const QString& name);
|
2012-07-18 20:54:26 +02:00
|
|
|
QString pluginPath(const QString& name);
|
2018-02-05 12:31:13 +01:00
|
|
|
QString wordlistPath(const QString& name);
|
2012-01-05 22:36:06 +01:00
|
|
|
QIcon applicationIcon();
|
2018-03-08 03:57:14 +01:00
|
|
|
QIcon trayIcon();
|
2016-10-08 18:55:05 +02:00
|
|
|
QIcon trayIconLocked();
|
|
|
|
QIcon trayIconUnlocked();
|
2012-05-27 12:43:58 +02:00
|
|
|
QIcon icon(const QString& category, const QString& name, bool fromTheme = true);
|
2014-01-12 16:57:29 +01:00
|
|
|
QIcon onOffIcon(const QString& category, const QString& name);
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
static FilePath* instance();
|
2012-05-31 14:51:44 +02:00
|
|
|
|
2011-12-23 11:59:09 +01:00
|
|
|
private:
|
2012-07-18 20:44:28 +02:00
|
|
|
FilePath();
|
2011-12-23 11:59:09 +01:00
|
|
|
bool testSetDir(const QString& dir);
|
2017-12-17 16:52:13 +02:00
|
|
|
bool useDarkIcon();
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
static FilePath* m_instance;
|
2012-05-31 14:51:44 +02:00
|
|
|
|
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-01-05 22:36:06 +01:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
Q_DISABLE_COPY(FilePath)
|
2011-12-23 11:59:09 +01:00
|
|
|
};
|
|
|
|
|
2018-03-31 16:01:30 -04:00
|
|
|
inline FilePath* filePath()
|
|
|
|
{
|
2012-07-18 20:44:28 +02:00
|
|
|
return FilePath::instance();
|
2012-05-31 14:51:44 +02:00
|
|
|
}
|
2012-01-05 22:36:06 +01:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
#endif // KEEPASSX_FILEPATH_H
|