Suppress deprecation warnings for QFont::ForceIntegerMetrics
This flag has been deprecated, but until we remove it completely we need to continue supporting it, so we just suppress the warnings for now. Change-Id: I464e1cce42f78af76d46ec12eeb3e8d53d64d6a3 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>bb10
parent
06f88d2177
commit
07e5a05dcb
|
|
@ -1762,7 +1762,10 @@ int QTextEngine::shapeTextWithHarfbuzzNG(const QScriptItem &si,
|
|||
}
|
||||
#endif
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (!actualFontEngine->supportsSubPixelPositions() || (actualFontEngine->fontDef.styleStrategy & QFont::ForceIntegerMetrics)) {
|
||||
QT_WARNING_POP
|
||||
for (uint i = 0; i < num_glyphs; ++i)
|
||||
g.advances[i] = g.advances[i].round();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1334,7 +1334,10 @@ void QFontEngineFT::doKerning(QGlyphLayout *g, QFontEngine::ShaperFlags flags) c
|
|||
}
|
||||
}
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (shouldUseDesignMetrics(flags) && !(fontDef.styleStrategy & QFont::ForceIntegerMetrics))
|
||||
QT_WARNING_POP
|
||||
flags |= DesignMetrics;
|
||||
else
|
||||
flags &= ~DesignMetrics;
|
||||
|
|
@ -1649,7 +1652,10 @@ void QFontEngineFT::recalcAdvances(QGlyphLayout *glyphs, QFontEngine::ShaperFlag
|
|||
if (face)
|
||||
unlockFace();
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics) {
|
||||
QT_WARNING_POP
|
||||
for (int i = 0; i < glyphs->numGlyphs; ++i)
|
||||
glyphs->advances[i] = glyphs->advances[i].round();
|
||||
}
|
||||
|
|
@ -1729,7 +1735,10 @@ glyph_metrics_t QFontEngineFT::boundingBox(glyph_t glyph)
|
|||
overall.width = g->width;
|
||||
overall.height = g->height;
|
||||
overall.xoff = g->advance;
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
QT_WARNING_POP
|
||||
overall.xoff = overall.xoff.round();
|
||||
if (!cacheEnabled && g != &emptyGlyph)
|
||||
delete g;
|
||||
|
|
|
|||
|
|
@ -345,7 +345,10 @@ bool QCoreTextFontEngine::stringToCMap(const QChar *str, int len, QGlyphLayout *
|
|||
glyph_metrics_t QCoreTextFontEngine::boundingBox(const QGlyphLayout &glyphs)
|
||||
{
|
||||
QFixed w;
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
bool round = fontDef.styleStrategy & QFont::ForceIntegerMetrics;
|
||||
QT_WARNING_POP
|
||||
|
||||
for (int i = 0; i < glyphs.numGlyphs; ++i) {
|
||||
w += round ? glyphs.effectiveAdvance(i).round()
|
||||
|
|
@ -371,7 +374,10 @@ glyph_metrics_t QCoreTextFontEngine::boundingBox(glyph_t glyph)
|
|||
ret.xoff = QFixed::fromReal(advances[0].width);
|
||||
ret.yoff = QFixed::fromReal(advances[0].height);
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics) {
|
||||
QT_WARNING_POP
|
||||
ret.xoff = ret.xoff.round();
|
||||
ret.yoff = ret.yoff.round();
|
||||
}
|
||||
|
|
@ -381,9 +387,12 @@ glyph_metrics_t QCoreTextFontEngine::boundingBox(glyph_t glyph)
|
|||
|
||||
QFixed QCoreTextFontEngine::ascent() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
? QFixed::fromReal(CTFontGetAscent(ctfont)).round()
|
||||
: QFixed::fromReal(CTFontGetAscent(ctfont));
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QCoreTextFontEngine::capHeight() const
|
||||
|
|
@ -392,7 +401,10 @@ QFixed QCoreTextFontEngine::capHeight() const
|
|||
if (c <= 0)
|
||||
return calculatedCapHeight();
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
QT_WARNING_POP
|
||||
c = c.round();
|
||||
|
||||
return c;
|
||||
|
|
@ -401,28 +413,40 @@ QFixed QCoreTextFontEngine::capHeight() const
|
|||
QFixed QCoreTextFontEngine::descent() const
|
||||
{
|
||||
QFixed d = QFixed::fromReal(CTFontGetDescent(ctfont));
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
QT_WARNING_POP
|
||||
d = d.round();
|
||||
|
||||
return d;
|
||||
}
|
||||
QFixed QCoreTextFontEngine::leading() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
? QFixed::fromReal(CTFontGetLeading(ctfont)).round()
|
||||
: QFixed::fromReal(CTFontGetLeading(ctfont));
|
||||
QT_WARNING_POP
|
||||
}
|
||||
QFixed QCoreTextFontEngine::xHeight() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
? QFixed::fromReal(CTFontGetXHeight(ctfont)).round()
|
||||
: QFixed::fromReal(CTFontGetXHeight(ctfont));
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QCoreTextFontEngine::averageCharWidth() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return (fontDef.styleStrategy & QFont::ForceIntegerMetrics)
|
||||
? avgCharWidth.round() : avgCharWidth;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
qreal QCoreTextFontEngine::maxCharWidth() const
|
||||
|
|
@ -917,8 +941,11 @@ void QCoreTextFontEngine::loadAdvancesForGlyphs(QVarLengthArray<CGGlyph> &cgGlyp
|
|||
|
||||
for (int i = 0; i < numGlyphs; ++i) {
|
||||
QFixed advance = QFixed::fromReal(advances[i].width);
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
glyphs->advances[i] = fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? advance.round() : advance;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1027,7 +1054,10 @@ QFontEngine::Properties QCoreTextFontEngine::properties() const
|
|||
result.capHeight = QFixed::fromReal(CTFontGetCapHeight(ctfont) * scale);
|
||||
result.lineWidth = QFixed::fromReal(CTFontGetUnderlineThickness(ctfont) * scale);
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics) {
|
||||
QT_WARNING_POP
|
||||
result.ascent = result.ascent.round();
|
||||
result.descent = result.descent.round();
|
||||
result.leading = result.leading.round();
|
||||
|
|
|
|||
|
|
@ -487,7 +487,10 @@ void QWindowsFontEngineDirectWrite::recalcAdvances(QGlyphLayout *glyphs, QFontEn
|
|||
qreal stretch = fontDef.stretch != QFont::AnyStretch ? fontDef.stretch / 100.0 : 1.0;
|
||||
for (int i = 0; i < glyphs->numGlyphs; ++i)
|
||||
glyphs->advances[i] = DESIGN_TO_LOGICAL(glyphMetrics[i].advanceWidth * stretch);
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics) {
|
||||
QT_WARNING_POP
|
||||
for (int i = 0; i < glyphs->numGlyphs; ++i)
|
||||
glyphs->advances[i] = glyphs->advances[i].round();
|
||||
}
|
||||
|
|
@ -531,7 +534,10 @@ glyph_metrics_t QWindowsFontEngineDirectWrite::boundingBox(const QGlyphLayout &g
|
|||
if (glyphs.numGlyphs == 0)
|
||||
return glyph_metrics_t();
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
bool round = fontDef.styleStrategy & QFont::ForceIntegerMetrics;
|
||||
QT_WARNING_POP
|
||||
|
||||
QFixed w = 0;
|
||||
for (int i = 0; i < glyphs.numGlyphs; ++i) {
|
||||
|
|
@ -557,7 +563,10 @@ glyph_metrics_t QWindowsFontEngineDirectWrite::boundingBox(glyph_t g)
|
|||
QFixed topSideBearing = DESIGN_TO_LOGICAL(glyphMetrics.topSideBearing);
|
||||
QFixed bottomSideBearing = DESIGN_TO_LOGICAL(glyphMetrics.bottomSideBearing);
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
if (fontDef.styleStrategy & QFont::ForceIntegerMetrics) {
|
||||
QT_WARNING_POP
|
||||
advanceWidth = advanceWidth.round();
|
||||
advanceHeight = advanceHeight.round();
|
||||
}
|
||||
|
|
@ -579,9 +588,12 @@ glyph_metrics_t QWindowsFontEngineDirectWrite::boundingBox(glyph_t g)
|
|||
|
||||
QFixed QWindowsFontEngineDirectWrite::ascent() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_ascent.round()
|
||||
: m_ascent;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QWindowsFontEngineDirectWrite::capHeight() const
|
||||
|
|
@ -589,37 +601,52 @@ QFixed QWindowsFontEngineDirectWrite::capHeight() const
|
|||
if (m_capHeight <= 0)
|
||||
return calculatedCapHeight();
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_capHeight.round()
|
||||
: m_capHeight;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QWindowsFontEngineDirectWrite::descent() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_descent.round()
|
||||
: m_descent;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QWindowsFontEngineDirectWrite::leading() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_lineGap.round()
|
||||
: m_lineGap;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QFixed QWindowsFontEngineDirectWrite::xHeight() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_xHeight.round()
|
||||
: m_xHeight;
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
qreal QWindowsFontEngineDirectWrite::maxCharWidth() const
|
||||
{
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
return fontDef.styleStrategy & QFont::ForceIntegerMetrics
|
||||
? m_maxAdvanceWidth.round().toReal()
|
||||
: m_maxAdvanceWidth.toReal();
|
||||
QT_WARNING_POP
|
||||
}
|
||||
|
||||
QImage QWindowsFontEngineDirectWrite::alphaMapForGlyph(glyph_t glyph, QFixed subPixelPosition, const QTransform &t)
|
||||
|
|
|
|||
Loading…
Reference in New Issue