QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskGlyphTable.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_GLYPH_TABLE_H
7#define QSK_GLYPH_TABLE_H
8
9#include "QskGlobal.h"
10#include <memory>
11
12class QskGraphic;
13class QRawFont;
14class QString;
15class QPainterPath;
16class QByteArray;
17class QChar;
18
19template< typename Key, typename T > class QHash;
20
21class QSK_EXPORT QskGlyphTable
22{
23 public:
25 QskGlyphTable( const QRawFont& );
27
29
30 QskGlyphTable& operator=( const QskGlyphTable& );
31
32 bool isValid() const;
33
34 void setIconFont( const QRawFont& );
35 QRawFont iconFont() const;
36
37 uint glyphCount() const;
38
39 QPainterPath glyphPath( uint glyphIndex ) const;
40 QskGraphic glyphGraphic( uint glyphIndex ) const;
41
42 /*
43 Most icon fonts use code points from the Unicode Private Use Areas (PUA)
44 ( see https://en.wikipedia.org/wiki/Private_Use_Areas ):
45
46 - [0x00e000, 0x00f8ff]
47 - [0x0f0000, 0x0ffffd]
48 - [0x100000, 0x10fffd]
49
50 Note that QChar is 16-bit entity only that does not cover the higher PUA blocks.
51 */
52 uint codeToIndex( char32_t ) const;
53
54 /*
55 True/OpenType fonts often include a table with glyph names, that can be used
56 instead of the glyph index
57 */
58 uint nameToIndex( const QString& ) const;
59
60 QHash< QString, uint > nameTable() const;
61
62 private:
63 class PrivateData;
64 std::unique_ptr< PrivateData > m_data;
65};
66
67inline bool QskGlyphTable::isValid() const
68{
69 return glyphCount() > 0;
70}
71
72#endif
A paint device for scalable graphics.
Definition QskGraphic.h:28