QFontInfoclass provides the same access functions asQFont,如family(),pointSize(),italic(),weight(),fixedPitch(),styleHint()etc. But whilst theQFontaccess functions return the values that were set, aQFontInfoobject returns the values that apply to the font that will actually be used to draw the text.For example, when the program asks for a 25pt Courier font on a machine that has a non-scalable 24pt Courier font,
QFontwill (normally) use the 24pt Courier for rendering. In this case,pointSize()returns 25 andpointSize()returns 24.There are three ways to create a
QFontInfo对象。
Calling the
QFontInfoconstructor with aQFontcreates a font info object for a screen-compatible font, i.e. the font cannot be a printer font. If the font is changed later, the font info object is not updated.(Note: If you use a printer font the values returned may be inaccurate. Printer fonts are not always accessible so the nearest screen font is used if a printer font is supplied.)
fontInfo()returns the font info for a widget’s font. This is equivalent to callingQFontInfo(widget-> font() ). If the widget’s font is changed later, the font info object is not updated.
fontInfo()returns the font info for a painter’s current font. If the painter’s font is changed later, the font info object is not updated.
PySide2.QtGui.QFontInfo.
bold
(
)
¶
bool
返回
true
if
weight()
would return a value greater than
Normal
;否则返回
false
.
PySide2.QtGui.QFontInfo.
exactMatch
(
)
¶
bool
返回
true
if the matched window system font is exactly the same as the one specified by the font; otherwise returns
false
.
另请参阅
PySide2.QtGui.QFontInfo.
family
(
)
¶
unicode
Returns the family name of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
fixedPitch
(
)
¶
bool
Returns the fixed pitch value of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
italic
(
)
¶
bool
Returns the italic value of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
overline
(
)
¶
bool
Returns the overline value of the matched window system font.
Here we read the overline flag directly from the
QFont
. This is OK for X11 and for Windows because we always get what we want.
另请参阅
PySide2.QtGui.QFontInfo.
pixelSize
(
)
¶
int
Returns the pixel size of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
pointSize
(
)
¶
int
Returns the point size of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
pointSizeF
(
)
¶
qreal
Returns the point size of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
rawMode
(
)
¶
bool
返回
true
if the font is a raw mode font; otherwise returns false.
If it is a raw mode font, all other functions in
QFontInfo
will return the same values set in the
QFont
, regardless of the font actually used.
另请参阅
PySide2.QtGui.QFontInfo.
strikeOut
(
)
¶
bool
Returns the strikeout value of the matched window system font.
This is OK for X11 and for Windows because we always get what we want.
另请参阅
PySide2.QtGui.QFontInfo.
style
(
)
¶
Style
Returns the style value of the matched window system font.
另请参阅
PySide2.QtGui.QFontInfo.
styleHint
(
)
¶
StyleHint
Returns the style of the matched window system font.
Currently only returns the style hint set in
QFont
.
另请参阅
styleHint()
StyleHint
PySide2.QtGui.QFontInfo.
styleName
(
)
¶
unicode
Returns the style name of the matched window system font on systems that support it.
另请参阅
PySide2.QtGui.QFontInfo.
swap
(
other
)
¶
other
–
QFontInfo
Swaps this font info instance with
other
。此函数非常快,且从不失败。
PySide2.QtGui.QFontInfo.
underline
(
)
¶
bool
Returns the underline value of the matched window system font.
Here we read the underline flag directly from the
QFont
. This is OK for X11 and for Windows because we always get what we want.
另请参阅
PySide2.QtGui.QFontInfo.
weight
(
)
¶
int
Returns the weight of the matched window system font.