| 1 | /* smplayer, GUI front-end for mplayer.
|
|---|
| 2 | Copyright (C) 2006-2014 Ricardo Villalba <[email protected]>
|
|---|
| 3 |
|
|---|
| 4 | This program is free software; you can redistribute it and/or modify
|
|---|
| 5 | it under the terms of the GNU General Public License as published by
|
|---|
| 6 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 7 | (at your option) any later version.
|
|---|
| 8 |
|
|---|
| 9 | This program is distributed in the hope that it will be useful,
|
|---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 12 | GNU General Public License for more details.
|
|---|
| 13 |
|
|---|
| 14 | You should have received a copy of the GNU General Public License
|
|---|
| 15 | along with this program; if not, write to the Free Software
|
|---|
| 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 17 | */
|
|---|
| 18 |
|
|---|
| 19 | #define COMPAT_WITH_OLD_ICONS 1
|
|---|
| 20 |
|
|---|
| 21 | #include "images.h"
|
|---|
| 22 | #include "global.h"
|
|---|
| 23 | #include "preferences.h"
|
|---|
| 24 | #include "paths.h"
|
|---|
| 25 |
|
|---|
| 26 | #include <QFile>
|
|---|
| 27 |
|
|---|
| 28 | using namespace Global;
|
|---|
| 29 |
|
|---|
| 30 | QString Images::filename(const QString & name, bool png) {
|
|---|
| 31 | QString filename = name;
|
|---|
| 32 |
|
|---|
| 33 | if (filename.endsWith("_small")) {
|
|---|
| 34 | filename = filename.replace("_small", "");
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | if (png) filename += ".png";
|
|---|
| 38 |
|
|---|
| 39 | return filename;
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | QString Images::file(const QString & icon_name) {
|
|---|
| 43 | bool ok = false;
|
|---|
| 44 | QString filename;
|
|---|
| 45 |
|
|---|
| 46 | if (!pref->iconset.isEmpty()) {
|
|---|
| 47 | filename = Paths::configPath() + "/themes/" + pref->iconset + "/" + icon_name;
|
|---|
| 48 | if (!QFile::exists(filename)) {
|
|---|
| 49 | filename = Paths::themesPath() + "/" + pref->iconset + "/" + icon_name;
|
|---|
| 50 | }
|
|---|
| 51 |
|
|---|
| 52 | ok = (QFile::exists(filename));
|
|---|
| 53 | }
|
|---|
| 54 |
|
|---|
| 55 | if (!ok) {
|
|---|
| 56 | filename = ":/icons-png/" + icon_name;
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | qDebug("Images::file: icon_name: '%s', filename: '%s'", icon_name.toUtf8().constData(), filename.toUtf8().constData());
|
|---|
| 60 |
|
|---|
| 61 | return filename;
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | QPixmap Images::loadIcon(const QString & icon_name) {
|
|---|
| 65 | QPixmap p;
|
|---|
| 66 |
|
|---|
| 67 | if (!pref->iconset.isEmpty()) {
|
|---|
| 68 | QString filename = Paths::configPath() + "/themes/" + pref->iconset + "/" + icon_name;
|
|---|
| 69 | if (!QFile::exists(filename)) {
|
|---|
|
|---|