mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
fix fontmeterics for QT < 11
This commit is contained in:
parent
c61d1508cb
commit
465b4124e6
@ -947,7 +947,11 @@ void gGraphView::DrawTextQue(QPainter &painter)
|
||||
if (q.angle == 0) {
|
||||
painter.drawText(q.x, q.y, q.text);
|
||||
} else {
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,11,0))
|
||||
w = painter.fontMetrics().horizontalAdvance(q.text);
|
||||
#else
|
||||
w = painter.fontMetrics().width(q.text);
|
||||
#endif
|
||||
h = painter.fontMetrics().xHeight() + 2;
|
||||
|
||||
painter.translate(q.x, q.y);
|
||||
@ -972,7 +976,11 @@ void gGraphView::DrawTextQue(QPainter &painter)
|
||||
if (q.angle == 0) {
|
||||
painter.drawText(q.rect, q.flags, q.text);
|
||||
} else {
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,11,0))
|
||||
w = painter.fontMetrics().horizontalAdvance(q.text);
|
||||
#else
|
||||
w = painter.fontMetrics().width(q.text);
|
||||
#endif
|
||||
h = painter.fontMetrics().xHeight() + 2;
|
||||
|
||||
painter.translate(q.rect.x(), q.rect.y());
|
||||
@ -1013,7 +1021,11 @@ void gGraphView::DrawTextQueCached(QPainter &painter)
|
||||
if (!QPixmapCache::find(hstr, &pm)) {
|
||||
|
||||
QFontMetrics fm(*q.font);
|
||||
w = fm.horizontalAdvance(q.text);
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5,11,0))
|
||||
w = painter.fontMetrics().horizontalAdvance(q.text);
|
||||
#else
|
||||
w = painter.fontMetrics().width(q.text);
|
||||
#endif
|
||||
h = fm.height()+buf;
|
||||
|
||||
pm = QPixmap(w, h);
|
||||
|
Loading…
Reference in New Issue
Block a user