2006-10-07 16:15:06 +00:00
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
* \file GuiFontMetrics.cpp
|
2006-10-07 16:15:06 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author unknown
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "GuiFontMetrics.h"
|
|
|
|
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Dimension.h"
|
2013-06-25 06:18:25 +00:00
|
|
|
#include "Language.h"
|
|
|
|
#include "LyXRC.h"
|
2006-10-07 16:15:06 +00:00
|
|
|
|
2008-02-14 08:49:45 +00:00
|
|
|
#include "insets/Inset.h"
|
|
|
|
|
2008-04-30 08:26:40 +00:00
|
|
|
#include "support/lassert.h"
|
2007-11-08 00:09:58 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2014-05-23 16:59:53 +00:00
|
|
|
using namespace lyx::support;
|
2006-10-07 16:15:06 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2010-11-17 22:00:42 +00:00
|
|
|
namespace {
|
2007-11-08 00:09:58 +00:00
|
|
|
/**
|
|
|
|
* Convert a UCS4 character into a QChar.
|
|
|
|
* This is a hack (it does only make sense for the common part of the UCS4
|
|
|
|
* and UTF16 encodings) and should not be used.
|
|
|
|
* This does only exist because of performance reasons (a real conversion
|
|
|
|
* using iconv is too slow on windows).
|
2010-11-17 22:00:42 +00:00
|
|
|
*
|
|
|
|
* This is no real conversion but a simple cast in reality. This is the reason
|
|
|
|
* why this works well for symbol fonts used in mathed too, even though
|
|
|
|
* these are not real ucs4 characters. These are codepoints in the
|
2012-12-15 12:02:40 +00:00
|
|
|
* computer modern fonts used, nothing unicode related.
|
2014-05-23 16:59:53 +00:00
|
|
|
* See comment in GuiPainter::text() for more explanation.
|
2014-05-07 10:06:56 +00:00
|
|
|
**/
|
2010-11-17 22:00:42 +00:00
|
|
|
inline QChar const ucs4_to_qchar(char_type const ucs4)
|
2007-11-08 00:09:58 +00:00
|
|
|
{
|
2013-04-25 21:27:10 +00:00
|
|
|
LATTEST(is_utf16(ucs4));
|
2007-11-08 00:09:58 +00:00
|
|
|
return QChar(static_cast<unsigned short>(ucs4));
|
|
|
|
}
|
2010-11-17 22:00:42 +00:00
|
|
|
} // anon namespace
|
2007-11-08 00:09:58 +00:00
|
|
|
|
|
|
|
|
2015-11-09 09:11:57 +00:00
|
|
|
// Limit strwidth_cache_ size to 512kB of string data
|
|
|
|
GuiFontMetrics::GuiFontMetrics(QFont const & font)
|
|
|
|
: font_(font), metrics_(font, 0),
|
2015-12-11 15:33:34 +00:00
|
|
|
strwidth_cache_(1 << 19),
|
|
|
|
tl_cache_rtl_(false), tl_cache_wordspacing_(-1.0)
|
2006-10-07 16:15:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::maxAscent() const
|
|
|
|
{
|
|
|
|
return metrics_.ascent();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::maxDescent() const
|
|
|
|
{
|
|
|
|
// We add 1 as the value returned by QT is different than X
|
|
|
|
// See http://doc.trolltech.com/2.3/qfontmetrics.html#200b74
|
|
|
|
return metrics_.descent() + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-26 15:55:19 +00:00
|
|
|
int GuiFontMetrics::em() const
|
|
|
|
{
|
|
|
|
return QFontInfo(font_).pixelSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-14 13:22:11 +00:00
|
|
|
int GuiFontMetrics::lineWidth() const
|
|
|
|
{
|
|
|
|
return metrics_.lineWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::underlinePos() const
|
|
|
|
{
|
|
|
|
return metrics_.underlinePos();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::strikeoutPos() const
|
|
|
|
{
|
|
|
|
return metrics_.strikeOutPos();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
int GuiFontMetrics::lbearing(char_type c) const
|
|
|
|
{
|
2007-05-31 12:48:42 +00:00
|
|
|
if (!is_utf16(c))
|
2015-04-14 13:22:11 +00:00
|
|
|
// FIXME: QFontMetrics::leftBearing does not support the
|
2007-05-31 12:48:42 +00:00
|
|
|
// full unicode range. Once it does, we could use:
|
2008-09-08 01:18:33 +00:00
|
|
|
//return metrics_.leftBearing(toqstr(docstring(1, c)));
|
2007-05-31 12:48:42 +00:00
|
|
|
return 0;
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
return metrics_.leftBearing(ucs4_to_qchar(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-13 13:56:54 +00:00
|
|
|
namespace {
|
|
|
|
int const outOfLimitMetric = -10000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
int GuiFontMetrics::rbearing(char_type c) const
|
|
|
|
{
|
2007-08-13 13:56:54 +00:00
|
|
|
int value = rbearing_cache_.value(c, outOfLimitMetric);
|
|
|
|
if (value != outOfLimitMetric)
|
|
|
|
return value;
|
|
|
|
|
|
|
|
// Qt rbearing is from the right edge of the char's width().
|
|
|
|
if (is_utf16(c)) {
|
|
|
|
QChar sc = ucs4_to_qchar(c);
|
|
|
|
value = width(c) - metrics_.rightBearing(sc);
|
2007-11-13 23:00:36 +00:00
|
|
|
} else {
|
|
|
|
// FIXME: QFontMetrics::leftBearing does not support the
|
2007-08-13 13:56:54 +00:00
|
|
|
// full unicode range. Once it does, we could use:
|
2008-09-08 01:18:33 +00:00
|
|
|
// metrics_.rightBearing(toqstr(docstring(1, c)));
|
2007-08-13 13:56:54 +00:00
|
|
|
value = width(c);
|
2007-11-13 23:00:36 +00:00
|
|
|
}
|
2007-08-13 13:56:54 +00:00
|
|
|
|
|
|
|
rbearing_cache_.insert(c, value);
|
|
|
|
|
|
|
|
return value;
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-26 15:13:08 +00:00
|
|
|
int GuiFontMetrics::width(docstring const & s) const
|
2006-10-07 16:15:06 +00:00
|
|
|
{
|
2015-11-09 09:11:57 +00:00
|
|
|
QByteArray qba =
|
|
|
|
QByteArray(reinterpret_cast<char const *>(s.data()),
|
|
|
|
s.size() * sizeof(docstring::value_type));
|
|
|
|
int * pw = strwidth_cache_[qba];
|
|
|
|
if (pw)
|
|
|
|
return *pw;
|
2016-10-23 18:52:01 +00:00
|
|
|
// For some reason QMetrics::width returns a wrong value with Qt5
|
|
|
|
// int w = metrics_.width(toqstr(s));
|
|
|
|
QTextLayout tl;
|
|
|
|
tl.setText(toqstr(s));
|
|
|
|
tl.setFont(font_);
|
|
|
|
tl.beginLayout();
|
|
|
|
QTextLine line = tl.createLine();
|
|
|
|
tl.endLayout();
|
|
|
|
int w = int(line.naturalTextWidth());
|
|
|
|
|
2015-11-09 09:11:57 +00:00
|
|
|
strwidth_cache_.insert(qba, new int(w), qba.size());
|
2006-10-27 21:27:03 +00:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::width(QString const & ucs2) const
|
|
|
|
{
|
2007-05-31 12:48:42 +00:00
|
|
|
return width(qstring_to_ucs4(ucs2));
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::signedWidth(docstring const & s) const
|
|
|
|
{
|
2006-11-08 11:32:33 +00:00
|
|
|
if (s.empty())
|
|
|
|
return 0;
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
if (s[0] == '-')
|
2007-02-26 15:13:08 +00:00
|
|
|
return -width(s.substr(1, s.size() - 1));
|
2006-10-07 16:15:06 +00:00
|
|
|
else
|
2007-02-26 15:13:08 +00:00
|
|
|
return width(s);
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
2015-12-07 09:32:34 +00:00
|
|
|
|
2015-12-11 15:33:34 +00:00
|
|
|
QTextLayout const &
|
|
|
|
GuiFontMetrics::getTextLayout(docstring const & s, QFont font,
|
|
|
|
bool const rtl, double const wordspacing) const
|
|
|
|
{
|
|
|
|
if (s != tl_cache_s_ || font != tl_cache_font_ || rtl != tl_cache_rtl_
|
|
|
|
|| wordspacing != tl_cache_wordspacing_) {
|
|
|
|
tl_cache_.setText(toqstr(s));
|
2015-12-07 09:32:34 +00:00
|
|
|
font.setWordSpacing(wordspacing);
|
2015-12-11 15:33:34 +00:00
|
|
|
tl_cache_.setFont(font);
|
2015-12-07 09:32:34 +00:00
|
|
|
// Note that both setFlags and the enums are undocumented
|
2015-12-11 15:33:34 +00:00
|
|
|
tl_cache_.setFlags(rtl ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight);
|
|
|
|
tl_cache_.beginLayout();
|
|
|
|
tl_cache_.createLine();
|
|
|
|
tl_cache_.endLayout();
|
|
|
|
tl_cache_s_ = s;
|
|
|
|
tl_cache_font_ = font;
|
|
|
|
tl_cache_rtl_ = rtl;
|
|
|
|
tl_cache_wordspacing_ = wordspacing;
|
2015-12-07 09:32:34 +00:00
|
|
|
}
|
2015-12-11 15:33:34 +00:00
|
|
|
return tl_cache_;
|
2014-05-14 15:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-18 23:22:10 +00:00
|
|
|
int GuiFontMetrics::pos2x(docstring const & s, int const pos, bool const rtl,
|
|
|
|
double const wordspacing) const
|
2014-05-14 15:46:43 +00:00
|
|
|
{
|
2015-12-07 09:32:34 +00:00
|
|
|
QTextLayout const & tl = getTextLayout(s, font_, rtl, wordspacing);
|
2015-01-14 10:49:05 +00:00
|
|
|
return static_cast<int>(tl.lineForTextPosition(pos).cursorToX(pos));
|
2014-05-14 15:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-18 23:22:10 +00:00
|
|
|
int GuiFontMetrics::x2pos(docstring const & s, int & x, bool const rtl,
|
|
|
|
double const wordspacing) const
|
2014-05-14 15:46:43 +00:00
|
|
|
{
|
2015-12-07 09:32:34 +00:00
|
|
|
QTextLayout const & tl = getTextLayout(s, font_, rtl, wordspacing);
|
2014-05-14 15:46:43 +00:00
|
|
|
int pos = tl.lineForTextPosition(0).xToCursor(x);
|
|
|
|
// correct x value to the actual cursor position.
|
2015-01-14 10:49:05 +00:00
|
|
|
x = static_cast<int>(tl.lineForTextPosition(0).cursorToX(pos));
|
2014-05-14 15:46:43 +00:00
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
|
2015-07-18 23:22:10 +00:00
|
|
|
bool GuiFontMetrics::breakAt(docstring & s, int & x, bool const rtl, bool const force) const
|
|
|
|
{
|
|
|
|
if (s.empty())
|
|
|
|
return false;
|
|
|
|
QTextLayout tl;
|
2016-01-19 11:02:43 +00:00
|
|
|
/* Qt will not break at a leading or trailing space, and we need
|
|
|
|
* that sometimes, see http://www.lyx.org/trac/ticket/9921.
|
|
|
|
*
|
|
|
|
* To work around the problem, we enclose the string between
|
|
|
|
* zero-width characters so that the QTextLayout algorithm will
|
|
|
|
* agree to break the text at these extremal spaces.
|
|
|
|
*/
|
|
|
|
// Unicode character ZERO WIDTH NO-BREAK SPACE
|
|
|
|
QChar const zerow_nbsp(0xfeff);
|
2016-10-23 18:52:01 +00:00
|
|
|
QString str = zerow_nbsp + toqstr(s) + zerow_nbsp;
|
|
|
|
#if 1
|
|
|
|
/* Use unicode override characters to enforce drawing direction
|
|
|
|
* Source: http://www.iamcal.com/understanding-bidirectional-text/
|
|
|
|
*/
|
|
|
|
if (rtl)
|
|
|
|
// Right-to-left override: forces to draw text right-to-left
|
|
|
|
str = QChar(0x202E) + str;
|
|
|
|
else
|
|
|
|
// Left-to-right override: forces to draw text left-to-right
|
|
|
|
str = QChar(0x202D) + str;
|
|
|
|
int const offset = 2;
|
|
|
|
#else
|
|
|
|
// Alternative version that breaks with Qt5 and arabic text (#10436)
|
2015-07-18 23:22:10 +00:00
|
|
|
// Note that both setFlags and the enums are undocumented
|
|
|
|
tl.setFlags(rtl ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight);
|
2016-10-23 18:52:01 +00:00
|
|
|
int const offset = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
tl.setText(str);
|
|
|
|
tl.setFont(font_);
|
2015-07-18 23:22:10 +00:00
|
|
|
QTextOption to;
|
|
|
|
to.setWrapMode(force ? QTextOption::WrapAnywhere : QTextOption::WordWrap);
|
|
|
|
tl.setTextOption(to);
|
|
|
|
tl.beginLayout();
|
|
|
|
QTextLine line = tl.createLine();
|
|
|
|
line.setLineWidth(x);
|
|
|
|
tl.createLine();
|
|
|
|
tl.endLayout();
|
2016-10-23 18:52:01 +00:00
|
|
|
if ((force && line.textLength() == offset) || int(line.naturalTextWidth()) > x)
|
2015-07-18 23:22:10 +00:00
|
|
|
return false;
|
|
|
|
x = int(line.naturalTextWidth());
|
2016-10-23 18:52:01 +00:00
|
|
|
// The offset is here to account for the extra leading characters.
|
|
|
|
s = s.substr(0, line.textLength() - offset);
|
2015-07-18 23:22:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
void GuiFontMetrics::rectText(docstring const & str,
|
|
|
|
int & w, int & ascent, int & descent) const
|
|
|
|
{
|
2008-03-02 10:20:13 +00:00
|
|
|
static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
|
|
|
|
|
2008-02-14 08:49:45 +00:00
|
|
|
w = width(str) + Inset::TEXT_TO_INSET_OFFSET;
|
2006-10-07 16:15:06 +00:00
|
|
|
ascent = metrics_.ascent() + d;
|
|
|
|
descent = metrics_.descent() + d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiFontMetrics::buttonText(docstring const & str,
|
|
|
|
int & w, int & ascent, int & descent) const
|
|
|
|
{
|
2008-02-14 09:44:12 +00:00
|
|
|
rectText(str, w, ascent, descent);
|
|
|
|
w += Inset::TEXT_TO_INSET_OFFSET;
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2006-12-04 10:09:22 +00:00
|
|
|
Dimension const GuiFontMetrics::defaultDimension() const
|
2006-10-07 16:15:06 +00:00
|
|
|
{
|
2006-12-04 10:45:43 +00:00
|
|
|
return Dimension(0, maxAscent(), maxDescent());
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
|
|
|
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2006-12-04 10:09:22 +00:00
|
|
|
Dimension const GuiFontMetrics::dimension(char_type c) const
|
2006-12-01 16:12:24 +00:00
|
|
|
{
|
2006-12-04 10:45:43 +00:00
|
|
|
return Dimension(width(c), ascent(c), descent(c));
|
2006-12-01 16:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-13 13:56:54 +00:00
|
|
|
GuiFontMetrics::AscendDescend const GuiFontMetrics::fillMetricsCache(
|
|
|
|
char_type c) const
|
2006-12-01 16:12:24 +00:00
|
|
|
{
|
2007-05-31 12:48:42 +00:00
|
|
|
QRect r;
|
|
|
|
if (is_utf16(c))
|
|
|
|
r = metrics_.boundingRect(ucs4_to_qchar(c));
|
|
|
|
else
|
2008-09-08 01:18:33 +00:00
|
|
|
r = metrics_.boundingRect(toqstr(docstring(1, c)));
|
2007-05-31 12:48:42 +00:00
|
|
|
|
2006-12-02 15:54:49 +00:00
|
|
|
AscendDescend ad = { -r.top(), r.bottom() + 1};
|
2006-12-01 16:12:24 +00:00
|
|
|
// We could as well compute the width but this is not really
|
|
|
|
// needed for now as it is done directly in width() below.
|
2006-12-02 15:54:49 +00:00
|
|
|
metrics_cache_.insert(c, ad);
|
2007-08-13 13:56:54 +00:00
|
|
|
|
|
|
|
return ad;
|
2006-12-01 16:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::width(char_type c) const
|
|
|
|
{
|
2007-08-13 13:56:54 +00:00
|
|
|
int value = width_cache_.value(c, outOfLimitMetric);
|
|
|
|
if (value != outOfLimitMetric)
|
|
|
|
return value;
|
|
|
|
|
|
|
|
if (is_utf16(c))
|
|
|
|
value = metrics_.width(ucs4_to_qchar(c));
|
|
|
|
else
|
2007-11-08 00:09:58 +00:00
|
|
|
value = metrics_.width(toqstr(docstring(1, c)));
|
2007-08-13 13:56:54 +00:00
|
|
|
|
|
|
|
width_cache_.insert(c, value);
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2007-08-13 13:56:54 +00:00
|
|
|
return value;
|
2006-12-01 16:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::ascent(char_type c) const
|
|
|
|
{
|
2014-05-07 10:06:56 +00:00
|
|
|
static AscendDescend const outOfLimitAD =
|
2007-08-13 13:56:54 +00:00
|
|
|
{outOfLimitMetric, outOfLimitMetric};
|
|
|
|
AscendDescend value = metrics_cache_.value(c, outOfLimitAD);
|
|
|
|
if (value.ascent != outOfLimitMetric)
|
|
|
|
return value.ascent;
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2007-08-13 13:56:54 +00:00
|
|
|
value = fillMetricsCache(c);
|
|
|
|
return value.ascent;
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
2006-12-01 16:12:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::descent(char_type c) const
|
|
|
|
{
|
2014-05-07 10:06:56 +00:00
|
|
|
static AscendDescend const outOfLimitAD =
|
2007-08-13 13:56:54 +00:00
|
|
|
{outOfLimitMetric, outOfLimitMetric};
|
|
|
|
AscendDescend value = metrics_cache_.value(c, outOfLimitAD);
|
|
|
|
if (value.descent != outOfLimitMetric)
|
|
|
|
return value.descent;
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2007-08-13 13:56:54 +00:00
|
|
|
value = fillMetricsCache(c);
|
|
|
|
return value.descent;
|
2006-10-07 16:15:06 +00:00
|
|
|
}
|
2006-12-01 16:12:24 +00:00
|
|
|
|
2007-11-13 23:00:36 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|