]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiFontMetrics.cpp
Use QFontMetrics information for underlines (and friends) width and position
[lyx.git] / src / frontends / qt4 / GuiFontMetrics.cpp
index 7737b944f9e014d55cbb4c8b0f44dd54894c5264..2214623d3b7b9b4befc7c3aff5125f21e8957217 100644 (file)
 
 #include "qt_helpers.h"
 
-#include "Language.h"
 #include "Dimension.h"
+#include "Language.h"
+#include "LyXRC.h"
+
+#include "insets/Inset.h"
 
-#include "support/unicode.h"
+#include "support/lassert.h"
 
-using std::string;
+#include <QTextLayout>
+
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 namespace frontend {
 
-GuiFontMetrics::GuiFontMetrics(QFont const & font)
-: metrics_(font), smallcaps_metrics_(font), smallcaps_shape_(false)
+namespace {
+/**
+ * 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).
+ *
+ * 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
+ * computer modern fonts used, nothing unicode related.
+ * See comment in GuiPainter::text() for more explanation.
+ **/
+inline QChar const ucs4_to_qchar(char_type const ucs4)
 {
+       LATTEST(is_utf16(ucs4));
+       return QChar(static_cast<unsigned short>(ucs4));
 }
+} // anon namespace
 
 
-GuiFontMetrics::GuiFontMetrics(QFont const & font, QFont const & smallcaps_font)
-: metrics_(font), smallcaps_metrics_(smallcaps_font), smallcaps_shape_(true)
+GuiFontMetrics::GuiFontMetrics(QFont const & font) : font_(font), metrics_(font, 0)
 {
 }
 
@@ -51,84 +72,90 @@ int GuiFontMetrics::maxDescent() const
 }
 
 
-int GuiFontMetrics::lbearing(char_type c) const
+int GuiFontMetrics::em() const
 {
-       return metrics_.leftBearing(ucs4_to_qchar(c));
+       return QFontInfo(font_).pixelSize();
 }
 
 
-int GuiFontMetrics::rbearing(char_type c) const
+int GuiFontMetrics::lineWidth() const
 {
-       if (!rbearing_cache_.contains(c)) {
-               // Qt rbearing is from the right edge of the char's width().
-               QChar sc = ucs4_to_qchar(c);
-               int rb = metrics_.width(sc) - metrics_.rightBearing(sc);
-               rbearing_cache_.insert(c, rb);
-       }
-       return rbearing_cache_.value(c);
+       return metrics_.lineWidth();
 }
 
 
-int GuiFontMetrics::smallcapsWidth(QString const & s) const
+int GuiFontMetrics::underlinePos() const
 {
-       int w = 0;
-       int const ls = s.size();
-
-       for (int i = 0; i < ls; ++i) {
-               QChar const & c = s[i];
-               QChar const uc = c.toUpper();
-               if (c != uc)
-                       w += smallcaps_metrics_.width(uc);
-               else
-                       w += metrics_.width(c);
-       }
-       return w;
+       return metrics_.underlinePos();
 }
 
 
-int GuiFontMetrics::width(docstring const & s) const
+int GuiFontMetrics::strikeoutPos() const
 {
-       size_t ls = s.size();
-       if (ls == 0)
-               return 0;
+       return metrics_.strikeOutPos();
+}
 
-       if (ls == 1 && !smallcaps_shape_) {
-               return width(s[0]);
-       }
 
-       if (smallcaps_shape_)
-               // Caution: The following ucs4 to QString conversions work
-               // for symbol fonts only because they are no real conversions
-               // but simple casts in reality. See comment in QLPainter::text()
-               // for more explanation.
-               return smallcapsWidth(toqstr(s));
+int GuiFontMetrics::lbearing(char_type c) const
+{
+       if (!is_utf16(c))
+               // FIXME: QFontMetrics::leftBearing does not support the
+               //        full unicode range. Once it does, we could use:
+               //return metrics_.leftBearing(toqstr(docstring(1, c)));
+               return 0;
 
-       int w = 0;
-       for (unsigned int i = 0; i < ls; ++i)
-               w += width(s[i]);
+       return metrics_.leftBearing(ucs4_to_qchar(c));
+}
 
-       return w;
+
+namespace {
+int const outOfLimitMetric = -10000;
 }
 
 
-int GuiFontMetrics::width(QString const & ucs2) const
+int GuiFontMetrics::rbearing(char_type c) const
 {
-       int const ls = ucs2.size();
-       if (ls == 1 && !smallcaps_shape_) {
-               return width(ucs2[0].unicode());
+       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);
+       } else {
+               // FIXME: QFontMetrics::leftBearing does not support the
+               //        full unicode range. Once it does, we could use:
+               // metrics_.rightBearing(toqstr(docstring(1, c)));
+               value = width(c);
        }
 
-       if (smallcaps_shape_)
-               return smallcapsWidth(ucs2);
+       rbearing_cache_.insert(c, value);
+
+       return value;
+}
 
-       int w = 0;
-       for (int i = 0; i < ls; ++i)
-               w += width(ucs2[i].unicode());
 
+int GuiFontMetrics::width(docstring const & s) const
+{
+       int w = 0;
+       map<docstring, int>::const_iterator it = strwidth_cache_.find(s);
+       if (it != strwidth_cache_.end()) {
+               w = it->second;
+       } else {
+               w = metrics_.width(toqstr(s));
+               strwidth_cache_[s] = w;
+       }
        return w;
 }
 
 
+int GuiFontMetrics::width(QString const & ucs2) const
+{
+       return width(qstring_to_ucs4(ucs2));
+}
+
+
 int GuiFontMetrics::signedWidth(docstring const & s) const
 {
        if (s.empty())
@@ -140,12 +167,76 @@ int GuiFontMetrics::signedWidth(docstring const & s) const
                return width(s);
 }
 
