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 "Language.h"
|
|
|
|
#include "Dimension.h"
|
2006-10-07 16:15:06 +00:00
|
|
|
|
2007-11-08 00:09:58 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-10-07 16:15:06 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
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).
|
|
|
|
*/
|
|
|
|
static inline QChar const ucs4_to_qchar(char_type const ucs4)
|
|
|
|
{
|
|
|
|
BOOST_ASSERT(is_utf16(ucs4));
|
|
|
|
return QChar(static_cast<unsigned short>(ucs4));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-31 16:40:11 +00:00
|
|
|
// Caution: When using ucs4_to_qchar() in these methods, 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
|
|
|
|
// modern fonts used, nothing unicode related.
|
|
|
|
// See comment in QLPainter::text() for more explanation.
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
GuiFontMetrics::GuiFontMetrics(QFont const & font)
|
|
|
|
: metrics_(font), smallcaps_metrics_(font), smallcaps_shape_(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GuiFontMetrics::GuiFontMetrics(QFont const & font, QFont const & smallcaps_font)
|
|
|
|
: metrics_(font), smallcaps_metrics_(smallcaps_font), smallcaps_shape_(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int GuiFontMetrics::lbearing(char_type c) const
|
|
|
|
{
|
2007-05-31 12:48:42 +00:00
|
|
|
if (!is_utf16(c))
|
|
|
|
// FIXME: QFontMetrics::leftBearingdoes not support the
|
|
|
|
// full unicode range. Once it does, we could use:
|
|
|
|
//return metrics_.leftBearing(toqstr(docstring(1,c)));
|
|
|
|
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:
|
|
|
|
// metrics_.rightBearing(toqstr(docstring(1,c)));
|
|
|
|
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-05-31 12:48:42 +00:00
|
|
|
int GuiFontMetrics::smallcapsWidth(char_type c) const
|
2006-10-07 16:15:06 +00:00
|
|
|
{
|
2007-05-31 12:48:42 +00:00
|
|
|
// FIXME: Optimisation probably needed: we don't use the width cache.
|
|
|
|
if (is_utf16(c)) {
|
|
|
|
QChar const qc = ucs4_to_qchar(c);
|
|
|
|
QChar const uc = qc.toUpper();
|
|
|
|
if (qc != uc)
|
|
|
|
return smallcaps_metrics_.width(uc);
|
|
|
|
else
|
|
|
|
return metrics_.width(qc);
|
|
|
|
} else {
|
|
|
|
QString const s = toqstr(docstring(1,c));
|
|
|
|
QString const us = s.toUpper();
|
|
|
|
if (s != us)
|
|
|
|
return smallcaps_metrics_.width(us);
|
2006-10-07 16:15:06 +00:00
|
|
|
else
|
2007-05-31 12:48:42 +00:00
|
|
|
return metrics_.width(s);
|
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
|
|
|
{
|
2007-02-26 15:13:08 +00:00
|
|
|
size_t ls = s.size();
|
2006-10-07 16:15:06 +00:00
|
|
|
int w = 0;
|
2007-10-08 08:55:21 +00:00
|
|
|
for (unsigned int i = 0; i < ls; ++i) {
|
|
|
|
//FIXME: we need to detect surrogate pairs and act accordingly
|
|
|
|
/**
|
|
|
|
if isSurrogateBase(s[i]) {
|
|
|
|
docstring c = s[i];
|
|
|
|
if (smallcaps_shape_)
|
|
|
|
w += metrics_.width(toqstr(c + s[i + 1]));
|
|
|
|
else
|
|
|
|
w += smallcaps_metrics_.width(toqstr(c + s[i + 1]));
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*/
|
2006-12-01 16:12:24 +00:00
|
|
|
w += width(s[i]);
|
2007-10-08 08:55:21 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiFontMetrics::rectText(docstring const & str,
|
|
|
|
int & w, int & ascent, int & descent) const
|
|
|
|
{
|
|
|
|
static int const d = 2;
|
2007-02-26 15:13:08 +00:00
|
|
|
w = width(str) + d * 2 + 2;
|
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
|
|
|
|
{
|
|
|
|
static int const d = 3;
|
2007-02-26 15:13:08 +00:00
|
|
|
w = width(str) + d * 2 + 2;
|
2006-10-07 16:15:06 +00:00
|
|
|
ascent = metrics_.ascent() + d;
|
|
|
|
descent = metrics_.descent() + d;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
r = metrics_.boundingRect(toqstr(docstring(1,c)));
|
|
|
|
|
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
|
|
|
|
{
|
2006-12-09 07:07:00 +00:00
|
|
|
if (smallcaps_shape_)
|
2007-05-31 12:48:42 +00:00
|
|
|
return smallcapsWidth(c);
|
2006-12-09 07:07:00 +00:00
|
|
|
|
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
|
|
|
|
{
|
2007-08-13 13:56:54 +00:00
|
|
|
static AscendDescend const outOfLimitAD =
|
|
|
|
{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
|
|
|
|
{
|
2007-08-13 13:56:54 +00:00
|
|
|
static AscendDescend const outOfLimitAD =
|
|
|
|
{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
|