2018-06-19 23:44:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
|
|
*
|
|
|
|
* Author: sbw <sbw@sbw.so>
|
|
|
|
*
|
|
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
|
|
*
|
|
|
|
* 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 3 of the License, or
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IMAGEUTIL_H
|
|
|
|
#define IMAGEUTIL_H
|
|
|
|
|
2020-06-13 12:44:54 +08:00
|
|
|
#include <QWidget>
|
2018-06-19 23:44:49 +08:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QSvgRenderer>
|
2021-04-26 11:28:47 +08:00
|
|
|
#include <QApplication>
|
2018-06-19 23:44:49 +08:00
|
|
|
|
2021-11-05 21:29:32 +08:00
|
|
|
class QCursor;
|
|
|
|
|
2018-06-19 23:44:49 +08:00
|
|
|
class ImageUtil
|
|
|
|
{
|
|
|
|
public:
|
2019-11-05 21:04:07 +08:00
|
|
|
static const QPixmap loadSvg(const QString &iconName, const QString &localPath, const int size, const qreal ratio);
|
2021-04-26 11:28:47 +08:00
|
|
|
static const QPixmap loadSvg(const QString &iconName, const QSize size, const qreal ratio = qApp->devicePixelRatio());
|
2021-11-05 21:29:32 +08:00
|
|
|
static QCursor* loadQCursorFromX11Cursor(const char* theme, const char* cursorName, int cursorSize);
|
2018-06-19 23:44:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // IMAGEUTIL_H
|