mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
fix font metrics with Qt/Win 3.2.1nc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9455 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5843057992
commit
aab625bdb9
@ -1,3 +1,8 @@
|
||||
2005-01-07 Ruurd Reitsma <rareitsma@yahoo.com>
|
||||
|
||||
* qfont_metrics.C (ascent, descent): correct the metrics returned
|
||||
by Qt/Win 3.2.1 non-commercial edition.
|
||||
|
||||
2005-01-06 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* QDocument.C:
|
||||
|
@ -65,7 +65,14 @@ int ascent(char c, LyXFont const & f)
|
||||
if (!lyx_gui::use_gui)
|
||||
return 1;
|
||||
QRect const & r = metrics(f).boundingRect(c);
|
||||
// Qt/Win 3.2.1nc (at least) corrects the GetGlyphOutlineA|W y
|
||||
// value by the height: (x, -y-height, width, height).
|
||||
// Other versions return: (x, -y, width, height)
|
||||
#if defined(Q_WS_WIN) && (QT_VERSION == 0x030201)
|
||||
return -(r.top() + r.height());
|
||||
#else
|
||||
return -r.top();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@ -74,7 +81,14 @@ int descent(char c, LyXFont const & f)
|
||||
if (!lyx_gui::use_gui)
|
||||
return 1;
|
||||
QRect const & r = metrics(f).boundingRect(c);
|
||||
return r.bottom()+1;
|
||||
// Qt/Win 3.2.1nc (at least) corrects the GetGlyphOutlineA|W y
|
||||
// value by the height: (x, -y-height, width, height).
|
||||
// Other versions return: (x, -y, width, height)
|
||||
#if defined(Q_WS_WIN) && (QT_VERSION == 0x030201)
|
||||
return r.bottom() + r.height() + 1;
|
||||
#else
|
||||
return r.bottom() + 1;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user