我编写了一个 qml 和 cpp 文件来验证和可视化 QFontMetrics 概念。
#include <QFontMetrics>
#include<QFontMetricsF>
#include<QDebug>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
QString translation = " Sort médicament à la liste des filtres";
QString fontname = "Frobisher";
int size = 28;
QFont font(fontname,size);
QFontMetrics fm(font);
int pixelsWide = fm.width(translation);
qDebug()<<"width "<<pixelsWide;
return app.exec();
}
main.qml 文件
Window
{
visible: true
width: 940
height: 480
title: qsTr("Hello World")
Rectangle
{
color: "blue"
width: 642
height: 47
Text {
id: txt
anchors.fill: parent
anchors.centerIn: parent.Center
text: qsTr(" Sort médicament à la liste des filtres")
font.family: "Frobisher"
font.bold: true
font.pixelSize: 28
elide: Text.ElideRight
}
}
}
当我运行这个程序时,QFontMetrics 提供的宽度是:694。但是,在 qml 文件中为 Rectangle 和 Text 设置的宽度是 642,并且也设置了 elide 属性。有了这个逻辑(如 694 > 642),我应该会看到截断。但没有看到截断。
请参考 qml 输出
为什么是这样?无法理解。