mirror of https://github.com/procxx/kepka.git
Check if icon has desired size when saving
This commit is contained in:
parent
0b5eb47b37
commit
9823615a84
|
@ -167,8 +167,7 @@ QIcon TrayIconGen(int counter, bool muted) {
|
||||||
.pixmap(desiredSize)
|
.pixmap(desiredSize)
|
||||||
.toImage();
|
.toImage();
|
||||||
} else {
|
} else {
|
||||||
const auto availableSizes = systemIcon
|
const auto availableSizes = systemIcon.availableSizes();
|
||||||
.availableSizes();
|
|
||||||
|
|
||||||
const auto biggestSize = ranges::max_element(
|
const auto biggestSize = ranges::max_element(
|
||||||
availableSizes,
|
availableSizes,
|
||||||
|
@ -260,12 +259,33 @@ std::unique_ptr<QTemporaryFile> TrayIconFile(
|
||||||
static const auto templateName = AppRuntimeDirectory()
|
static const auto templateName = AppRuntimeDirectory()
|
||||||
+ kTrayIconFilename.utf16();
|
+ kTrayIconFilename.utf16();
|
||||||
|
|
||||||
|
const auto desiredSize = QSize(size, size);
|
||||||
|
|
||||||
auto ret = std::make_unique<QTemporaryFile>(
|
auto ret = std::make_unique<QTemporaryFile>(
|
||||||
templateName,
|
templateName,
|
||||||
parent);
|
parent);
|
||||||
|
|
||||||
ret->open();
|
ret->open();
|
||||||
icon.pixmap(size).save(ret.get());
|
|
||||||
|
if (icon.actualSize(desiredSize) == desiredSize) {
|
||||||
|
icon.pixmap(desiredSize).save(ret.get());
|
||||||
|
} else {
|
||||||
|
const auto availableSizes = icon.availableSizes();
|
||||||
|
|
||||||
|
const auto biggestSize = ranges::max_element(
|
||||||
|
availableSizes,
|
||||||
|
std::less<>(),
|
||||||
|
&QSize::width);
|
||||||
|
|
||||||
|
icon
|
||||||
|
.pixmap(*biggestSize)
|
||||||
|
.scaled(
|
||||||
|
desiredSize,
|
||||||
|
Qt::IgnoreAspectRatio,
|
||||||
|
Qt::SmoothTransformation)
|
||||||
|
.save(ret.get());
|
||||||
|
}
|
||||||
|
|
||||||
ret->close();
|
ret->close();
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -400,13 +420,13 @@ void MainWindow::initHook() {
|
||||||
cSetSupportTray(trayAvailable);
|
cSetSupportTray(trayAvailable);
|
||||||
|
|
||||||
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
auto sniWatcher = new QDBusServiceWatcher(
|
auto sniWatcher = new QDBusServiceWatcher(
|
||||||
kSNIWatcherService.utf16(),
|
kSNIWatcherService.utf16(),
|
||||||
QDBusConnection::sessionBus(),
|
QDBusConnection::sessionBus(),
|
||||||
QDBusServiceWatcher::WatchForOwnerChange,
|
QDBusServiceWatcher::WatchForOwnerChange,
|
||||||
this);
|
this);
|
||||||
|
|
||||||
connect(
|
connect(
|
||||||
sniWatcher,
|
sniWatcher,
|
||||||
&QDBusServiceWatcher::serviceOwnerChanged,
|
&QDBusServiceWatcher::serviceOwnerChanged,
|
||||||
this,
|
this,
|
||||||
|
|
Loading…
Reference in New Issue