1 /****************************************************************************
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the QtGui module of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
40 ****************************************************************************/
43 #include "qtextformat.h"
44 #include "qtextformat_p.h"
45 #include "qtextengine_p.h"
46 #include "qabstracttextdocumentlayout.h"
47 #include "qtextlayout.h"
48 #include "qtextboundaryfinder.h"
49 #include "qvarlengtharray.h"
52 #include "qfontengine_p.h"
54 #include <private/qunicodetables_p.h>
55 #include "qtextdocument_p.h"
56 #include <qguiapplication.h>
63 // Helper class used in QTextEngine::itemize
64 // keep it out here to allow us to keep supporting various compilers.
67 Itemizer(const QString &string, const QScriptAnalysis *analysis, QScriptItemArray &items)
79 /// generate the script items
80 /// The caps parameter is used to choose the algoritm of splitting text and assiging roles to the textitems
81 void generate(int start, int length, QFont::Capitalization caps)
83 if ((int)caps == (int)QFont::SmallCaps)
84 generateScriptItemsSmallCaps(reinterpret_cast<const ushort *>(m_string.unicode()), start, length);
85 else if(caps == QFont::Capitalize)
86 generateScriptItemsCapitalize(start, length);
87 else if(caps != QFont::MixedCase) {
88 generateScriptItemsAndChangeCase(start, length,
89 caps == QFont::AllLowercase ? QScriptAnalysis::Lowercase : QScriptAnalysis::Uppercase);
92 generateScriptItems(start, length);
96 enum { MaxItemLength = 4096 };
98 void generateScriptItemsAndChangeCase(int start, int length, QScriptAnalysis::Flags flags)
100 generateScriptItems(start, length);
101 if (m_items.isEmpty()) // the next loop won't work in that case
103 QScriptItemArray::Iterator iter = m_items.end();
106 if (iter->analysis.flags < QScriptAnalysis::TabOrObject)
107 iter->analysis.flags = flags;
108 } while (iter->position > start);
111 void generateScriptItems(int start, int length)
115 const int end = start + length;
116 for (int i = start + 1; i < end; ++i) {
117 if ((m_analysis[i] == m_analysis[start])
118 && m_analysis[i].flags < QScriptAnalysis::SpaceTabOrObject
119 && i - start < MaxItemLength)
121 m_items.append(QScriptItem(start, m_analysis[start]));
124 m_items.append(QScriptItem(start, m_analysis[start]));
127 void generateScriptItemsCapitalize(int start, int length)
133 m_splitter = new QTextBoundaryFinder(QTextBoundaryFinder::Word,
134 m_string.constData(), m_string.length(),
135 /*buffer*/0, /*buffer size*/0);
137 m_splitter->setPosition(start);
138 QScriptAnalysis itemAnalysis = m_analysis[start];
140 if (m_splitter->boundaryReasons() & QTextBoundaryFinder::StartWord) {
141 itemAnalysis.flags = QScriptAnalysis::Uppercase;
142 m_splitter->toNextBoundary();
145 const int end = start + length;
146 for (int i = start + 1; i < end; ++i) {
148 bool atWordBoundary = false;
150 if (i == m_splitter->position()) {
151 if (m_splitter->boundaryReasons() & QTextBoundaryFinder::StartWord
152 && m_analysis[i].flags < QScriptAnalysis::TabOrObject)
153 atWordBoundary = true;
155 m_splitter->toNextBoundary();
158 if (m_analysis[i] == itemAnalysis
159 && m_analysis[i].flags < QScriptAnalysis::TabOrObject
161 && i - start < MaxItemLength)
164 m_items.append(QScriptItem(start, itemAnalysis));
166 itemAnalysis = m_analysis[start];
169 itemAnalysis.flags = QScriptAnalysis::Uppercase;
171 m_items.append(QScriptItem(start, itemAnalysis));
174 void generateScriptItemsSmallCaps(const ushort *uc, int start, int length)
178 bool lower = (QChar::category(uc[start]) == QChar::Letter_Lowercase);
179 const int end = start + length;
180 // split text into parts that are already uppercase and parts that are lowercase, and mark the latter to be uppercased later.
181 for (int i = start + 1; i < end; ++i) {
182 bool l = (QChar::category(uc[i]) == QChar::Letter_Lowercase);
183 if ((m_analysis[i] == m_analysis[start])
184 && m_analysis[i].flags < QScriptAnalysis::TabOrObject
186 && i - start < MaxItemLength)
188 m_items.append(QScriptItem(start, m_analysis[start]));
190 m_items.last().analysis.flags = QScriptAnalysis::SmallCaps;
195 m_items.append(QScriptItem(start, m_analysis[start]));
197 m_items.last().analysis.flags = QScriptAnalysis::SmallCaps;
200 const QString &m_string;
201 const QScriptAnalysis * const m_analysis;
202 QScriptItemArray &m_items;
203 QTextBoundaryFinder *m_splitter;
208 // ----------------------------------------------------------------------------
210 // The BiDi algorithm
212 // ----------------------------------------------------------------------------
215 #if (BIDI_DEBUG >= 1)
216 QT_BEGIN_INCLUDE_NAMESPACE
218 QT_END_INCLUDE_NAMESPACE
221 static const char *directions[] = {
222 "DirL", "DirR", "DirEN", "DirES", "DirET", "DirAN", "DirCS", "DirB", "DirS", "DirWS", "DirON",
223 "DirLRE", "DirLRO", "DirAL", "DirRLE", "DirRLO", "DirPDF", "DirNSM", "DirBN"
231 lastStrong = QChar::DirON;
232 last = QChar:: DirON;
235 QChar::Direction eor;
236 QChar::Direction lastStrong;
237 QChar::Direction last;
238 QChar::Direction dir;
241 enum { MaxBidiLevel = 61 };
243 struct QBidiControl {
244 inline QBidiControl(bool rtl)
245 : cCtx(0), base(rtl ? 1 : 0), level(rtl ? 1 : 0), override(false) {}
247 inline void embed(bool rtl, bool o = false) {
248 unsigned int toAdd = 1;
249 if((level%2 != 0) == rtl ) {
252 if (level + toAdd <= MaxBidiLevel) {
253 ctx[cCtx].level = level;
254 ctx[cCtx].override = override;
260 inline bool canPop() const { return cCtx != 0; }
264 level = ctx[cCtx].level;
265 override = ctx[cCtx].override;
268 inline QChar::Direction basicDirection() const {
269 return (base ? QChar::DirR : QChar:: DirL);
271 inline unsigned int baseLevel() const {
274 inline QChar::Direction direction() const {
275 return ((level%2) ? QChar::DirR : QChar:: DirL);
283 const unsigned int base;
289 static void appendItems(QScriptAnalysis *analysis, int &start, int &stop, const QBidiControl &control, QChar::Direction dir)
294 int level = control.level;
296 if(dir != QChar::DirON && !control.override) {
297 // add level of run (cases I1 & I2)
299 if(dir == QChar::DirL || dir == QChar::DirAN || dir == QChar::DirEN)
302 if(dir == QChar::DirR)
304 else if(dir == QChar::DirAN || dir == QChar::DirEN)
309 #if (BIDI_DEBUG >= 1)
310 qDebug("new run: dir=%s from %d, to %d level = %d override=%d", directions[dir], start, stop, level, control.override);
312 QScriptAnalysis *s = analysis + start;
313 const QScriptAnalysis *e = analysis + stop;
315 s->bidiLevel = level;
322 static QChar::Direction skipBoundryNeutrals(QScriptAnalysis *analysis,
323 const ushort *unicode, int length,
324 int &sor, int &eor, QBidiControl &control)
326 QChar::Direction dir = control.basicDirection();
327 int level = sor > 0 ? analysis[sor - 1].bidiLevel : control.level;
328 while (sor < length) {
329 dir = QChar::direction(unicode[sor]);
330 // Keep skipping DirBN as if it doesn't exist
331 if (dir != QChar::DirBN)
333 analysis[sor++].bidiLevel = level;
338 dir = control.basicDirection();
343 // creates the next QScript items.
344 static bool bidiItemize(QTextEngine *engine, QScriptAnalysis *analysis, QBidiControl &control)
346 bool rightToLeft = (control.basicDirection() == 1);
347 bool hasBidi = rightToLeft;
349 qDebug() << "bidiItemize: rightToLeft=" << rightToLeft << engine->layoutData->string;
356 int length = engine->layoutData->string.length();
358 const ushort *unicode = (const ushort *)engine->layoutData->string.unicode();
361 QChar::Direction dir = rightToLeft ? QChar::DirR : QChar::DirL;
364 QChar::Direction sdir = QChar::direction(*unicode);
365 if (sdir != QChar::DirL && sdir != QChar::DirR && sdir != QChar::DirEN && sdir != QChar::DirAN)
370 status.lastStrong = rightToLeft ? QChar::DirR : QChar::DirL;
371 status.last = status.lastStrong;
375 while (current <= length) {
377 QChar::Direction dirCurrent;
378 if (current == (int)length)
379 dirCurrent = control.basicDirection();
381 dirCurrent = QChar::direction(unicode[current]);
383 #if (BIDI_DEBUG >= 2)
384 // qDebug() << "pos=" << current << " dir=" << directions[dir]
385 // << " current=" << directions[dirCurrent] << " last=" << directions[status.last]
386 // << " eor=" << eor << '/' << directions[status.eor]
387 // << " sor=" << sor << " lastStrong="
388 // << directions[status.lastStrong]
389 // << " level=" << (int)control.level << " override=" << (bool)control.override;
394 // embedding and overrides (X1-X9 in the BiDi specs)
400 bool rtl = (dirCurrent == QChar::DirRLE || dirCurrent == QChar::DirRLO);
402 bool override = (dirCurrent == QChar::DirLRO || dirCurrent == QChar::DirRLO);
404 unsigned int level = control.level+1;
405 if ((level%2 != 0) == rtl) ++level;
406 if(level < MaxBidiLevel) {
408 appendItems(analysis, sor, eor, control, dir);
410 control.embed(rtl, override);
411 QChar::Direction edir = (rtl ? QChar::DirR : QChar::DirL);
412 dir = status.eor = edir;
413 status.lastStrong = edir;
419 if (control.canPop()) {
420 if (dir != control.direction()) {
422 appendItems(analysis, sor, eor, control, dir);
423 dir = control.direction();
426 appendItems(analysis, sor, eor, control, dir);
428 dir = QChar::DirON; status.eor = QChar::DirON;
429 status.last = control.direction();
430 if (control.override)
431 dir = control.direction();
434 status.lastStrong = control.direction();
441 if(dir == QChar::DirON)
446 eor = current; status.eor = QChar::DirL; break;
452 appendItems(analysis, sor, eor, control, dir);
453 status.eor = dir = skipBoundryNeutrals(analysis, unicode, length, sor, eor, control);
455 eor = current; status.eor = dir;
466 if(dir != QChar::DirL) {
467 //last stuff takes embedding dir
468 if(control.direction() == QChar::DirR) {
469 if(status.eor != QChar::DirR) {
471 appendItems(analysis, sor, eor, control, dir);
472 status.eor = QChar::DirON;
476 appendItems(analysis, sor, eor, control, dir);
477 status.eor = dir = skipBoundryNeutrals(analysis, unicode, length, sor, eor, control);
479 if(status.eor != QChar::DirL) {
480 appendItems(analysis, sor, eor, control, dir);
481 status.eor = QChar::DirON;
484 eor = current; status.eor = QChar::DirL; break;
488 eor = current; status.eor = QChar::DirL;
493 status.lastStrong = QChar::DirL;
498 if(dir == QChar::DirON) dir = QChar::DirR;
505 appendItems(analysis, sor, eor, control, dir);
509 dir = QChar::DirR; eor = current; status.eor = QChar::DirR; break;
518 if(status.eor != QChar::DirR && status.eor != QChar::DirAL) {
519 //last stuff takes embedding dir
520 if(control.direction() == QChar::DirR
521 || status.lastStrong == QChar::DirR || status.lastStrong == QChar::DirAL) {
522 appendItems(analysis, sor, eor, control, dir);
523 dir = QChar::DirR; status.eor = QChar::DirON;
527 appendItems(analysis, sor, eor, control, dir);
528 dir = QChar::DirR; status.eor = QChar::DirON;
531 eor = current; status.eor = QChar::DirR;
536 status.lastStrong = dirCurrent;
542 if (eor == current-1)
546 // if last strong was AL change EN to AN
547 if(status.lastStrong != QChar::DirAL) {
548 if(dir == QChar::DirON) {
549 if(status.lastStrong == QChar::DirL)
557 if (status.lastStrong == QChar::DirR || status.lastStrong == QChar::DirAL) {
558 appendItems(analysis, sor, eor, control, dir);
559 status.eor = QChar::DirON;
566 status.eor = dirCurrent;
572 appendItems(analysis, sor, eor, control, dir);
575 status.eor = QChar::DirEN;
576 dir = QChar::DirAN; break;
579 if(status.eor == QChar::DirEN || dir == QChar::DirAN) {
580 eor = current; break;
587 if(status.eor == QChar::DirR) {
590 appendItems(analysis, sor, eor, control, dir);
591 dir = QChar::DirON; status.eor = QChar::DirEN;
594 else if(status.eor == QChar::DirL ||
595 (status.eor == QChar::DirEN && status.lastStrong == QChar::DirL)) {
596 eor = current; status.eor = dirCurrent;
598 // numbers on both sides, neutrals get right to left direction
599 if(dir != QChar::DirL) {
600 appendItems(analysis, sor, eor, control, dir);
601 dir = QChar::DirON; status.eor = QChar::DirON;
604 appendItems(analysis, sor, eor, control, dir);
605 dir = QChar::DirON; status.eor = QChar::DirON;
608 eor = current; status.eor = dirCurrent;
618 dirCurrent = QChar::DirAN;
619 if(dir == QChar::DirON) dir = QChar::DirAN;
624 eor = current; status.eor = QChar::DirAN; break;
629 appendItems(analysis, sor, eor, control, dir);
633 dir = QChar::DirAN; status.eor = QChar::DirAN;
636 if(status.eor == QChar::DirAN) {
637 eor = current; break;
646 if(status.eor == QChar::DirR) {
649 appendItems(analysis, sor, eor, control, dir);
650 status.eor = QChar::DirAN;
652 } else if(status.eor == QChar::DirL ||
653 (status.eor == QChar::DirEN && status.lastStrong == QChar::DirL)) {
654 eor = current; status.eor = dirCurrent;
656 // numbers on both sides, neutrals get right to left direction
657 if(dir != QChar::DirL) {
658 appendItems(analysis, sor, eor, control, dir);
659 status.eor = QChar::DirON;
662 appendItems(analysis, sor, eor, control, dir);
663 status.eor = QChar::DirAN;
666 eor = current; status.eor = dirCurrent;
677 if(status.last == QChar::DirEN) {
678 dirCurrent = QChar::DirEN;
679 eor = current; status.eor = dirCurrent;
683 // boundary neutrals should be ignored
688 // ### what do we do with newline and paragraph separators that come to here?
691 // ### implement rule L1
700 //qDebug() << " after: dir=" << // dir << " current=" << dirCurrent << " last=" << status.last << " eor=" << status.eor << " lastStrong=" << status.lastStrong << " embedding=" << control.direction();
702 if(current >= (int)length) break;
704 // set status.last as needed.
719 status.last = dirCurrent;
722 status.last = QChar::DirON;
731 status.last = QChar::DirL;
735 status.last = QChar::DirR;
738 if (status.last == QChar::DirL) {
739 status.last = QChar::DirL;
744 status.last = dirCurrent;
750 #if (BIDI_DEBUG >= 1)
751 qDebug() << "reached end of line current=" << current << ", eor=" << eor;
753 eor = current - 1; // remove dummy char
756 appendItems(analysis, sor, eor, control, dir);
761 void QTextEngine::bidiReorder(int numItems, const quint8 *levels, int *visualOrder)
764 // first find highest and lowest levels
765 quint8 levelLow = 128;
766 quint8 levelHigh = 0;
768 while (i < numItems) {
769 //printf("level = %d\n", r->level);
770 if (levels[i] > levelHigh)
771 levelHigh = levels[i];
772 if (levels[i] < levelLow)
773 levelLow = levels[i];
777 // implements reordering of the line (L2 according to BiDi spec):
778 // L2. From the highest level found in the text to the lowest odd level on each line,
779 // reverse any contiguous sequence of characters that are at that level or higher.
781 // reversing is only done up to the lowest odd level
782 if(!(levelLow%2)) levelLow++;
784 #if (BIDI_DEBUG >= 1)
785 // qDebug() << "reorderLine: lineLow = " << (uint)levelLow << ", lineHigh = " << (uint)levelHigh;
788 int count = numItems - 1;
789 for (i = 0; i < numItems; i++)
792 while(levelHigh >= levelLow) {
795 while(i < count && levels[i] < levelHigh) i++;
797 while(i <= count && levels[i] >= levelHigh) i++;
801 //qDebug() << "reversing from " << start << " to " << end;
802 for(int j = 0; j < (end-start+1)/2; j++) {
803 int tmp = visualOrder[start+j];
804 visualOrder[start+j] = visualOrder[end-j];
805 visualOrder[end-j] = tmp;
813 #if (BIDI_DEBUG >= 1)
814 // qDebug() << "visual order is:";
815 // for (i = 0; i < numItems; i++)
816 // qDebug() << visualOrder[i];
820 QT_BEGIN_INCLUDE_NAMESPACE
822 #if defined(Q_WS_X11) || defined (Q_WS_QWS)
823 # include "qfontengine_ft_p.h"
824 #elif defined(Q_WS_MAC)
825 # include "qtextengine_mac.cpp"
828 #include <private/qharfbuzz_p.h>
830 QT_END_INCLUDE_NAMESPACE
832 // ask the font engine to find out which glyphs (as an index in the specific font) to use for the text in one item.
833 static bool stringToGlyphs(HB_ShaperItem *item, QGlyphLayout *glyphs, QFontEngine *fontEngine)
835 int nGlyphs = item->num_glyphs;
837 QTextEngine::ShaperFlags shaperFlags(QTextEngine::GlyphIndicesOnly);
838 if (item->item.bidiLevel % 2)
839 shaperFlags |= QTextEngine::RightToLeft;
841 bool result = fontEngine->stringToCMap(reinterpret_cast<const QChar *>(item->string + item->item.pos), item->item.length, glyphs, &nGlyphs, shaperFlags);
842 item->num_glyphs = nGlyphs;
843 glyphs->numGlyphs = nGlyphs;
847 // shape all the items that intersect with the line, taking tab widths into account to find out what text actually fits in the line.
848 void QTextEngine::shapeLine(const QScriptLine &line)
852 const int end = findItem(line.from + line.length - 1);
853 int item = findItem(line.from);
856 for (item = findItem(line.from); item <= end; ++item) {
857 QScriptItem &si = layoutData->items[item];
858 if (si.analysis.flags == QScriptAnalysis::Tab) {
860 si.width = calculateTabWidth(item, x);
864 if (first && si.position != line.from) { // that means our x position has to be offset
865 QGlyphLayout glyphs = shapedGlyphs(&si);
866 Q_ASSERT(line.from > si.position);
867 for (int i = line.from - si.position - 1; i >= 0; i--) {
868 x -= glyphs.effectiveAdvance(i);
877 #if !defined(QT_ENABLE_HARFBUZZ_FOR_MAC) && defined(Q_WS_MAC)
878 static bool enableHarfBuzz()
880 static enum { Yes, No, Unknown } status = Unknown;
882 if (status == Unknown) {
883 QByteArray v = qgetenv("QT_ENABLE_HARFBUZZ");
884 bool value = !v.isEmpty() && v != "0" && v != "false";
885 if (value) status = Yes;
888 return status == Yes;
892 void QTextEngine::shapeText(int item) const
894 Q_ASSERT(item < layoutData->items.size());
895 QScriptItem &si = layoutData->items[item];
900 #if defined(Q_WS_MAC)
901 #if !defined(QT_ENABLE_HARFBUZZ_FOR_MAC)
902 if (enableHarfBuzz()) {
904 QFontEngine *actualFontEngine = fontEngine(si, &si.ascent, &si.descent, &si.leading);
905 if (actualFontEngine->type() == QFontEngine::Multi)
906 actualFontEngine = static_cast<QFontEngineMulti *>(actualFontEngine)->engine(0);
908 HB_Face face = actualFontEngine->harfbuzzFace();
909 HB_Script script = (HB_Script) si.analysis.script;
910 if (face->supported_scripts[script])
911 shapeTextWithHarfbuzz(item);
914 #if !defined(QT_ENABLE_HARFBUZZ_FOR_MAC)
919 #elif defined(Q_WS_WINCE)
920 shapeTextWithCE(item);
922 shapeTextWithHarfbuzz(item);
929 QGlyphLayout glyphs = shapedGlyphs(&si);
931 QFont font = this->font(si);
932 bool letterSpacingIsAbsolute = font.d->letterSpacingIsAbsolute;
933 QFixed letterSpacing = font.d->letterSpacing;
934 QFixed wordSpacing = font.d->wordSpacing;
936 if (letterSpacingIsAbsolute && letterSpacing.value())
937 letterSpacing *= font.d->dpi / qt_defaultDpiY();
939 if (letterSpacing != 0) {
940 for (int i = 1; i < si.num_glyphs; ++i) {
941 if (glyphs.attributes[i].clusterStart) {
942 if (letterSpacingIsAbsolute)
943 glyphs.advances_x[i-1] += letterSpacing;
945 QFixed &advance = glyphs.advances_x[i-1];
946 advance += (letterSpacing - 100) * advance / 100;
950 if (letterSpacingIsAbsolute)
951 glyphs.advances_x[si.num_glyphs-1] += letterSpacing;
953 QFixed &advance = glyphs.advances_x[si.num_glyphs-1];
954 advance += (letterSpacing - 100) * advance / 100;
957 if (wordSpacing != 0) {
958 for (int i = 0; i < si.num_glyphs; ++i) {
959 if (glyphs.attributes[i].justification == HB_Space
960 || glyphs.attributes[i].justification == HB_Arabic_Space) {
961 // word spacing only gets added once to a consecutive run of spaces (see CSS spec)
962 if (i + 1 == si.num_glyphs
963 ||(glyphs.attributes[i+1].justification != HB_Space
964 && glyphs.attributes[i+1].justification != HB_Arabic_Space))
965 glyphs.advances_x[i] += wordSpacing;
970 for (int i = 0; i < si.num_glyphs; ++i)
971 si.width += glyphs.advances_x[i] * !glyphs.attributes[i].dontPrint;
974 static inline bool hasCaseChange(const QScriptItem &si)
976 return si.analysis.flags == QScriptAnalysis::SmallCaps ||
977 si.analysis.flags == QScriptAnalysis::Uppercase ||
978 si.analysis.flags == QScriptAnalysis::Lowercase;
981 #if defined(Q_WS_WINCE) //TODO
982 // set the glyph attributes heuristically. Assumes a 1 to 1 relationship between chars and glyphs
983 // and no reordering.
984 // also computes logClusters heuristically
985 static void heuristicSetGlyphAttributes(const QChar *uc, int length, QGlyphLayout *glyphs, unsigned short *logClusters, int num_glyphs)
987 // ### zeroWidth and justification are missing here!!!!!
989 Q_UNUSED(num_glyphs);
990 Q_ASSERT(num_glyphs <= length);
992 // qDebug("QScriptEngine::heuristicSetGlyphAttributes, num_glyphs=%d", item->num_glyphs);
995 for (int i = 0; i < length; i++) {
996 if (uc[i].isHighSurrogate() && i < length-1 && uc[i+1].isLowSurrogate()) {
997 logClusters[i] = glyph_pos;
998 logClusters[++i] = glyph_pos;
1000 logClusters[i] = glyph_pos;
1005 // first char in a run is never (treated as) a mark
1008 const bool symbolFont = false; // ####
1009 glyphs->attributes[0].mark = false;
1010 glyphs->attributes[0].clusterStart = true;
1011 glyphs->attributes[0].dontPrint = (!symbolFont && uc[0].unicode() == 0x00ad) || qIsControlChar(uc[0].unicode());
1014 int lastCat = QChar::category(uc[0].unicode());
1015 for (int i = 1; i < length; ++i) {
1016 if (logClusters[i] == pos)
1020 while (pos < logClusters[i]) {
1021 glyphs[pos].attributes = glyphs[pos-1].attributes;
1024 // hide soft-hyphens by default
1025 if ((!symbolFont && uc[i].unicode() == 0x00ad) || qIsControlChar(uc[i].unicode()))
1026 glyphs->attributes[pos].dontPrint = true;
1027 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(uc[i].unicode());
1028 int cat = prop->category;
1029 if (cat != QChar::Mark_NonSpacing) {
1030 glyphs->attributes[pos].mark = false;
1031 glyphs->attributes[pos].clusterStart = true;
1032 glyphs->attributes[pos].combiningClass = 0;
1033 cStart = logClusters[i];
1035 int cmb = prop->combiningClass;
1038 // Fix 0 combining classes
1039 if ((uc[pos].unicode() & 0xff00) == 0x0e00) {
1041 unsigned char col = uc[pos].cell();
1051 cmb = QChar::Combining_AboveRight;
1052 } else if (col == 0xb1 ||
1060 cmb = QChar::Combining_Above;
1061 } else if (col == 0xbc) {
1062 cmb = QChar::Combining_Below;
1067 glyphs->attributes[pos].mark = true;
1068 glyphs->attributes[pos].clusterStart = false;
1069 glyphs->attributes[pos].combiningClass = cmb;
1070 logClusters[i] = cStart;
1071 glyphs->advances_x[pos] = 0;
1072 glyphs->advances_y[pos] = 0;
1075 // one gets an inter character justification point if the current char is not a non spacing mark.
1076 // as then the current char belongs to the last one and one gets a space justification point
1077 // after the space char.
1078 if (lastCat == QChar::Separator_Space)
1079 glyphs->attributes[pos-1].justification = HB_Space;
1080 else if (cat != QChar::Mark_NonSpacing)
1081 glyphs->attributes[pos-1].justification = HB_Character;
1083 glyphs->attributes[pos-1].justification = HB_NoJustification;
1087 pos = logClusters[length-1];
1088 if (lastCat == QChar::Separator_Space)
1089 glyphs->attributes[pos].justification = HB_Space;
1091 glyphs->attributes[pos].justification = HB_Character;
1094 void QTextEngine::shapeTextWithCE(int item) const
1096 QScriptItem &si = layoutData->items[item];
1097 si.glyph_data_offset = layoutData->used;
1099 QFontEngine *fe = fontEngine(si, &si.ascent, &si.descent, &si.leading);
1101 QTextEngine::ShaperFlags flags;
1102 if (si.analysis.bidiLevel % 2)
1103 flags |= RightToLeft;
1104 if (option.useDesignMetrics())
1105 flags |= DesignMetrics;
1107 // pre-initialize char attributes
1111 const int len = length(item);
1112 int num_glyphs = length(item);
1113 const QChar *str = layoutData->string.unicode() + si.position;
1114 ushort upperCased[256];
1115 if (hasCaseChange(si)) {
1116 ushort *uc = upperCased;
1118 uc = new ushort[len];
1119 for (int i = 0; i < len; ++i) {
1120 if(si.analysis.flags == QScriptAnalysis::Lowercase)
1121 uc[i] = str[i].toLower().unicode();
1123 uc[i] = str[i].toUpper().unicode();
1125 str = reinterpret_cast<const QChar *>(uc);
1129 if (! ensureSpace(num_glyphs)) {
1130 // If str is converted to uppercase/lowercase form with a new buffer,
1131 // we need to delete that buffer before return for error
1132 const ushort *uc = reinterpret_cast<const ushort *>(str);
1133 if (hasCaseChange(si) && uc != upperCased)
1137 num_glyphs = layoutData->glyphLayout.numGlyphs - layoutData->used;
1139 QGlyphLayout g = availableGlyphs(&si);
1140 unsigned short *log_clusters = logClusters(&si);
1142 if (fe->stringToCMap(str,
1147 heuristicSetGlyphAttributes(str, len, &g, log_clusters, num_glyphs);
1152 si.num_glyphs = num_glyphs;
1154 layoutData->used += si.num_glyphs;
1156 const ushort *uc = reinterpret_cast<const ushort *>(str);
1157 if (hasCaseChange(si) && uc != upperCased)
1162 static inline void moveGlyphData(const QGlyphLayout &destination, const QGlyphLayout &source, int num)
1164 if (num > 0 && destination.glyphs != source.glyphs) {
1165 memmove(destination.glyphs, source.glyphs, num * sizeof(HB_Glyph));
1166 memmove(destination.attributes, source.attributes, num * sizeof(HB_GlyphAttributes));
1167 memmove(destination.advances_x, source.advances_x, num * sizeof(HB_Fixed));
1168 memmove(destination.offsets, source.offsets, num * sizeof(HB_FixedPoint));
1172 /// take the item from layoutData->items and
1173 void QTextEngine::shapeTextWithHarfbuzz(int item) const
1175 Q_ASSERT(sizeof(HB_Fixed) == sizeof(QFixed));
1176 Q_ASSERT(sizeof(HB_FixedPoint) == sizeof(QFixedPoint));
1178 QScriptItem &si = layoutData->items[item];
1180 si.glyph_data_offset = layoutData->used;
1182 QFontEngine *font = fontEngine(si, &si.ascent, &si.descent, &si.leading);
1184 bool kerningEnabled = this->font(si).d->kerning;
1186 HB_ShaperItem entire_shaper_item;
1187 qMemSet(&entire_shaper_item, 0, sizeof(entire_shaper_item));
1188 entire_shaper_item.string = reinterpret_cast<const HB_UChar16 *>(layoutData->string.constData());
1189 entire_shaper_item.stringLength = layoutData->string.length();
1190 entire_shaper_item.item.script = (HB_Script)si.analysis.script;
1191 entire_shaper_item.item.pos = si.position;
1192 entire_shaper_item.item.length = length(item);
1193 entire_shaper_item.item.bidiLevel = si.analysis.bidiLevel;
1195 HB_UChar16 upperCased[256]; // XXX what about making this 4096, so we don't have to extend it ever.
1196 if (hasCaseChange(si)) {
1197 HB_UChar16 *uc = upperCased;
1198 if (entire_shaper_item.item.length > 256)
1199 uc = new HB_UChar16[entire_shaper_item.item.length];
1200 for (uint i = 0; i < entire_shaper_item.item.length; ++i) {
1201 if(si.analysis.flags == QScriptAnalysis::Lowercase)
1202 uc[i] = QChar::toLower(entire_shaper_item.string[si.position + i]);
1204 uc[i] = QChar::toUpper(entire_shaper_item.string[si.position + i]);
1206 entire_shaper_item.item.pos = 0;
1207 entire_shaper_item.string = uc;
1208 entire_shaper_item.stringLength = entire_shaper_item.item.length;
1211 entire_shaper_item.shaperFlags = 0;
1212 if (!kerningEnabled)
1213 entire_shaper_item.shaperFlags |= HB_ShaperFlag_NoKerning;
1214 if (option.useDesignMetrics())
1215 entire_shaper_item.shaperFlags |= HB_ShaperFlag_UseDesignMetrics;
1217 entire_shaper_item.num_glyphs = qMax(layoutData->glyphLayout.numGlyphs - layoutData->used, int(entire_shaper_item.item.length));
1218 if (! ensureSpace(entire_shaper_item.num_glyphs)) {
1219 if (hasCaseChange(si))
1220 delete [] const_cast<HB_UChar16 *>(entire_shaper_item.string);
1223 QGlyphLayout initialGlyphs = availableGlyphs(&si).mid(0, entire_shaper_item.num_glyphs);
1225 if (!stringToGlyphs(&entire_shaper_item, &initialGlyphs, font)) {
1226 if (! ensureSpace(entire_shaper_item.num_glyphs)) {
1227 if (hasCaseChange(si))
1228 delete [] const_cast<HB_UChar16 *>(entire_shaper_item.string);
1231 initialGlyphs = availableGlyphs(&si).mid(0, entire_shaper_item.num_glyphs);
1233 if (!stringToGlyphs(&entire_shaper_item, &initialGlyphs, font)) {
1234 // ############ if this happens there's a bug in the fontengine
1235 if (hasCaseChange(si) && entire_shaper_item.string != upperCased)
1236 delete [] const_cast<HB_UChar16 *>(entire_shaper_item.string);
1241 // split up the item into parts that come from different font engines.
1242 QVarLengthArray<int> itemBoundaries(2);
1243 // k * 2 entries, array[k] == index in string, array[k + 1] == index in glyphs
1244 itemBoundaries[0] = entire_shaper_item.item.pos;
1245 itemBoundaries[1] = 0;
1247 if (font->type() == QFontEngine::Multi) {
1248 uint lastEngine = 0;
1249 int charIdx = entire_shaper_item.item.pos;
1250 const int stringEnd = charIdx + entire_shaper_item.item.length;
1251 for (quint32 i = 0; i < entire_shaper_item.num_glyphs; ++i, ++charIdx) {
1252 uint engineIdx = initialGlyphs.glyphs[i] >> 24;
1253 if (engineIdx != lastEngine && i > 0) {
1254 itemBoundaries.append(charIdx);
1255 itemBoundaries.append(i);
1257 lastEngine = engineIdx;
1258 if (HB_IsHighSurrogate(entire_shaper_item.string[charIdx])
1259 && charIdx < stringEnd - 1
1260 && HB_IsLowSurrogate(entire_shaper_item.string[charIdx + 1]))
1267 int remaining_glyphs = entire_shaper_item.num_glyphs;
1269 // for each item shape using harfbuzz and store the results in our layoutData's glyphs array.
1270 for (int k = 0; k < itemBoundaries.size(); k += 2) { // for the +2, see the comment at the definition of itemBoundaries
1272 HB_ShaperItem shaper_item = entire_shaper_item;
1274 shaper_item.item.pos = itemBoundaries[k];
1275 if (k < itemBoundaries.size() - 3) {
1276 shaper_item.item.length = itemBoundaries[k + 2] - shaper_item.item.pos;
1277 shaper_item.num_glyphs = itemBoundaries[k + 3] - itemBoundaries[k + 1];
1278 } else { // last combo in the list, avoid out of bounds access.
1279 shaper_item.item.length -= shaper_item.item.pos - entire_shaper_item.item.pos;
1280 shaper_item.num_glyphs -= itemBoundaries[k + 1];
1282 shaper_item.initialGlyphCount = shaper_item.num_glyphs;
1283 if (shaper_item.num_glyphs < shaper_item.item.length)
1284 shaper_item.num_glyphs = shaper_item.item.length;
1286 QFontEngine *actualFontEngine = font;
1288 if (font->type() == QFontEngine::Multi) {
1289 engineIdx = uint(availableGlyphs(&si).glyphs[glyph_pos] >> 24);
1291 actualFontEngine = static_cast<QFontEngineMulti *>(font)->engine(engineIdx);
1294 si.ascent = qMax(actualFontEngine->ascent(), si.ascent);
1295 si.descent = qMax(actualFontEngine->descent(), si.descent);
1296 si.leading = qMax(actualFontEngine->leading(), si.leading);
1298 shaper_item.font = actualFontEngine->harfbuzzFont();
1299 shaper_item.face = actualFontEngine->harfbuzzFace();
1301 shaper_item.glyphIndicesPresent = true;
1303 remaining_glyphs -= shaper_item.initialGlyphCount;
1306 if (! ensureSpace(glyph_pos + shaper_item.num_glyphs + remaining_glyphs)) {
1307 if (hasCaseChange(si))
1308 delete [] const_cast<HB_UChar16 *>(entire_shaper_item.string);
1312 const QGlyphLayout g = availableGlyphs(&si).mid(glyph_pos);
1313 if (shaper_item.num_glyphs > shaper_item.item.length)
1314 moveGlyphData(g.mid(shaper_item.num_glyphs), g.mid(shaper_item.initialGlyphCount), remaining_glyphs);
1316 shaper_item.glyphs = g.glyphs;
1317 shaper_item.attributes = g.attributes;
1318 shaper_item.advances = reinterpret_cast<HB_Fixed *>(g.advances_x);
1319 shaper_item.offsets = reinterpret_cast<HB_FixedPoint *>(g.offsets);
1321 if (shaper_item.glyphIndicesPresent) {
1322 for (hb_uint32 i = 0; i < shaper_item.initialGlyphCount; ++i)
1323 shaper_item.glyphs[i] &= 0x00ffffff;
1326 shaper_item.log_clusters = logClusters(&si) + shaper_item.item.pos - entire_shaper_item.item.pos;
1328 // qDebug(" .. num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs);
1329 } while (!qShapeItem(&shaper_item)); // this does the actual shaping via harfbuzz.
1331 QGlyphLayout g = availableGlyphs(&si).mid(glyph_pos, shaper_item.num_glyphs);
1332 moveGlyphData(g.mid(shaper_item.num_glyphs), g.mid(shaper_item.initialGlyphCount), remaining_glyphs);
1334 for (hb_uint32 i = 0; i < shaper_item.num_glyphs; ++i)
1335 g.glyphs[i] = g.glyphs[i] | (engineIdx << 24);
1337 for (hb_uint32 i = 0; i < shaper_item.item.length; ++i)
1338 shaper_item.log_clusters[i] += glyph_pos;
1340 if (kerningEnabled && !shaper_item.kerning_applied)
1341 font->doKerning(&g, option.useDesignMetrics() ? QFlag(QTextEngine::DesignMetrics) : QFlag(0));
1343 glyph_pos += shaper_item.num_glyphs;
1346 // qDebug(" -> item: script=%d num_glyphs=%d", shaper_item.script, shaper_item.num_glyphs);
1347 si.num_glyphs = glyph_pos;
1349 layoutData->used += si.num_glyphs;
1351 if (hasCaseChange(si) && entire_shaper_item.string != upperCased)
1352 delete [] const_cast<HB_UChar16 *>(entire_shaper_item.string);
1355 static void init(QTextEngine *e)
1357 e->ignoreBidi = false;
1358 e->cacheGlyphs = false;
1359 e->forceJustification = false;
1360 e->visualMovement = false;
1367 e->underlinePositions = 0;
1369 e->stackEngine = false;
1372 QTextEngine::QTextEngine()
1377 QTextEngine::QTextEngine(const QString &str, const QFont &f)
1384 QTextEngine::~QTextEngine()
1391 const HB_CharAttributes *QTextEngine::attributes() const
1393 if (layoutData && layoutData->haveCharAttributes)
1394 return (HB_CharAttributes *) layoutData->memory;
1397 if (! ensureSpace(layoutData->string.length()))
1400 QVarLengthArray<HB_ScriptItem> hbScriptItems(layoutData->items.size());
1402 for (int i = 0; i < layoutData->items.size(); ++i) {
1403 const QScriptItem &si = layoutData->items[i];
1404 hbScriptItems[i].pos = si.position;
1405 hbScriptItems[i].length = length(i);
1406 hbScriptItems[i].bidiLevel = si.analysis.bidiLevel;
1407 hbScriptItems[i].script = (HB_Script)si.analysis.script;
1410 qGetCharAttributes(reinterpret_cast<const HB_UChar16 *>(layoutData->string.constData()),
1411 layoutData->string.length(),
1412 hbScriptItems.data(), hbScriptItems.size(),
1413 (HB_CharAttributes *)layoutData->memory);
1416 layoutData->haveCharAttributes = true;
1417 return (HB_CharAttributes *) layoutData->memory;
1420 void QTextEngine::shape(int item) const
1422 if (layoutData->items[item].analysis.flags == QScriptAnalysis::Object) {
1424 if (block.docHandle()) {
1425 QTextFormat format = formats()->format(formatIndex(&layoutData->items[item]));
1426 docLayout()->resizeInlineObject(QTextInlineObject(item, const_cast<QTextEngine *>(this)),
1427 layoutData->items[item].position + block.position(), format);
1429 } else if (layoutData->items[item].analysis.flags == QScriptAnalysis::Tab) {
1430 // set up at least the ascent/descent/leading of the script item for the tab
1431 fontEngine(layoutData->items[item],
1432 &layoutData->items[item].ascent,
1433 &layoutData->items[item].descent,
1434 &layoutData->items[item].leading);
1440 static inline void releaseCachedFontEngine(QFontEngine *fontEngine)
1443 fontEngine->ref.deref();
1444 if (fontEngine->cache_count == 0 && fontEngine->ref == 0)
1449 void QTextEngine::invalidate()
1455 specialData->resolvedFormatIndices.clear();
1457 releaseCachedFontEngine(feCache.prevFontEngine);
1458 releaseCachedFontEngine(feCache.prevScaledFontEngine);
1462 void QTextEngine::clearLineData()
1467 void QTextEngine::validate() const
1471 layoutData = new LayoutData();
1472 if (block.docHandle()) {
1473 layoutData->string = block.text();
1474 if (option.flags() & QTextOption::ShowLineAndParagraphSeparators)
1475 layoutData->string += QLatin1Char(block.next().isValid() ? 0xb6 : 0x20);
1477 layoutData->string = text;
1479 if (specialData && specialData->preeditPosition != -1)
1480 layoutData->string.insert(specialData->preeditPosition, specialData->preeditText);
1483 void QTextEngine::itemize() const
1486 if (layoutData->items.size())
1489 int length = layoutData->string.length();
1492 #if defined(Q_WS_MAC) && !defined(QT_MAC_USE_COCOA)
1493 // ATSUI requires RTL flags to correctly identify the character stops.
1494 bool ignore = false;
1496 bool ignore = ignoreBidi;
1499 bool rtl = isRightToLeft();
1501 if (!ignore && !rtl) {
1503 const QChar *start = layoutData->string.unicode();
1504 const QChar * const end = start + length;
1505 while (start < end) {
1506 if (start->unicode() >= 0x590) {
1514 QVarLengthArray<QScriptAnalysis, 4096> scriptAnalysis(length);
1515 QScriptAnalysis *analysis = scriptAnalysis.data();
1517 QBidiControl control(rtl);
1520 memset(analysis, 0, length*sizeof(QScriptAnalysis));
1521 if (option.textDirection() == Qt::RightToLeft) {
1522 for (int i = 0; i < length; ++i)
1523 analysis[i].bidiLevel = 1;
1524 layoutData->hasBidi = true;
1527 layoutData->hasBidi = bidiItemize(const_cast<QTextEngine *>(this), analysis, control);
1530 const ushort *uc = reinterpret_cast<const ushort *>(layoutData->string.unicode());
1531 const ushort *e = uc + length;
1532 int lastScript = QUnicodeTables::Common;
1535 case QChar::ObjectReplacementCharacter:
1536 analysis->script = QUnicodeTables::Common;
1537 analysis->flags = QScriptAnalysis::Object;
1539 case QChar::LineSeparator:
1540 if (analysis->bidiLevel % 2)
1541 --analysis->bidiLevel;
1542 analysis->script = QUnicodeTables::Common;
1543 analysis->flags = QScriptAnalysis::LineOrParagraphSeparator;
1544 if (option.flags() & QTextOption::ShowLineAndParagraphSeparators)
1545 *const_cast<ushort*>(uc) = 0x21B5; // visual line separator
1548 analysis->script = QUnicodeTables::Common;
1549 analysis->flags = QScriptAnalysis::Tab;
1550 analysis->bidiLevel = control.baseLevel();
1554 if (option.flags() & QTextOption::ShowTabsAndSpaces) {
1555 analysis->script = QUnicodeTables::Common;
1556 analysis->flags = QScriptAnalysis::Space;
1557 analysis->bidiLevel = control.baseLevel();
1562 int script = QUnicodeTables::script(*uc);
1563 analysis->script = script == QUnicodeTables::Inherited ? lastScript : script;
1564 analysis->flags = QScriptAnalysis::None;
1567 lastScript = analysis->script;
1571 if (option.flags() & QTextOption::ShowLineAndParagraphSeparators) {
1572 (analysis-1)->flags = QScriptAnalysis::LineOrParagraphSeparator; // to exclude it from width
1575 Itemizer itemizer(layoutData->string, scriptAnalysis.data(), layoutData->items);
1577 const QTextDocumentPrivate *p = block.docHandle();
1579 SpecialData *s = specialData;
1581 QTextDocumentPrivate::FragmentIterator it = p->find(block.position());
1582 QTextDocumentPrivate::FragmentIterator end = p->find(block.position() + block.length() - 1); // -1 to omit the block separator char
1583 int format = it.value()->format;
1585 int prevPosition = 0;
1586 int position = prevPosition;
1588 const QTextFragmentData * const frag = it.value();
1589 if (it == end || format != frag->format) {
1590 if (s && position >= s->preeditPosition) {
1591 position += s->preeditText.length();
1594 Q_ASSERT(position <= length);
1595 itemizer.generate(prevPosition, position - prevPosition,
1596 formats()->charFormat(format).fontCapitalization());
1598 if (position < length)
1599 itemizer.generate(position, length - position,
1600 formats()->charFormat(format).fontCapitalization());
1603 format = frag->format;
1604 prevPosition = position;
1606 position += frag->size_array[0];
1610 itemizer.generate(0, length, static_cast<QFont::Capitalization> (fnt.d->capital));
1613 addRequiredBoundaries();
1614 resolveAdditionalFormats();
1617 bool QTextEngine::isRightToLeft() const
1619 switch (option.textDirection()) {
1620 case Qt::LeftToRight:
1622 case Qt::RightToLeft:
1629 // this places the cursor in the right position depending on the keyboard layout
1630 if (layoutData->string.isEmpty())
1631 return QGuiApplication::keyboardInputDirection() == Qt::RightToLeft;
1632 return layoutData->string.isRightToLeft();
1636 int QTextEngine::findItem(int strPos) const
1640 int right = layoutData->items.size()-1;
1641 while(left <= right) {
1642 int middle = ((right-left)/2)+left;
1643 if (strPos > layoutData->items[middle].position)
1645 else if(strPos < layoutData->items[middle].position)
1654 QFixed QTextEngine::width(int from, int len) const
1660 // qDebug("QTextEngine::width(from = %d, len = %d), numItems=%d, strleng=%d", from, len, items.size(), string.length());
1661 for (int i = 0; i < layoutData->items.size(); i++) {
1662 const QScriptItem *si = layoutData->items.constData() + i;
1663 int pos = si->position;
1664 int ilen = length(i);
1665 // qDebug("item %d: from %d len %d", i, pos, ilen);
1666 if (pos >= from + len)
1668 if (pos + ilen > from) {
1669 if (!si->num_glyphs)
1672 if (si->analysis.flags == QScriptAnalysis::Object) {
1675 } else if (si->analysis.flags == QScriptAnalysis::Tab) {
1676 w += calculateTabWidth(i, w);
1681 QGlyphLayout glyphs = shapedGlyphs(si);
1682 unsigned short *logClusters = this->logClusters(si);
1684 // fprintf(stderr, " logclusters:");
1685 // for (int k = 0; k < ilen; k++)
1686 // fprintf(stderr, " %d", logClusters[k]);
1687 // fprintf(stderr, "\n");
1688 // do the simple thing for now and give the first glyph in a cluster the full width, all other ones 0.
1689 int charFrom = from - pos;
1692 int glyphStart = logClusters[charFrom];
1693 if (charFrom > 0 && logClusters[charFrom-1] == glyphStart)
1694 while (charFrom < ilen && logClusters[charFrom] == glyphStart)
1696 if (charFrom < ilen) {
1697 glyphStart = logClusters[charFrom];
1698 int charEnd = from + len - 1 - pos;
1699 if (charEnd >= ilen)
1701 int glyphEnd = logClusters[charEnd];
1702 while (charEnd < ilen && logClusters[charEnd] == glyphEnd)
1704 glyphEnd = (charEnd == ilen) ? si->num_glyphs : logClusters[charEnd];
1706 // qDebug("char: start=%d end=%d / glyph: start = %d, end = %d", charFrom, charEnd, glyphStart, glyphEnd);
1707 for (int i = glyphStart; i < glyphEnd; i++)
1708 w += glyphs.advances_x[i] * !glyphs.attributes[i].dontPrint;
1712 // qDebug(" --> w= %d ", w);
1716 glyph_metrics_t QTextEngine::boundingBox(int from, int len) const
1722 for (int i = 0; i < layoutData->items.size(); i++) {
1723 const QScriptItem *si = layoutData->items.constData() + i;
1725 int pos = si->position;
1726 int ilen = length(i);
1727 if (pos > from + len)
1729 if (pos + ilen > from) {
1730 if (!si->num_glyphs)
1733 if (si->analysis.flags == QScriptAnalysis::Object) {
1734 gm.width += si->width;
1736 } else if (si->analysis.flags == QScriptAnalysis::Tab) {
1737 gm.width += calculateTabWidth(i, gm.width);
1741 unsigned short *logClusters = this->logClusters(si);
1742 QGlyphLayout glyphs = shapedGlyphs(si);
1744 // do the simple thing for now and give the first glyph in a cluster the full width, all other ones 0.
1745 int charFrom = from - pos;
1748 int glyphStart = logClusters[charFrom];
1749 if (charFrom > 0 && logClusters[charFrom-1] == glyphStart)
1750 while (charFrom < ilen && logClusters[charFrom] == glyphStart)
1752 if (charFrom < ilen) {
1753 QFontEngine *fe = fontEngine(*si);
1754 glyphStart = logClusters[charFrom];
1755 int charEnd = from + len - 1 - pos;
1756 if (charEnd >= ilen)
1758 int glyphEnd = logClusters[charEnd];
1759 while (charEnd < ilen && logClusters[charEnd] == glyphEnd)
1761 glyphEnd = (charEnd == ilen) ? si->num_glyphs : logClusters[charEnd];
1762 if (glyphStart <= glyphEnd ) {
1763 glyph_metrics_t m = fe->boundingBox(glyphs.mid(glyphStart, glyphEnd - glyphStart));
1764 gm.x = qMin(gm.x, m.x + gm.xoff);
1765 gm.y = qMin(gm.y, m.y + gm.yoff);
1766 gm.width = qMax(gm.width, m.width+gm.xoff);
1767 gm.height = qMax(gm.height, m.height+gm.yoff);
1777 glyph_metrics_t QTextEngine::tightBoundingBox(int from, int len) const
1783 for (int i = 0; i < layoutData->items.size(); i++) {
1784 const QScriptItem *si = layoutData->items.constData() + i;
1785 int pos = si->position;
1786 int ilen = length(i);
1787 if (pos > from + len)
1789 if (pos + len > from) {
1790 if (!si->num_glyphs)
1792 unsigned short *logClusters = this->logClusters(si);
1793 QGlyphLayout glyphs = shapedGlyphs(si);
1795 // do the simple thing for now and give the first glyph in a cluster the full width, all other ones 0.
1796 int charFrom = from - pos;
1799 int glyphStart = logClusters[charFrom];
1800 if (charFrom > 0 && logClusters[charFrom-1] == glyphStart)
1801 while (charFrom < ilen && logClusters[charFrom] == glyphStart)
1803 if (charFrom < ilen) {
1804 glyphStart = logClusters[charFrom];
1805 int charEnd = from + len - 1 - pos;
1806 if (charEnd >= ilen)
1808 int glyphEnd = logClusters[charEnd];
1809 while (charEnd < ilen && logClusters[charEnd] == glyphEnd)
1811 glyphEnd = (charEnd == ilen) ? si->num_glyphs : logClusters[charEnd];
1812 if (glyphStart <= glyphEnd ) {
1813 QFontEngine *fe = fontEngine(*si);
1814 glyph_metrics_t m = fe->tightBoundingBox(glyphs.mid(glyphStart, glyphEnd - glyphStart));
1815 gm.x = qMin(gm.x, m.x + gm.xoff);
1816 gm.y = qMin(gm.y, m.y + gm.yoff);
1817 gm.width = qMax(gm.width, m.width+gm.xoff);
1818 gm.height = qMax(gm.height, m.height+gm.yoff);
1828 QFont QTextEngine::font(const QScriptItem &si) const
1832 QTextCharFormat f = format(&si);
1835 if (block.docHandle() && block.docHandle()->layout()) {
1836 // Make sure we get the right dpi on printers
1837 QPaintDevice *pdev = block.docHandle()->layout()->paintDevice();
1839 font = QFont(font, pdev);
1841 font = font.resolve(fnt);
1843 QTextCharFormat::VerticalAlignment valign = f.verticalAlignment();
1844 if (valign == QTextCharFormat::AlignSuperScript || valign == QTextCharFormat::AlignSubScript) {
1845 if (font.pointSize() != -1)
1846 font.setPointSize((font.pointSize() * 2) / 3);
1848 font.setPixelSize((font.pixelSize() * 2) / 3);
1852 if (si.analysis.flags == QScriptAnalysis::SmallCaps)
1853 font = font.d->smallCapsFont();
1858 QTextEngine::FontEngineCache::FontEngineCache()
1863 //we cache the previous results of this function, as calling it numerous times with the same effective
1864 //input is common (and hard to cache at a higher level)
1865 QFontEngine *QTextEngine::fontEngine(const QScriptItem &si, QFixed *ascent, QFixed *descent, QFixed *leading) const
1867 QFontEngine *engine = 0;
1868 QFontEngine *scaledEngine = 0;
1869 int script = si.analysis.script;
1873 if (feCache.prevFontEngine && feCache.prevPosition == si.position && feCache.prevLength == length(&si) && feCache.prevScript == script) {
1874 engine = feCache.prevFontEngine;
1875 scaledEngine = feCache.prevScaledFontEngine;
1877 QTextCharFormat f = format(&si);
1880 if (block.docHandle() && block.docHandle()->layout()) {
1881 // Make sure we get the right dpi on printers
1882 QPaintDevice *pdev = block.docHandle()->layout()->paintDevice();
1884 font = QFont(font, pdev);
1886 font = font.resolve(fnt);
1888 engine = font.d->engineForScript(script);
1889 QTextCharFormat::VerticalAlignment valign = f.verticalAlignment();
1890 if (valign == QTextCharFormat::AlignSuperScript || valign == QTextCharFormat::AlignSubScript) {
1891 if (font.pointSize() != -1)
1892 font.setPointSize((font.pointSize() * 2) / 3);
1894 font.setPixelSize((font.pixelSize() * 2) / 3);
1895 scaledEngine = font.d->engineForScript(script);
1897 feCache.prevFontEngine = engine;
1900 feCache.prevScaledFontEngine = scaledEngine;
1902 scaledEngine->ref.ref();
1903 feCache.prevScript = script;
1904 feCache.prevPosition = si.position;
1905 feCache.prevLength = length(&si);
1908 if (feCache.prevFontEngine && feCache.prevScript == script && feCache.prevPosition == -1)
1909 engine = feCache.prevFontEngine;
1911 engine = font.d->engineForScript(script);
1912 feCache.prevFontEngine = engine;
1915 feCache.prevScript = script;
1916 feCache.prevPosition = -1;
1917 feCache.prevLength = -1;
1918 feCache.prevScaledFontEngine = 0;
1922 if (si.analysis.flags == QScriptAnalysis::SmallCaps) {
1923 QFontPrivate *p = font.d->smallCapsFontPrivate();
1924 scaledEngine = p->engineForScript(script);
1928 *ascent = engine->ascent();
1929 *descent = engine->descent();
1930 *leading = engine->leading();
1934 return scaledEngine;
1938 struct QJustificationPoint {
1940 QFixed kashidaWidth;
1942 QFontEngine *fontEngine;
1945 Q_DECLARE_TYPEINFO(QJustificationPoint, Q_PRIMITIVE_TYPE);
1947 static void set(QJustificationPoint *point, int type, const QGlyphLayout &glyph, QFontEngine *fe)
1950 point->glyph = glyph;
1951 point->fontEngine = fe;
1953 if (type >= HB_Arabic_Normal) {
1954 QChar ch(0x640); // Kashida character
1955 QGlyphLayoutArray<8> glyphs;
1957 fe->stringToCMap(&ch, 1, &glyphs, &nglyphs, 0);
1958 if (glyphs.glyphs[0] && glyphs.advances_x[0] != 0) {
1959 point->kashidaWidth = glyphs.advances_x[0];
1961 point->type = HB_NoJustification;
1962 point->kashidaWidth = 0;
1968 void QTextEngine::justify(const QScriptLine &line)
1970 // qDebug("justify: line.gridfitted = %d, line.justified=%d", line.gridfitted, line.justified);
1971 if (line.gridfitted && line.justified)
1974 if (!line.gridfitted) {
1975 // redo layout in device metrics, then adjust
1976 const_cast<QScriptLine &>(line).gridfitted = true;
1979 if ((option.alignment() & Qt::AlignHorizontal_Mask) != Qt::AlignJustify)
1984 if (!forceJustification) {
1985 int end = line.from + (int)line.length;
1986 if (end == layoutData->string.length())
1987 return; // no justification at end of paragraph
1988 if (end && layoutData->items[findItem(end-1)].analysis.flags == QScriptAnalysis::LineOrParagraphSeparator)
1989 return; // no justification at the end of an explicitly separated line
1995 // don't include trailing white spaces when doing justification
1996 int line_length = line.length;
1997 const HB_CharAttributes *a = attributes();
2001 while (line_length && a[line_length-1].whiteSpace)
2003 // subtract one char more, as we can't justfy after the last character
2009 int firstItem = findItem(line.from);
2010 int nItems = findItem(line.from + line_length - 1) - firstItem + 1;
2012 QVarLengthArray<QJustificationPoint> justificationPoints;
2014 // qDebug("justifying from %d len %d, firstItem=%d, nItems=%d (%s)", line.from, line_length, firstItem, nItems, layoutData->string.mid(line.from, line_length).toUtf8().constData());
2015 QFixed minKashida = 0x100000;
2017 // we need to do all shaping before we go into the next loop, as we there
2018 // store pointers to the glyph data that could get reallocated by the shaping
2020 for (int i = 0; i < nItems; ++i) {
2021 QScriptItem &si = layoutData->items[firstItem + i];
2023 shape(firstItem + i);
2026 for (int i = 0; i < nItems; ++i) {
2027 QScriptItem &si = layoutData->items[firstItem + i];
2029 int kashida_type = HB_Arabic_Normal;
2030 int kashida_pos = -1;
2032 int start = qMax(line.from - si.position, 0);
2033 int end = qMin(line.from + line_length - (int)si.position, length(firstItem+i));
2035 unsigned short *log_clusters = logClusters(&si);
2037 int gs = log_clusters[start];
2038 int ge = (end == length(firstItem+i) ? si.num_glyphs : log_clusters[end]);
2040 const QGlyphLayout g = shapedGlyphs(&si);
2042 for (int i = gs; i < ge; ++i) {
2043 g.justifications[i].type = QGlyphJustification::JustifyNone;
2044 g.justifications[i].nKashidas = 0;
2045 g.justifications[i].space_18d6 = 0;
2047 justificationPoints.resize(nPoints+3);
2048 int justification = g.attributes[i].justification;
2050 switch(justification) {
2051 case HB_NoJustification:
2055 case HB_Arabic_Space :
2056 if (kashida_pos >= 0) {
2057 // qDebug("kashida position at %d in word", kashida_pos);
2058 set(&justificationPoints[nPoints], kashida_type, g.mid(kashida_pos), fontEngine(si));
2059 if (justificationPoints[nPoints].kashidaWidth > 0) {
2060 minKashida = qMin(minKashida, justificationPoints[nPoints].kashidaWidth);
2061 maxJustify = qMax(maxJustify, justificationPoints[nPoints].type);
2066 kashida_type = HB_Arabic_Normal;
2069 set(&justificationPoints[nPoints++], justification, g.mid(i), fontEngine(si));
2070 maxJustify = qMax(maxJustify, justification);
2072 case HB_Arabic_Normal :
2073 case HB_Arabic_Waw :
2074 case HB_Arabic_BaRa :
2075 case HB_Arabic_Alef :
2076 case HB_Arabic_HaaDal :
2077 case HB_Arabic_Seen :
2078 case HB_Arabic_Kashida :
2079 if (justification >= kashida_type) {
2081 kashida_type = justification;
2085 if (kashida_pos >= 0) {
2086 set(&justificationPoints[nPoints], kashida_type, g.mid(kashida_pos), fontEngine(si));
2087 if (justificationPoints[nPoints].kashidaWidth > 0) {
2088 minKashida = qMin(minKashida, justificationPoints[nPoints].kashidaWidth);
2089 maxJustify = qMax(maxJustify, justificationPoints[nPoints].type);
2095 QFixed leading = leadingSpaceWidth(line);
2096 QFixed need = line.width - line.textWidth - leading;
2098 // line overflows already!
2099 const_cast<QScriptLine &>(line).justified = true;
2103 // qDebug("doing justification: textWidth=%x, requested=%x, maxJustify=%d", line.textWidth.value(), line.width.value(), maxJustify);
2104 // qDebug(" minKashida=%f, need=%f", minKashida.toReal(), need.toReal());
2106 // distribute in priority order
2107 if (maxJustify >= HB_Arabic_Normal) {
2108 while (need >= minKashida) {
2109 for (int type = maxJustify; need >= minKashida && type >= HB_Arabic_Normal; --type) {
2110 for (int i = 0; need >= minKashida && i < nPoints; ++i) {
2111 if (justificationPoints[i].type == type && justificationPoints[i].kashidaWidth <= need) {
2112 justificationPoints[i].glyph.justifications->nKashidas++;
2114 justificationPoints[i].glyph.justifications->space_18d6 += justificationPoints[i].kashidaWidth.value();
2115 need -= justificationPoints[i].kashidaWidth;
2116 // qDebug("adding kashida type %d with width %x, neednow %x", type, justificationPoints[i].kashidaWidth, need.value());
2122 Q_ASSERT(need >= 0);
2126 maxJustify = qMin(maxJustify, (int)HB_Space);
2127 for (int type = maxJustify; need != 0 && type > 0; --type) {
2129 for (int i = 0; i < nPoints; ++i) {
2130 if (justificationPoints[i].type == type)
2133 // qDebug("number of points for justification type %d: %d", type, n);
2139 for (int i = 0; i < nPoints; ++i) {
2140 if (justificationPoints[i].type == type) {
2141 QFixed add = need/n;
2142 // qDebug("adding %x to glyph %x", add.value(), justificationPoints[i].glyph->glyph);
2143 justificationPoints[i].glyph.justifications[0].space_18d6 = add.value();
2152 const_cast<QScriptLine &>(line).justified = true;
2155 void QScriptLine::setDefaultHeight(QTextEngine *eng)
2160 if (eng->block.docHandle() && eng->block.docHandle()->layout()) {
2161 f = eng->block.charFormat().font();
2162 // Make sure we get the right dpi on printers
2163 QPaintDevice *pdev = eng->block.docHandle()->layout()->paintDevice();
2166 e = f.d->engineForScript(QUnicodeTables::Common);
2168 e = eng->fnt.d->engineForScript(QUnicodeTables::Common);
2171 QFixed other_ascent = e->ascent();
2172 QFixed other_descent = e->descent();
2173 QFixed other_leading = e->leading();
2174 leading = qMax(leading + ascent, other_leading + other_ascent) - qMax(ascent, other_ascent);
2175 ascent = qMax(ascent, other_ascent);
2176 descent = qMax(descent, other_descent);
2179 QTextEngine::LayoutData::LayoutData()
2183 memory_on_stack = false;
2186 layoutState = LayoutEmpty;
2187 haveCharAttributes = false;
2189 available_glyphs = 0;
2192 QTextEngine::LayoutData::LayoutData(const QString &str, void **stack_memory, int _allocated)
2195 allocated = _allocated;
2197 int space_charAttributes = sizeof(HB_CharAttributes)*string.length()/sizeof(void*) + 1;
2198 int space_logClusters = sizeof(unsigned short)*string.length()/sizeof(void*) + 1;
2199 available_glyphs = ((int)allocated - space_charAttributes - space_logClusters)*(int)sizeof(void*)/(int)QGlyphLayout::spaceNeededForGlyphLayout(1);
2201 if (available_glyphs < str.length()) {
2202 // need to allocate on the heap
2205 memory_on_stack = false;
2209 memory_on_stack = true;
2210 memory = stack_memory;
2211 logClustersPtr = (unsigned short *)(memory + space_charAttributes);
2213 void *m = memory + space_charAttributes + space_logClusters;
2214 glyphLayout = QGlyphLayout(reinterpret_cast<char *>(m), str.length());
2215 glyphLayout.clear();
2216 memset(memory, 0, space_charAttributes*sizeof(void *));
2220 layoutState = LayoutEmpty;
2221 haveCharAttributes = false;
2224 QTextEngine::LayoutData::~LayoutData()
2226 if (!memory_on_stack)
2231 bool QTextEngine::LayoutData::reallocate(int totalGlyphs)
2233 Q_ASSERT(totalGlyphs >= glyphLayout.numGlyphs);
2234 if (memory_on_stack && available_glyphs >= totalGlyphs) {
2235 glyphLayout.grow(glyphLayout.data(), totalGlyphs);
2239 int space_charAttributes = sizeof(HB_CharAttributes)*string.length()/sizeof(void*) + 1;
2240 int space_logClusters = sizeof(unsigned short)*string.length()/sizeof(void*) + 1;
2241 int space_glyphs = QGlyphLayout::spaceNeededForGlyphLayout(totalGlyphs)/sizeof(void*) + 2;
2243 int newAllocated = space_charAttributes + space_glyphs + space_logClusters;
2244 // These values can be negative if the length of string/glyphs causes overflow,
2245 // we can't layout such a long string all at once, so return false here to
2246 // indicate there is a failure
2247 if (space_charAttributes < 0 || space_logClusters < 0 || space_glyphs < 0 || newAllocated < allocated) {
2248 layoutState = LayoutFailed;
2252 void **newMem = memory;
2253 newMem = (void **)::realloc(memory_on_stack ? 0 : memory, newAllocated*sizeof(void *));
2255 layoutState = LayoutFailed;
2258 if (memory_on_stack)
2259 memcpy(newMem, memory, allocated*sizeof(void *));
2261 memory_on_stack = false;
2264 m += space_charAttributes;
2265 logClustersPtr = (unsigned short *) m;
2266 m += space_logClusters;
2268 const int space_preGlyphLayout = space_charAttributes + space_logClusters;
2269 if (allocated < space_preGlyphLayout)
2270 memset(memory + allocated, 0, (space_preGlyphLayout - allocated)*sizeof(void *));
2272 glyphLayout.grow(reinterpret_cast<char *>(m), totalGlyphs);
2274 allocated = newAllocated;
2278 // grow to the new size, copying the existing data to the new layout
2279 void QGlyphLayout::grow(char *address, int totalGlyphs)
2281 QGlyphLayout oldLayout(address, numGlyphs);
2282 QGlyphLayout newLayout(address, totalGlyphs);
2285 // move the existing data
2286 memmove(newLayout.attributes, oldLayout.attributes, numGlyphs * sizeof(HB_GlyphAttributes));
2287 memmove(newLayout.justifications, oldLayout.justifications, numGlyphs * sizeof(QGlyphJustification));
2288 memmove(newLayout.advances_y, oldLayout.advances_y, numGlyphs * sizeof(QFixed));
2289 memmove(newLayout.advances_x, oldLayout.advances_x, numGlyphs * sizeof(QFixed));
2290 memmove(newLayout.glyphs, oldLayout.glyphs, numGlyphs * sizeof(HB_Glyph));
2293 // clear the new data
2294 newLayout.clear(numGlyphs);
2299 void QTextEngine::freeMemory()
2305 layoutData->used = 0;
2306 layoutData->hasBidi = false;
2307 layoutData->layoutState = LayoutEmpty;
2308 layoutData->haveCharAttributes = false;
2310 for (int i = 0; i < lines.size(); ++i) {
2311 lines[i].justified = 0;
2312 lines[i].gridfitted = 0;
2316 int QTextEngine::formatIndex(const QScriptItem *si) const
2318 if (specialData && !specialData->resolvedFormatIndices.isEmpty())
2319 return specialData->resolvedFormatIndices.at(si - &layoutData->items[0]);
2320 QTextDocumentPrivate *p = block.docHandle();
2323 int pos = si->position;
2324 if (specialData && si->position >= specialData->preeditPosition) {
2325 if (si->position < specialData->preeditPosition + specialData->preeditText.length())
2326 pos = qMax(specialData->preeditPosition - 1, 0);
2328 pos -= specialData->preeditText.length();
2330 QTextDocumentPrivate::FragmentIterator it = p->find(block.position() + pos);
2331 return it.value()->format;
2335 QTextCharFormat QTextEngine::format(const QScriptItem *si) const
2337 QTextCharFormat format;
2338 const QTextFormatCollection *formats = 0;
2339 if (block.docHandle()) {
2340 formats = this->formats();
2341 format = formats->charFormat(formatIndex(si));
2343 if (specialData && specialData->resolvedFormatIndices.isEmpty()) {
2344 int end = si->position + length(si);
2345 for (int i = 0; i < specialData->addFormats.size(); ++i) {
2346 const QTextLayout::FormatRange &r = specialData->addFormats.at(i);
2347 if (r.start <= si->position && r.start + r.length >= end) {
2348 if (!specialData->addFormatIndices.isEmpty())
2349 format.merge(formats->format(specialData->addFormatIndices.at(i)));
2351 format.merge(r.format);
2358 void QTextEngine::addRequiredBoundaries() const
2361 for (int i = 0; i < specialData->addFormats.size(); ++i) {
2362 const QTextLayout::FormatRange &r = specialData->addFormats.at(i);
2363 setBoundary(r.start);
2364 setBoundary(r.start + r.length);
2365 //qDebug("adding boundaries %d %d", r.start, r.start+r.length);
2370 bool QTextEngine::atWordSeparator(int position) const
2372 const QChar c = layoutData->string.at(position);
2373 switch (c.toLatin1()) {
2410 bool QTextEngine::atSpace(int position) const
2412 const QChar c = layoutData->string.at(position);
2414 return c == QLatin1Char(' ')
2416 || c == QChar::LineSeparator
2417 || c == QLatin1Char('\t')
2422 void QTextEngine::indexAdditionalFormats()
2424 if (!block.docHandle())
2427 specialData->addFormatIndices.resize(specialData->addFormats.count());
2428 QTextFormatCollection * const formats = this->formats();
2430 for (int i = 0; i < specialData->addFormats.count(); ++i) {
2431 specialData->addFormatIndices[i] = formats->indexForFormat(specialData->addFormats.at(i).format);
2432 specialData->addFormats[i].format = QTextCharFormat();
2436 /* These two helper functions are used to determine whether we need to insert a ZWJ character
2437 between the text that gets truncated and the ellipsis. This is important to get
2438 correctly shaped results for arabic text.
2440 static inline bool nextCharJoins(const QString &string, int pos)
2442 while (pos < string.length() && string.at(pos).category() == QChar::Mark_NonSpacing)
2444 if (pos == string.length())
2446 return string.at(pos).joining() != QChar::OtherJoining;
2449 static inline bool prevCharJoins(const QString &string, int pos)
2451 while (pos > 0 && string.at(pos - 1).category() == QChar::Mark_NonSpacing)
2455 QChar::Joining joining = string.at(pos - 1).joining();
2456 return (joining == QChar::Dual || joining == QChar::Center);
2459 QString QTextEngine::elidedText(Qt::TextElideMode mode, const QFixed &width, int flags) const
2461 // qDebug() << "elidedText; available width" << width.toReal() << "text width:" << this->width(0, layoutData->string.length()).toReal();
2463 if (flags & Qt::TextShowMnemonic) {
2465 HB_CharAttributes *attributes = const_cast<HB_CharAttributes *>(this->attributes());
2468 for (int i = 0; i < layoutData->items.size(); ++i) {
2469 QScriptItem &si = layoutData->items[i];
2473 unsigned short *logClusters = this->logClusters(&si);
2474 QGlyphLayout glyphs = shapedGlyphs(&si);
2476 const int end = si.position + length(&si);
2477 for (int i = si.position; i < end - 1; ++i) {
2478 if (layoutData->string.at(i) == QLatin1Char('&')) {
2479 const int gp = logClusters[i - si.position];
2480 glyphs.attributes[gp].dontPrint = true;
2481 attributes[i + 1].charStop = false;
2482 attributes[i + 1].whiteSpace = false;
2483 attributes[i + 1].lineBreakType = HB_NoBreak;
2484 if (layoutData->string.at(i + 1) == QLatin1Char('&'))
2493 if (mode == Qt::ElideNone
2494 || this->width(0, layoutData->string.length()) <= width
2495 || layoutData->string.length() <= 1)
2496 return layoutData->string;
2498 QFixed ellipsisWidth;
2499 QString ellipsisText;
2501 QChar ellipsisChar(0x2026);
2503 QFontEngine *fe = fnt.d->engineForScript(QUnicodeTables::Common);
2505 QGlyphLayoutArray<1> ellipsisGlyph;
2507 QFontEngine *feForEllipsis = (fe->type() == QFontEngine::Multi)
2508 ? static_cast<QFontEngineMulti *>(fe)->engine(0)
2511 if (feForEllipsis->type() == QFontEngine::Mac)
2514 // the lookup can be really slow when we use XLFD fonts
2515 if (feForEllipsis->type() != QFontEngine::XLFD
2516 && feForEllipsis->canRender(&ellipsisChar, 1)) {
2518 feForEllipsis->stringToCMap(&ellipsisChar, 1, &ellipsisGlyph, &nGlyphs, 0);
2522 if (ellipsisGlyph.glyphs[0]) {
2523 ellipsisWidth = ellipsisGlyph.advances_x[0];
2524 ellipsisText = ellipsisChar;
2526 QString dotDotDot(QLatin1String("..."));
2528 QGlyphLayoutArray<3> glyphs;
2530 if (!fe->stringToCMap(dotDotDot.constData(), 3, &glyphs, &nGlyphs, 0))
2531 // should never happen...
2532 return layoutData->string;
2533 for (int i = 0; i < nGlyphs; ++i)
2534 ellipsisWidth += glyphs.advances_x[i];
2535 ellipsisText = dotDotDot;
2539 const QFixed availableWidth = width - ellipsisWidth;
2540 if (availableWidth < 0)
2543 const HB_CharAttributes *attributes = this->attributes();
2547 if (mode == Qt::ElideRight) {
2548 QFixed currentWidth;
2556 while (nextBreak < layoutData->string.length() && !attributes[nextBreak].charStop)
2559 currentWidth += this->width(pos, nextBreak - pos);
2560 } while (nextBreak < layoutData->string.length()
2561 && currentWidth < availableWidth);
2563 if (nextCharJoins(layoutData->string, pos))
2564 ellipsisText.prepend(QChar(0x200d) /* ZWJ */);
2566 return layoutData->string.left(pos) + ellipsisText;
2567 } else if (mode == Qt::ElideLeft) {
2568 QFixed currentWidth;
2570 int nextBreak = layoutData->string.length();
2576 while (nextBreak > 0 && !attributes[nextBreak].charStop)
2579 currentWidth += this->width(nextBreak, pos - nextBreak);
2580 } while (nextBreak > 0
2581 && currentWidth < availableWidth);
2583 if (prevCharJoins(layoutData->string, pos))
2584 ellipsisText.append(QChar(0x200d) /* ZWJ */);
2586 return ellipsisText + layoutData->string.mid(pos);
2587 } else if (mode == Qt::ElideMiddle) {
2592 int nextLeftBreak = 0;
2594 int rightPos = layoutData->string.length();
2595 int nextRightBreak = layoutData->string.length();
2598 leftPos = nextLeftBreak;
2599 rightPos = nextRightBreak;
2602 while (nextLeftBreak < layoutData->string.length() && !attributes[nextLeftBreak].charStop)
2606 while (nextRightBreak > 0 && !attributes[nextRightBreak].charStop)
2609 leftWidth += this->width(leftPos, nextLeftBreak - leftPos);
2610 rightWidth += this->width(nextRightBreak, rightPos - nextRightBreak);
2611 } while (nextLeftBreak < layoutData->string.length()
2612 && nextRightBreak > 0
2613 && leftWidth + rightWidth < availableWidth);
2615 if (nextCharJoins(layoutData->string, leftPos))
2616 ellipsisText.prepend(QChar(0x200d) /* ZWJ */);
2617 if (prevCharJoins(layoutData->string, rightPos))
2618 ellipsisText.append(QChar(0x200d) /* ZWJ */);
2620 return layoutData->string.left(leftPos) + ellipsisText + layoutData->string.mid(rightPos);
2623 return layoutData->string;
2626 void QTextEngine::setBoundary(int strPos) const
2628 if (strPos <= 0 || strPos >= layoutData->string.length())
2631 int itemToSplit = 0;
2632 while (itemToSplit < layoutData->items.size() && layoutData->items.at(itemToSplit).position <= strPos)
2635 if (layoutData->items.at(itemToSplit).position == strPos) {
2636 // already a split at the requested position
2639 splitItem(itemToSplit, strPos - layoutData->items.at(itemToSplit).position);
2642 void QTextEngine::splitItem(int item, int pos) const
2647 layoutData->items.insert(item + 1, layoutData->items[item]);
2648 QScriptItem &oldItem = layoutData->items[item];
2649 QScriptItem &newItem = layoutData->items[item+1];
2650 newItem.position += pos;
2652 if (oldItem.num_glyphs) {
2653 // already shaped, break glyphs aswell
2654 int breakGlyph = logClusters(&oldItem)[pos];
2656 newItem.num_glyphs = oldItem.num_glyphs - breakGlyph;
2657 oldItem.num_glyphs = breakGlyph;
2658 newItem.glyph_data_offset = oldItem.glyph_data_offset + breakGlyph;
2660 for (int i = 0; i < newItem.num_glyphs; i++)
2661 logClusters(&newItem)[i] -= breakGlyph;
2664 const QGlyphLayout g = shapedGlyphs(&oldItem);
2665 for(int j = 0; j < breakGlyph; ++j)
2666 w += g.advances_x[j] * !g.attributes[j].dontPrint;
2668 newItem.width = oldItem.width - w;
2672 // qDebug("split at position %d itempos=%d", pos, item);
2675 QFixed QTextEngine::calculateTabWidth(int item, QFixed x) const
2677 const QScriptItem &si = layoutData->items[item];
2679 QFixed dpiScale = 1;
2680 if (block.docHandle() && block.docHandle()->layout()) {
2681 QPaintDevice *pdev = block.docHandle()->layout()->paintDevice();
2683 dpiScale = QFixed::fromReal(pdev->logicalDpiY() / qreal(qt_defaultDpiY()));
2685 dpiScale = QFixed::fromReal(fnt.d->dpi / qreal(qt_defaultDpiY()));
2688 QList<QTextOption::Tab> tabArray = option.tabs();
2689 if (!tabArray.isEmpty()) {
2690 if (isRightToLeft()) { // rebase the tabArray positions.
2691 QList<QTextOption::Tab> newTabs;
2692 QList<QTextOption::Tab>::Iterator iter = tabArray.begin();
2693 while(iter != tabArray.end()) {
2694 QTextOption::Tab tab = *iter;
2695 if (tab.type == QTextOption::LeftTab)
2696 tab.type = QTextOption::RightTab;
2697 else if (tab.type == QTextOption::RightTab)
2698 tab.type = QTextOption::LeftTab;
2704 for (int i = 0; i < tabArray.size(); ++i) {
2705 QFixed tab = QFixed::fromReal(tabArray[i].position) * dpiScale;
2706 if (tab > x) { // this is the tab we need.
2707 QTextOption::Tab tabSpec = tabArray[i];
2708 int tabSectionEnd = layoutData->string.count();
2709 if (tabSpec.type == QTextOption::RightTab || tabSpec.type == QTextOption::CenterTab) {
2710 // find next tab to calculate the width required.
2711 tab = QFixed::fromReal(tabSpec.position);
2712 for (int i=item + 1; i < layoutData->items.count(); i++) {
2713 const QScriptItem &item = layoutData->items[i];
2714 if (item.analysis.flags == QScriptAnalysis::TabOrObject) { // found it.
2715 tabSectionEnd = item.position;
2720 else if (tabSpec.type == QTextOption::DelimiterTab)
2721 // find delimitor character to calculate the width required
2722 tabSectionEnd = qMax(si.position, layoutData->string.indexOf(tabSpec.delimiter, si.position) + 1);
2724 if (tabSectionEnd > si.position) {
2726 // Calculate the length of text between this tab and the tabSectionEnd
2727 for (int i=item; i < layoutData->items.count(); i++) {
2728 QScriptItem &item = layoutData->items[i];
2729 if (item.position > tabSectionEnd || item.position <= si.position)
2731 shape(i); // first, lets make sure relevant text is already shaped
2732 QGlyphLayout glyphs = this->shapedGlyphs(&item);
2733 const int end = qMin(item.position + item.num_glyphs, tabSectionEnd) - item.position;
2734 for (int i=0; i < end; i++)
2735 length += glyphs.advances_x[i] * !glyphs.attributes[i].dontPrint;
2736 if (end + item.position == tabSectionEnd && tabSpec.type == QTextOption::DelimiterTab) // remove half of matching char
2737 length -= glyphs.advances_x[end] / 2 * !glyphs.attributes[end].dontPrint;
2740 switch (tabSpec.type) {
2741 case QTextOption::CenterTab:
2744 case QTextOption::DelimiterTab:
2746 case QTextOption::RightTab:
2747 tab = QFixed::fromReal(tabSpec.position) * dpiScale - length;
2748 if (tab < 0) // default to tab taking no space
2751 case QTextOption::LeftTab:
2759 QFixed tab = QFixed::fromReal(option.tabStop());
2761 tab = 80; // default
2763 QFixed nextTabPos = ((x / tab).truncate() + 1) * tab;
2764 QFixed tabWidth = nextTabPos - x;
2769 void QTextEngine::resolveAdditionalFormats() const
2771 if (!specialData || specialData->addFormats.isEmpty()
2772 || !block.docHandle()
2773 || !specialData->resolvedFormatIndices.isEmpty())
2776 QTextFormatCollection *collection = this->formats();
2778 specialData->resolvedFormatIndices.clear();
2779 QVector<int> indices(layoutData->items.count());
2780 for (int i = 0; i < layoutData->items.count(); ++i) {
2781 QTextCharFormat f = format(&layoutData->items.at(i));
2782 indices[i] = collection->indexForFormat(f);
2784 specialData->resolvedFormatIndices = indices;
2787 QFixed QTextEngine::leadingSpaceWidth(const QScriptLine &line)
2789 if (!line.hasTrailingSpaces
2790 || (option.flags() & QTextOption::IncludeTrailingSpaces)
2791 || !isRightToLeft())
2794 int pos = line.length;
2795 const HB_CharAttributes *attributes = this->attributes();
2798 while (pos > 0 && attributes[line.from + pos - 1].whiteSpace)
2800 return width(line.from + pos, line.length - pos);
2803 QFixed QTextEngine::alignLine(const QScriptLine &line)
2807 // if width is QFIXED_MAX that means we used setNumColumns() and that implicitly makes this line left aligned.
2808 if (!line.justified && line.width != QFIXED_MAX) {
2809 int align = option.alignment();
2810 if (align & Qt::AlignLeft)
2811 x -= leadingSpaceWidth(line);
2812 if (align & Qt::AlignJustify && isRightToLeft())
2813 align = Qt::AlignRight;
2814 if (align & Qt::AlignRight)
2815 x = line.width - (line.textAdvance + leadingSpaceWidth(line));
2816 else if (align & Qt::AlignHCenter)
2817 x = (line.width - line.textAdvance)/2 - leadingSpaceWidth(line);
2822 QFixed QTextEngine::offsetInLigature(const QScriptItem *si, int pos, int max, int glyph_pos)
2824 unsigned short *logClusters = this->logClusters(si);
2825 const QGlyphLayout &glyphs = shapedGlyphs(si);
2827 int offsetInCluster = 0;
2828 for (int i = pos - 1; i >= 0; i--) {
2829 if (logClusters[i] == glyph_pos)
2835 // in the case that the offset is inside a (multi-character) glyph,
2836 // interpolate the position.
2837 if (offsetInCluster > 0) {
2838 int clusterLength = 0;
2839 for (int i = pos - offsetInCluster; i < max; i++) {
2840 if (logClusters[i] == glyph_pos)
2846 return glyphs.advances_x[glyph_pos] * offsetInCluster / clusterLength;
2852 // Scan in logClusters[from..to-1] for glyph_pos
2853 int QTextEngine::getClusterLength(unsigned short *logClusters,
2854 const HB_CharAttributes *attributes,
2855 int from, int to, int glyph_pos, int *start)
2857 int clusterLength = 0;
2858 for (int i = from; i < to; i++) {
2859 if (logClusters[i] == glyph_pos && attributes[i].charStop) {
2864 else if (clusterLength)
2867 return clusterLength;
2870 int QTextEngine::positionInLigature(const QScriptItem *si, int end,
2871 QFixed x, QFixed edge, int glyph_pos,
2872 bool cursorOnCharacter)
2874 unsigned short *logClusters = this->logClusters(si);
2875 int clusterStart = -1;
2876 int clusterLength = 0;
2878 if (si->analysis.script != QUnicodeTables::Common &&
2879 si->analysis.script != QUnicodeTables::Greek) {
2880 if (glyph_pos == -1)
2881 return si->position + end;
2884 for (i = 0; i < end; i++)
2885 if (logClusters[i] == glyph_pos)
2887 return si->position + i;
2891 if (glyph_pos == -1 && end > 0)
2892 glyph_pos = logClusters[end - 1];
2898 const HB_CharAttributes *attrs = attributes();
2899 logClusters = this->logClusters(si);
2900 clusterLength = getClusterLength(logClusters, attrs, 0, end, glyph_pos, &clusterStart);
2902 if (clusterLength) {
2903 const QGlyphLayout &glyphs = shapedGlyphs(si);
2904 QFixed glyphWidth = glyphs.effectiveAdvance(glyph_pos);
2905 // the approximate width of each individual element of the ligature
2906 QFixed perItemWidth = glyphWidth / clusterLength;
2907 QFixed left = x > edge ? edge : edge - glyphWidth;
2908 int n = ((x - left) / perItemWidth).floor().toInt();
2909 QFixed dist = x - left - n * perItemWidth;
2910 int closestItem = dist > (perItemWidth / 2) ? n + 1 : n;
2911 if (cursorOnCharacter && closestItem > 0)
2913 int pos = si->position + clusterStart + closestItem;
2914 // Jump to the next charStop
2915 while (!attrs[pos].charStop && pos < end)
2919 return si->position + end;
2922 int QTextEngine::previousLogicalPosition(int oldPos) const
2924 const HB_CharAttributes *attrs = attributes();
2925 if (!attrs || oldPos < 0)
2931 while (oldPos && !attrs[oldPos].charStop)
2936 int QTextEngine::nextLogicalPosition(int oldPos) const
2938 const HB_CharAttributes *attrs = attributes();
2939 int len = block.isValid() ? block.length() - 1
2940 : layoutData->string.length();
2941 Q_ASSERT(len <= layoutData->string.length());
2942 if (!attrs || oldPos < 0 || oldPos >= len)
2946 while (oldPos < len && !attrs[oldPos].charStop)
2951 int QTextEngine::lineNumberForTextPosition(int pos)
2955 if (pos == layoutData->string.length() && lines.size())
2956 return lines.size() - 1;
2957 for (int i = 0; i < lines.size(); ++i) {
2958 const QScriptLine& line = lines[i];
2959 if (line.from + line.length > pos)
2965 void QTextEngine::insertionPointsForLine(int lineNum, QVector<int> &insertionPoints)
2967 QTextLineItemIterator iterator(this, lineNum);
2968 bool rtl = isRightToLeft();
2969 bool lastLine = lineNum >= lines.size() - 1;
2971 while (!iterator.atEnd()) {
2973 const QScriptItem *si = &layoutData->items[iterator.item];
2974 if (si->analysis.bidiLevel % 2) {
2975 int i = iterator.itemEnd - 1, min = iterator.itemStart;
2976 if (lastLine && (rtl ? iterator.atBeginning() : iterator.atEnd()))
2978 for (; i >= min; i--)
2979 insertionPoints.push_back(i);
2981 int i = iterator.itemStart, max = iterator.itemEnd;
2982 if (lastLine && (rtl ? iterator.atBeginning() : iterator.atEnd()))
2984 for (; i < max; i++)
2985 insertionPoints.push_back(i);
2990 int QTextEngine::endOfLine(int lineNum)
2992 QVector<int> insertionPoints;
2993 insertionPointsForLine(lineNum, insertionPoints);
2995 if (insertionPoints.size() > 0)
2996 return insertionPoints.last();
3000 int QTextEngine::beginningOfLine(int lineNum)
3002 QVector<int> insertionPoints;
3003 insertionPointsForLine(lineNum, insertionPoints);
3005 if (insertionPoints.size() > 0)
3006 return insertionPoints.first();
3010 int QTextEngine::positionAfterVisualMovement(int pos, QTextCursor::MoveOperation op)
3015 bool moveRight = (op == QTextCursor::Right);
3016 bool alignRight = isRightToLeft();
3017 if (!layoutData->hasBidi)
3018 return moveRight ^ alignRight ? nextLogicalPosition(pos) : previousLogicalPosition(pos);
3020 int lineNum = lineNumberForTextPosition(pos);
3021 Q_ASSERT(lineNum >= 0);
3023 QVector<int> insertionPoints;
3024 insertionPointsForLine(lineNum, insertionPoints);
3025 int i, max = insertionPoints.size();
3026 for (i = 0; i < max; i++)
3027 if (pos == insertionPoints[i]) {
3030 return insertionPoints[i + 1];
3033 return insertionPoints[i - 1];
3036 if (moveRight ^ alignRight) {
3037 if (lineNum + 1 < lines.size())
3038 return alignRight ? endOfLine(lineNum + 1) : beginningOfLine(lineNum + 1);
3042 return alignRight ? beginningOfLine(lineNum - 1) : endOfLine(lineNum - 1);
3049 QStackTextEngine::QStackTextEngine(const QString &string, const QFont &f)
3050 : QTextEngine(string, f),
3051 _layoutData(string, _memory, MemSize)
3054 layoutData = &_layoutData;
3057 QTextItemInt::QTextItemInt(const QScriptItem &si, QFont *font, const QTextCharFormat &format)
3058 : justified(false), underlineStyle(QTextCharFormat::NoUnderline), charFormat(format),
3059 num_chars(0), chars(0), logClusters(0), f(0), fontEngine(0)
3062 fontEngine = f->d->engineForScript(si.analysis.script);
3063 Q_ASSERT(fontEngine);
3065 initWithScriptItem(si);
3068 QTextItemInt::QTextItemInt(const QGlyphLayout &g, QFont *font, const QChar *chars_, int numChars, QFontEngine *fe, const QTextCharFormat &format)
3069 : flags(0), justified(false), underlineStyle(QTextCharFormat::NoUnderline), charFormat(format),
3070 num_chars(numChars), chars(chars_), logClusters(0), f(font), glyphs(g), fontEngine(fe)
3074 // Fix up flags and underlineStyle with given info
3075 void QTextItemInt::initWithScriptItem(const QScriptItem &si)
3077 // explicitly initialize flags so that initFontAttributes can be called
3078 // multiple times on the same TextItem
3080 if (si.analysis.bidiLevel %2)
3081 flags |= QTextItem::RightToLeft;
3083 descent = si.descent;
3085 if (charFormat.hasProperty(QTextFormat::TextUnderlineStyle)) {
3086 underlineStyle = charFormat.underlineStyle();
3087 } else if (charFormat.boolProperty(QTextFormat::FontUnderline)
3088 || f->d->underline) {
3089 underlineStyle = QTextCharFormat::SingleUnderline;
3093 if (underlineStyle == QTextCharFormat::SingleUnderline)
3094 flags |= QTextItem::Underline;
3096 if (f->d->overline || charFormat.fontOverline())
3097 flags |= QTextItem::Overline;
3098 if (f->d->strikeOut || charFormat.fontStrikeOut())
3099 flags |= QTextItem::StrikeOut;
3102 QTextItemInt QTextItemInt::midItem(QFontEngine *fontEngine, int firstGlyphIndex, int numGlyphs) const
3104 QTextItemInt ti = *this;
3105 const int end = firstGlyphIndex + numGlyphs;
3106 ti.glyphs = glyphs.mid(firstGlyphIndex, numGlyphs);
3107 ti.fontEngine = fontEngine;
3109 if (logClusters && chars) {
3110 const int logClusterOffset = logClusters[0];
3111 while (logClusters[ti.chars - chars] - logClusterOffset < firstGlyphIndex)
3114 ti.logClusters += (ti.chars - chars);
3117 int char_start = ti.chars - chars;
3118 while (char_start + ti.num_chars < num_chars && ti.logClusters[ti.num_chars] - logClusterOffset < end)
3125 QTransform qt_true_matrix(qreal w, qreal h, QTransform x)
3127 QRectF rect = x.mapRect(QRectF(0, 0, w, h));
3128 return x * QTransform::fromTranslate(-rect.x(), -rect.y());
3132 glyph_metrics_t glyph_metrics_t::transformed(const QTransform &matrix) const
3134 if (matrix.type() < QTransform::TxTranslate)
3137 glyph_metrics_t m = *this;
3139 qreal w = width.toReal();
3140 qreal h = height.toReal();
3141 QTransform xform = qt_true_matrix(w, h, matrix);
3143 QRectF rect(0, 0, w, h);
3144 rect = xform.mapRect(rect);
3145 m.width = QFixed::fromReal(rect.width());
3146 m.height = QFixed::fromReal(rect.height());
3148 QLineF l = xform.map(QLineF(x.toReal(), y.toReal(), xoff.toReal(), yoff.toReal()));
3150 m.x = QFixed::fromReal(l.x1());
3151 m.y = QFixed::fromReal(l.y1());
3153 // The offset is relative to the baseline which is why we use dx/dy of the line
3154 m.xoff = QFixed::fromReal(l.dx());
3155 m.yoff = QFixed::fromReal(l.dy());
3160 QTextLineItemIterator::QTextLineItemIterator(QTextEngine *_eng, int _lineNum, const QPointF &pos,
3161 const QTextLayout::FormatRange *_selection)
3163 line(eng->lines[_lineNum]),
3166 lineEnd(line.from + line.length),
3167 firstItem(eng->findItem(line.from)),
3168 lastItem(eng->findItem(lineEnd - 1)),
3169 nItems((firstItem >= 0 && lastItem >= firstItem)? (lastItem-firstItem+1) : 0),
3172 visualOrder(nItems),
3174 selection(_selection)
3176 pos_x = x = QFixed::fromReal(pos.x());
3180 x += eng->alignLine(line);
3182 for (int i = 0; i < nItems; ++i)
3183 levels[i] = eng->layoutData->items[i+firstItem].analysis.bidiLevel;
3184 QTextEngine::bidiReorder(nItems, levels.data(), visualOrder.data());
3186 eng->shapeLine(line);
3189 QScriptItem &QTextLineItemIterator::next()
3194 item = visualOrder[logicalItem] + firstItem;
3195 itemLength = eng->length(item);
3196 si = &eng->layoutData->items[item];
3197 if (!si->num_glyphs)
3200 if (si->analysis.flags >= QScriptAnalysis::TabOrObject) {
3201 itemWidth = si->width;
3205 unsigned short *logClusters = eng->logClusters(si);
3206 QGlyphLayout glyphs = eng->shapedGlyphs(si);
3208 itemStart = qMax(line.from, si->position);
3209 glyphsStart = logClusters[itemStart - si->position];
3210 if (lineEnd < si->position + itemLength) {
3212 glyphsEnd = logClusters[itemEnd-si->position];
3214 itemEnd = si->position + itemLength;
3215 glyphsEnd = si->num_glyphs;
3217 // show soft-hyphen at line-break
3218 if (si->position + itemLength >= lineEnd
3219 && eng->layoutData->string.at(lineEnd - 1) == 0x00ad)
3220 glyphs.attributes[glyphsEnd - 1].dontPrint = false;
3223 for (int g = glyphsStart; g < glyphsEnd; ++g)
3224 itemWidth += glyphs.effectiveAdvance(g);
3229 bool QTextLineItemIterator::getSelectionBounds(QFixed *selectionX, QFixed *selectionWidth) const
3231 *selectionX = *selectionWidth = 0;
3236 if (si->analysis.flags >= QScriptAnalysis::TabOrObject) {
3237 if (si->position >= selection->start + selection->length
3238 || si->position + itemLength <= selection->start)
3242 *selectionWidth = itemWidth;
3244 unsigned short *logClusters = eng->logClusters(si);
3245 QGlyphLayout glyphs = eng->shapedGlyphs(si);
3247 int from = qMax(itemStart, selection->start) - si->position;
3248 int to = qMin(itemEnd, selection->start + selection->length) - si->position;
3252 int start_glyph = logClusters[from];
3253 int end_glyph = (to == eng->length(item)) ? si->num_glyphs : logClusters[to];
3256 if (si->analysis.bidiLevel %2) {
3257 for (int g = glyphsEnd - 1; g >= end_glyph; --g)
3258 soff += glyphs.effectiveAdvance(g);
3259 for (int g = end_glyph - 1; g >= start_glyph; --g)
3260 swidth += glyphs.effectiveAdvance(g);
3262 for (int g = glyphsStart; g < start_glyph; ++g)
3263 soff += glyphs.effectiveAdvance(g);
3264 for (int g = start_glyph; g < end_glyph; ++g)
3265 swidth += glyphs.effectiveAdvance(g);
3268 // If the starting character is in the middle of a ligature,
3269 // selection should only contain the right part of that ligature
3270 // glyph, so we need to get the width of the left part here and
3271 // add it to *selectionX
3272 QFixed leftOffsetInLigature = eng->offsetInLigature(si, from, to, start_glyph);
3273 *selectionX = x + soff + leftOffsetInLigature;
3274 *selectionWidth = swidth - leftOffsetInLigature;
3275 // If the ending character is also part of a ligature, swidth does
3276 // not contain that part yet, we also need to find out the width of
3278 *selectionWidth += eng->offsetInLigature(si, to, eng->length(item), end_glyph);