2010-05-19 17:45:29 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2016-01-14 10:40:26 +01:00
|
|
|
Copyright 2015 - 2016, Arun Narayanankutty <n.arun.lifescience@gmail.com>
|
2010-05-19 17:45:29 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ICONLOADER_H
|
|
|
|
#define ICONLOADER_H
|
|
|
|
|
|
|
|
#include <QIcon>
|
|
|
|
|
|
|
|
class IconLoader {
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2015-10-14 03:01:08 +02:00
|
|
|
enum IconType {
|
|
|
|
Base = 0,
|
|
|
|
Provider = 1,
|
2016-01-14 10:40:26 +01:00
|
|
|
Lastfm = 2,
|
|
|
|
Other = 3
|
2015-10-14 03:01:08 +02:00
|
|
|
};
|
|
|
|
|
2010-05-19 17:45:29 +02:00
|
|
|
static void Init();
|
2015-10-14 03:01:08 +02:00
|
|
|
static QIcon Load(const QString& name, const IconType& icontype);
|
2010-05-19 17:45:29 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-05-19 17:45:29 +02:00
|
|
|
IconLoader() {}
|
|
|
|
|
|
|
|
static QList<int> sizes_;
|
2015-10-14 03:01:08 +02:00
|
|
|
static QString custom_icon_path_;
|
|
|
|
static QList<QString> icon_sub_path_;
|
2017-05-30 22:25:24 +02:00
|
|
|
static bool use_sys_icons_;
|
2010-05-19 17:45:29 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // ICONLOADER_H
|