summaryrefslogtreecommitdiff
path: root/plugin/src/Caelestia/cutils.cpp
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-01 15:31:27 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-01 15:31:27 +1000
commitd76c799dd22a44621b557564ed9606e04ba40e34 (patch)
treeea9dc55c4ef52a94e34f818003727b4170b9103b /plugin/src/Caelestia/cutils.cpp
parentcmake: more compiler warnings (diff)
downloadcaelestia-shell-d76c799dd22a44621b557564ed9606e04ba40e34.tar.gz
caelestia-shell-d76c799dd22a44621b557564ed9606e04ba40e34.tar.bz2
caelestia-shell-d76c799dd22a44621b557564ed9606e04ba40e34.zip
plugin: fix warnings + const stuff
Diffstat (limited to 'plugin/src/Caelestia/cutils.cpp')
-rw-r--r--plugin/src/Caelestia/cutils.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/plugin/src/Caelestia/cutils.cpp b/plugin/src/Caelestia/cutils.cpp
index c849a4b..6ba4807 100644
--- a/plugin/src/Caelestia/cutils.cpp
+++ b/plugin/src/Caelestia/cutils.cpp
@@ -45,12 +45,12 @@ void CUtils::saveItem(QQuickItem* target, const QUrl& path, const QRect& rect, Q
}
auto scaledRect = rect;
- if (rect.isValid()) {
- qreal scale = target->window()->devicePixelRatio();
- scaledRect = QRect(rect.left() * scale, rect.top() * scale, rect.width() * scale, rect.height() * scale);
+ const qreal scale = target->window()->devicePixelRatio();
+ if (rect.isValid() && scale != 1.0) {
+ scaledRect = QRectF(rect.left() * scale, rect.top() * scale, rect.width() * scale, rect.height() * scale).toRect();
}
- QSharedPointer<QQuickItemGrabResult> grabResult = target->grabToImage();
+ const QSharedPointer<const QQuickItemGrabResult> grabResult = target->grabToImage();
QObject::connect(grabResult.data(), &QQuickItemGrabResult::ready, this,
[grabResult, scaledRect, path, onSaved, onFailed, this]() {
@@ -63,7 +63,7 @@ void CUtils::saveItem(QQuickItem* target, const QUrl& path, const QRect& rect, Q
const QString file = path.toLocalFile();
const QString parent = QFileInfo(file).absolutePath();
- bool success = QDir().mkpath(parent) && image.save(file);
+ const bool success = QDir().mkpath(parent) && image.save(file);
QMetaObject::invokeMethod(this, [file, success, path, onSaved, onFailed, this]() {
if (success) {
@@ -118,14 +118,14 @@ void CUtils::getDominantColour(QQuickItem* item, int rescaleSize, QJSValue callb
return;
}
- QSharedPointer<QQuickItemGrabResult> grabResult = item->grabToImage();
+ const QSharedPointer<const QQuickItemGrabResult> grabResult = item->grabToImage();
QObject::connect(grabResult.data(), &QQuickItemGrabResult::ready, this,
[grabResult, rescaleSize, callback, this]() {
- QImage image = grabResult->image();
+ const QImage image = grabResult->image();
QThreadPool::globalInstance()->start([grabResult, image, rescaleSize, callback, this]() {
- QColor color = this->findDominantColour(image, rescaleSize);
+ const QColor color = this->findDominantColour(image, rescaleSize);
if (callback.isCallable()) {
QMetaObject::invokeMethod(this, [color, callback, this]() {
@@ -148,14 +148,14 @@ void CUtils::getDominantColour(const QString& path, int rescaleSize, QJSValue ca
}
QThreadPool::globalInstance()->start([path, rescaleSize, callback, this]() {
- QImage image(path);
+ const QImage image(path);
if (image.isNull()) {
qWarning() << "CUtils::getDominantColour: failed to load image" << path;
return;
}
- QColor color = this->findDominantColour(image, rescaleSize);
+ const QColor color = this->findDominantColour(image, rescaleSize);
if (callback.isCallable()) {
QMetaObject::invokeMethod(this, [color, callback, this]() {
@@ -183,9 +183,9 @@ QColor CUtils::findDominantColour(const QImage& image, int rescaleSize) const {
std::unordered_map<uint32_t, int> colours;
const uchar* data = img.bits();
- int width = img.width();
- int height = img.height();
- int bytesPerLine = img.bytesPerLine();
+ const int width = img.width();
+ const int height = img.height();
+ const qsizetype bytesPerLine = img.bytesPerLine();
for (int y = 0; y < height; ++y) {
const uchar* line = data + y * bytesPerLine;
@@ -196,9 +196,9 @@ QColor CUtils::findDominantColour(const QImage& image, int rescaleSize) const {
continue;
}
- uchar r = pixel[0] & 0xF8;
- uchar g = pixel[1] & 0xF8;
- uchar b = pixel[2] & 0xF8;
+ uint32_t r = static_cast<uint32_t>(pixel[0] & 0xF8);
+ uint32_t g = static_cast<uint32_t>(pixel[1] & 0xF8);
+ uint32_t b = static_cast<uint32_t>(pixel[2] & 0xF8);
uint32_t colour = (r << 16) | (g << 8) | b;
++colours[colour];
@@ -214,7 +214,7 @@ QColor CUtils::findDominantColour(const QImage& image, int rescaleSize) const {
}
}
- return QColor((0xFF << 24) | dominantColour);
+ return QColor((0xFFu << 24) | dominantColour);
}
void CUtils::getAverageLuminance(QQuickItem* item, QJSValue callback) {
@@ -232,17 +232,17 @@ void CUtils::getAverageLuminance(QQuickItem* item, int rescaleSize, QJSValue cal
return;
}
- QSharedPointer<QQuickItemGrabResult> grabResult = item->grabToImage();
+ const QSharedPointer<const QQuickItemGrabResult> grabResult = item->grabToImage();
QObject::connect(grabResult.data(), &QQuickItemGrabResult::ready, this,
[grabResult, rescaleSize, callback, this]() {
- QImage image = grabResult->image();
+ const QImage image = grabResult->image();
QThreadPool::globalInstance()->start([grabResult, image, rescaleSize, callback, this]() {
- qreal luminance = this->findAverageLuminance(image, rescaleSize);
+ const qreal luminance = this->findAverageLuminance(image, rescaleSize);
if (callback.isCallable()) {
- QMetaObject::invokeMethod(this, [luminance, callback, this]() {
+ QMetaObject::invokeMethod(this, [luminance, callback]() {
callback.call({ QJSValue(luminance) });
}, Qt::QueuedConnection);
}
@@ -262,17 +262,17 @@ void CUtils::getAverageLuminance(const QString& path, int rescaleSize, QJSValue
}
QThreadPool::globalInstance()->start([path, rescaleSize, callback, this]() {
- QImage image(path);
+ const QImage image(path);
if (image.isNull()) {
qWarning() << "CUtils::getAverageLuminance: failed to load image" << path;
return;
}
- qreal luminance = this->findAverageLuminance(image, rescaleSize);
+ const qreal luminance = this->findAverageLuminance(image, rescaleSize);
if (callback.isCallable()) {
- QMetaObject::invokeMethod(this, [luminance, callback, this]() {
+ QMetaObject::invokeMethod(this, [luminance, callback]() {
callback.call({ QJSValue(luminance) });
}, Qt::QueuedConnection);
}
@@ -296,9 +296,9 @@ qreal CUtils::findAverageLuminance(const QImage& image, int rescaleSize) const {
}
const uchar* data = img.bits();
- int width = img.width();
- int height = img.height();
- int bytesPerLine = img.bytesPerLine();
+ const int width = img.width();
+ const int height = img.height();
+ const qsizetype bytesPerLine = img.bytesPerLine();
qreal totalLuminance = 0.0;
int count = 0;
@@ -312,9 +312,9 @@ qreal CUtils::findAverageLuminance(const QImage& image, int rescaleSize) const {
continue;
}
- qreal r = pixel[0] / 255.0;
- qreal g = pixel[1] / 255.0;
- qreal b = pixel[2] / 255.0;
+ const qreal r = pixel[0] / 255.0;
+ const qreal g = pixel[1] / 255.0;
+ const qreal b = pixel[2] / 255.0;
totalLuminance += std::sqrt(0.299 * r * r + 0.587 * g * g + 0.114 * b * b);
++count;