QScreen geometry() api 为分辨率 2736 x 1824 和 2560 x 1600 提供了错误的值
QScreen geometry() api is giving wrong values for the resolutions 2736 x 1824 and 2560 x 1600
// 无法根据某些高分辨率屏幕尺寸调整 qt 应用程序的大小?
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QQuickView>
#include <QScreen>
#include "rearend.h"
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
//qmlRegisterType<RearEnd>("io.backside",1,0,"RearEnd");
QScreen *screen = QGuiApplication::primaryScreen();
QRect screenGeometry = screen->geometry();
int height = screenGeometry.height();
int width = screenGeometry.width();
qDebug() << "height = " << height;
qDebug() << "width = " << width;
QQmlApplicationEngine engine;
RearEnd *myClass = new RearEnd;
myClass->setHeight(height);
myClass->setWidth(width);
engine.rootContext()->setContextProperty("RearEnd", myClass);
const QUrl url(QStringLiteral("qrc:/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
engine.load(url);
return app.exec();
}
// 我正在尝试创建一个可以部署在任何设备上的 qt 应用程序 resolution.So 我的 qt 应用程序使用 QScreen geometry() api 并获取屏幕的高度和宽度然后将主要 screen.These 值传递给 qml,其中布局、布局对齐位置、矩形、按钮等不同组件会根据屏幕调整自身大小 resolution.And 上面的代码适用于许多分辨率,如 2048 x 1536, 1920 x 1080、1680 x 1050、800 x 600 etc.But 它们不适用于 2736 x 1824 和 2560 x 1600.I 我正在打印日志,而我 运行 我的 qt application.When我将分辨率设置为 1920 x 1080,它显示 width = 1920 & height = 1080.But 当我在日志中将分辨率设置为 2736 x 1824 时它显示 width = 1368 & height = 912.Similarly 当我设置分辨率为 2560 x 1600,在日志中显示宽度 = 1280 和高度 = 800
我发现 solution.I 评论了这段代码 "QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling)" 并且它适用于 me.Seems 有一些 dpi 问题不适用于高端分辨率。
// 无法根据某些高分辨率屏幕尺寸调整 qt 应用程序的大小?
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QQuickView>
#include <QScreen>
#include "rearend.h"
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
//qmlRegisterType<RearEnd>("io.backside",1,0,"RearEnd");
QScreen *screen = QGuiApplication::primaryScreen();
QRect screenGeometry = screen->geometry();
int height = screenGeometry.height();
int width = screenGeometry.width();
qDebug() << "height = " << height;
qDebug() << "width = " << width;
QQmlApplicationEngine engine;
RearEnd *myClass = new RearEnd;
myClass->setHeight(height);
myClass->setWidth(width);
engine.rootContext()->setContextProperty("RearEnd", myClass);
const QUrl url(QStringLiteral("qrc:/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
engine.load(url);
return app.exec();
}
// 我正在尝试创建一个可以部署在任何设备上的 qt 应用程序 resolution.So 我的 qt 应用程序使用 QScreen geometry() api 并获取屏幕的高度和宽度然后将主要 screen.These 值传递给 qml,其中布局、布局对齐位置、矩形、按钮等不同组件会根据屏幕调整自身大小 resolution.And 上面的代码适用于许多分辨率,如 2048 x 1536, 1920 x 1080、1680 x 1050、800 x 600 etc.But 它们不适用于 2736 x 1824 和 2560 x 1600.I 我正在打印日志,而我 运行 我的 qt application.When我将分辨率设置为 1920 x 1080,它显示 width = 1920 & height = 1080.But 当我在日志中将分辨率设置为 2736 x 1824 时它显示 width = 1368 & height = 912.Similarly 当我设置分辨率为 2560 x 1600,在日志中显示宽度 = 1280 和高度 = 800
我发现 solution.I 评论了这段代码 "QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling)" 并且它适用于 me.Seems 有一些 dpi 问题不适用于高端分辨率。