/**************************************************************************** ** ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** This file may be used under the terms of the GNU General Public ** License version 2.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of ** this file. Please review the following information to ensure GNU ** General Public Licensing requirements will be met: ** http://trolltech.com/products/qt/licenses/licensing/opensource/ ** ** If you are unsure which license is appropriate for your use, please ** review the following information: ** http://trolltech.com/products/qt/licenses/licensing/licensingoverview ** or contact the sales department at sales@trolltech.com. ** ** In addition, as a special exception, Trolltech gives you certain ** additional rights. These rights are described in the Trolltech GPL ** Exception version 1.0, which can be found at ** http://www.trolltech.com/products/qt/gplexception/ and in the file ** GPL_EXCEPTION.txt in this package. ** ** In addition, as a special exception, Trolltech, as the sole copyright ** holder for Qt Designer, grants users of the Qt/Eclipse Integration ** plug-in the right for the Qt/Eclipse Integration to link to ** functionality provided by Qt Designer and its related libraries. ** ** Trolltech reserves all rights not expressly granted herein. ** ** Trolltech ASA (c) 2007 ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ****************************************************************************/ #include #if (FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 3) # define FT_KERNING_DEFAULT ft_kerning_default # define FT_KERNING_UNFITTED ft_kerning_unfitted #endif void QTextEngine::shapeText(int item) const { Q_ASSERT(item < layoutData->items.size()); QScriptItem &si = layoutData->items[item]; if (si.num_glyphs) return; si.glyph_data_offset = layoutData->used; QFontEngine *font = fontEngine(si, &si.ascent, &si.descent); QShaperItem shaper_item; shaper_item.kerning_enabled = this->font(si).d->kerning; shaper_item.kerning_applied = false; shaper_item.script = si.analysis.script; shaper_item.string = &layoutData->string; shaper_item.from = si.position; shaper_item.length = length(item); shaper_item.font = font; shaper_item.num_glyphs = qMax(int(layoutData->num_glyphs - layoutData->used), shaper_item.length); shaper_item.flags = si.analysis.bidiLevel % 2 ? RightToLeft : 0; if (option.useDesignMetrics()) shaper_item.flags |= DesignMetrics; // qDebug("shaping"); while (1) { // qDebug(" . num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs); ensureSpace(shaper_item.num_glyphs); shaper_item.num_glyphs = layoutData->num_glyphs - layoutData->used; // qDebug(" .. num_glyphs=%d, used=%d, item.num_glyphs=%d", num_glyphs, used, shaper_item.num_glyphs); shaper_item.glyphs = glyphs(&si); shaper_item.log_clusters = logClusters(&si); if (qt_scriptEngines[shaper_item.script].shape(&shaper_item)) break; } // qDebug(" -> item: script=%d num_glyphs=%d", shaper_item.script, shaper_item.num_glyphs); si.num_glyphs = shaper_item.num_glyphs; layoutData->used += si.num_glyphs; QGlyphLayout *g = shaper_item.glyphs; if (shaper_item.kerning_enabled && !shaper_item.kerning_applied) { font->doKerning(si.num_glyphs, g, option.useDesignMetrics() ? QFlag(QTextEngine::DesignMetrics) : QFlag(0)); } si.width = 0; QGlyphLayout *end = g + si.num_glyphs; while (g < end) si.width += (g++)->advance.x; return; }