我遇到了 QFontMetrics?
http://doc.qt.io/qt-5/qfontmetrics.html
这给出了当前字体的高度和宽度。
我需要在使用 Scale 类的不同监视器上以全屏模式运行我的应用程序。http://doc.qt.io/qt-5/qml-qtquick-scale.html
这将返回当前屏幕的高度和宽度。
有没有办法使用 QFontMetrics 或其他任何东西来根据显示器大小更改字体大小?
ApplicationWindow
{
id: head
visible: true
width: Screen.width
height: Screen.height
title: "Novus Pilot"
property var id: 0;
Draw_on_qimage
{
id: draw_on_qimage
anchors.fill: parent
parent: image
scaleX: head.width / 640
scaleY: head.height / 480
}
}
Draw_on_qimage
是一个cpp类。