Windows 7 SP1
MSVS 2010
Qt 4.8.4
QLineEditウィジェットに収まらなければならない最大文字数を知っているQLineEditウィジェットの最大サイズを決定したいと思います。
したがって、私は使用したい:
int QFontMetrics::maxWidth () const
Returns the width of the widest character in the font.
でも、これ:
#include <QApplication>
#include <QFont>
#include <QFontMetrics>
#include <iostream>
using std::cout; using std::endl;
int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QFontMetrics metrics(QApplication::font());
cout << "Default - Max width: " << metrics.maxWidth() << " Width of X: " << metrics.width('X') << endl;
const QFont f("Monospace", 8);
QFontMetrics metrics2(f);
cout << "Monospace 8 - Max width: " << metrics2.maxWidth() << " Width of X: " << metrics2.width('X') << endl;
const QFont f2("Cambria", 16);
QFontMetrics metrics3(f2);
cout << "Cambria 16 - Max width: " << metrics3.maxWidth() << " Width of X: " << metrics3.width('X') << endl;
return 0;
}
これを出力します:
Default - Max width: 23 Width of X: 6
Monospace 8 - Max width: 23 Width of X: 6
Cambria 16 - Max width: 91 Width of X: 12
質問:最大幅が「X」の幅よりもはるかに大きいのはなぜですか?私が気付いていないフォントに超大きな文字がありますか?