+namespace {
+void setTextLayout(QTextLayout & tl, docstring const & s, QFont font,
+                   bool const rtl, double const wordspacing)
+{
+       tl.setText(toqstr(s));
+       font.setWordSpacing(wordspacing);
+       tl.setFont(font);
+       // Note that both setFlags and the enums are undocumented
+       tl.setFlags(rtl ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight);
+       tl.beginLayout();
+       tl.createLine();
+       tl.endLayout();
+}
+}
+
+
+int GuiFontMetrics::pos2x(docstring const & s, int const pos, bool const rtl,
+                          double const wordspacing) const
+{
+       QTextLayout tl;
+       QFont copy = font_;
+       copy.setWordSpacing(wordspacing);
+       setTextLayout(tl, s, font_, rtl, wordspacing);
+       return static_cast<int>(tl.lineForTextPosition(pos).cursorToX(pos));
+}
+
+
+int GuiFontMetrics::x2pos(docstring const & s, int & x, bool const rtl,
+                          double const wordspacing) const
+{
+       QTextLayout tl;
+       setTextLayout(tl, s, font_, rtl, wordspacing);
+       int pos = tl.lineForTextPosition(0).xToCursor(x);
+       // correct x value to the actual cursor position.
+       x = static_cast<int>(tl.lineForTextPosition(0).cursorToX(pos));
+       return pos;
+}
+
+
+bool GuiFontMetrics::breakAt(docstring & s, int & x, bool const rtl, bool const force) const
+{
+       if (s.empty())
+               return false;
+       QTextLayout tl;
+       tl.setText(toqstr(s));
+       tl.setFont(font_);
+       // Note that both setFlags and the enums are undocumented
+       tl.setFlags(rtl ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight);
+       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();
+       if (int(line.naturalTextWidth()) > x)
+               return false;
+       x = int(line.naturalTextWidth());
+       s = s.substr(0, line.textLength());
+       return true;
+}
+
 
 void GuiFontMetrics::rectText(docstring const & str,
        int & w, int & ascent, int & descent) const
 {
-       static int const d = 2;
-       w = width(str) + d * 2 + 2;
+       static int const d = Inset::TEXT_TO_INSET_OFFSET / 2;
+
+       w = width(str) + Inset::TEXT_TO_INSET_OFFSET;
        ascent = metrics_.ascent() + d;
        descent = metrics_.descent() + d;
 }
@@ -155,10 +246,8 @@ void GuiFontMetrics::rectText(docstring const & str,
 void GuiFontMetrics::buttonText(docstring const & str,
        int & w, int & ascent, int & descent) const
 {
-       static int const d = 3;
-       w = width(str) + d * 2 + 2;
-       ascent = metrics_.ascent() + d;
-       descent = metrics_.descent() + d;
+       rectText(str, w, ascent, descent);
+       w += Inset::TEXT_TO_INSET_OFFSET;
 }
 
 
@@ -174,45 +263,65 @@ Dimension const GuiFontMetrics::dimension(char_type c) const
 }
 
 
-void GuiFontMetrics::fillMetricsCache(char_type c) const
+GuiFontMetrics::AscendDescend const GuiFontMetrics::fillMetricsCache(
+               char_type c) const
 {
-       QRect const & r = metrics_.boundingRect(ucs4_to_qchar(c));
+       QRect r;
+       if (is_utf16(c))
+               r = metrics_.boundingRect(ucs4_to_qchar(c));
+       else
+               r = metrics_.boundingRect(toqstr(docstring(1, c)));
+
        AscendDescend ad = { -r.top(), r.bottom() + 1};
        // We could as well compute the width but this is not really
        // needed for now as it is done directly in width() below.
        metrics_cache_.insert(c, ad);
+
+       return ad;
 }
 
 
 int GuiFontMetrics::width(char_type c) const
 {
-       if (smallcaps_shape_)
-               return smallcapsWidth(ucs4_to_qchar(c));
+       int value = width_cache_.value(c, outOfLimitMetric);
+       if (value != outOfLimitMetric)
+               return value;
 
-       if (!width_cache_.contains(c)) {
-               width_cache_.insert(c, metrics_.width(ucs4_to_qchar(c)));
-       }
+       if (is_utf16(c))
+               value = metrics_.width(ucs4_to_qchar(c));
+       else
+               value = metrics_.width(toqstr(docstring(1, c)));
+
+       width_cache_.insert(c, value);
 
-       return width_cache_.value(c);
+       return value;
 }
 
 
 int GuiFontMetrics::ascent(char_type c) const
 {
-       if (!metrics_cache_.contains(c))
-               fillMetricsCache(c);
-
-       return metrics_cache_.value(c).ascent;
+       static AscendDescend const outOfLimitAD =
+               {outOfLimitMetric, outOfLimitMetric};
+       AscendDescend value = metrics_cache_.value(c, outOfLimitAD);
+       if (value.ascent != outOfLimitMetric)
+               return value.ascent;
+
+       value = fillMetricsCache(c);
+       return value.ascent;
 }
 
 
 int GuiFontMetrics::descent(char_type c) const
 {
-       if (!metrics_cache_.contains(c))
-               fillMetricsCache(c);
-
-       return metrics_cache_.value(c).descent;
+       static AscendDescend const outOfLimitAD =
+               {outOfLimitMetric, outOfLimitMetric};
+       AscendDescend value = metrics_cache_.value(c, outOfLimitAD);
+       if (value.descent != outOfLimitMetric)
+               return value.descent;
+
+       value = fillMetricsCache(c);
+       return value.descent;
 }
 
-} // frontend
-} // lyx
+} // namespace frontend
+} // namespace lyx