#include "KoFontGlyphModel.h"
#include "KoOpenTypeFeatureInfoFactory.h"
#include <QDebug>
#include <hb.h>
#include <hb-ft.h>
Go to the source code of this file.
◆ sortBlocks()
◆ unicodeHexFromUCS()
| QString unicodeHexFromUCS |
( |
const uint | codePoint | ) |
|
Definition at line 374 of file KoFontGlyphModel.cpp.
374 {
375 QByteArray ba;
376 ba.setNum(codePoint, 16);
377 QString hex = QString(ba);
378 return QString("U+%1").arg(hex, hex.size() > 4? 6: 4, '0');
379}
◆ invalidUnicodeCodePoint
| constexpr uint invalidUnicodeCodePoint = std::numeric_limits<uint>::max() |
|
staticconstexpr |