mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-11 22:45:25 +00:00
24 lines
649 B
C++
24 lines
649 B
C++
#include "common/HighDpiPixmap.h"
|
|
|
|
#include <QGuiApplication>
|
|
#include <QScreen>
|
|
|
|
static qreal GetDevicePixelRatio(qreal devicePixelRatio)
|
|
{
|
|
if (devicePixelRatio > 0) {
|
|
return devicePixelRatio;
|
|
}
|
|
qreal ratio = 1;
|
|
for (auto screen : QGuiApplication::screens()) {
|
|
ratio = std::max(ratio, screen->devicePixelRatio());
|
|
}
|
|
return ratio;
|
|
}
|
|
|
|
HighDpiPixmap::HighDpiPixmap(int width, int height, qreal devicePixelRatio)
|
|
: QPixmap(int(width *GetDevicePixelRatio(devicePixelRatio)),
|
|
int(height *GetDevicePixelRatio(devicePixelRatio)))
|
|
{
|
|
setDevicePixelRatio(GetDevicePixelRatio(devicePixelRatio));
|
|
}
|