KiCad PCB EDA Suite
Loading...
Searching...
No Matches
outline_font.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KICAD, a free EDA CAD application.
3 *
4 * Copyright (C) 2021 Ola Rinta-Koski <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <limits>
22#include <harfbuzz/hb.h>
23#include <harfbuzz/hb-ft.h>
24#include <bezier_curves.h>
26#include <font/fontconfig.h>
27#include <font/outline_font.h>
28#include <ft2build.h>
29#include FT_FREETYPE_H
30#include FT_SFNT_NAMES_H
31#include FT_TRUETYPE_TABLES_H
32#include FT_GLYPH_H
33#include FT_BBOX_H
34#include <trigo.h>
35#include <core/utf8.h>
36
37using namespace KIFONT;
38
39
40FT_Library OUTLINE_FONT::m_freeType = nullptr;
42
44 m_face(NULL),
45 m_faceSize( 16 ),
46 m_fakeBold( false ),
47 m_fakeItal( false ),
48 m_forDrawingSheet( false )
49{
50 std::lock_guard<std::mutex> guard( m_freeTypeMutex );
51
52 if( !m_freeType )
53 FT_Init_FreeType( &m_freeType );
54}
55
56
58{
59 TT_OS2* os2 = reinterpret_cast<TT_OS2*>( FT_Get_Sfnt_Table( m_face, FT_SFNT_OS2 ) );
60
61 // If this table isn't present, we can't assume anything
62 if( !os2 )
64
65 // We don't support bitmap fonts, so this disables embedding
66 if( os2->fsType & FT_FSTYPE_BITMAP_EMBEDDING_ONLY )
68
69 // Per the OpenType spec, only bits 0-3 of fsType define the embedding license.
70 // Bits 8-9 (no-subsetting, bitmap-only) are independent modifiers and must be
71 // masked off before checking the embedding permission level.
72 // See: http://freetype.org/freetype2/docs/reference/ft2-information_retrieval.html
73 FT_UShort embeddingBits = os2->fsType & 0x000F;
74
75 // This allows the font to be exported from KiCad
76 if( embeddingBits == FT_FSTYPE_INSTALLABLE_EMBEDDING )
78
79 // This allows us to use the font in KiCad but not export
80 if( embeddingBits & FT_FSTYPE_EDITABLE_EMBEDDING )
82
83 // This is not actually supported by KiCad ATM(2024)
84 if( embeddingBits & FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING )
86
87 // Anything else that is not explicitly enabled we treat as restricted.
89}
90
91
92OUTLINE_FONT* OUTLINE_FONT::LoadFont( const wxString& aFontName, bool aBold, bool aItalic,
93 const std::vector<wxString>* aEmbeddedFiles,
94 bool aForDrawingSheet )
95{
96 std::unique_ptr<OUTLINE_FONT> font = std::make_unique<OUTLINE_FONT>();
97
98 wxString fontFile;
99 int faceIndex;
100 using fc = fontconfig::FONTCONFIG;
101
102
103 fc::FF_RESULT retval = Fontconfig()->FindFont( aFontName, fontFile, faceIndex, aBold, aItalic,
104 aEmbeddedFiles );
105
106 if( retval == fc::FF_RESULT::FF_ERROR )
107 return nullptr;
108
109 if( retval == fc::FF_RESULT::FF_MISSING_BOLD || retval == fc::FF_RESULT::FF_MISSING_BOLD_ITAL )
110 font->SetFakeBold();
111
112 if( retval == fc::FF_RESULT::FF_MISSING_ITAL || retval == fc::FF_RESULT::FF_MISSING_BOLD_ITAL )
113 font->SetFakeItal();
114
115 if( font->loadFace( fontFile, faceIndex ) != 0 )
116 return nullptr;
117
118 font->m_fontName = aFontName; // Keep asked-for name, even if we substituted.
119 font->m_fontFileName = fontFile;
120 font->m_forDrawingSheet = aForDrawingSheet;
121
122 return font.release();
123}
124
125
126FT_Error OUTLINE_FONT::loadFace( const wxString& aFontFileName, int aFaceIndex )
127{
128 std::lock_guard<std::mutex> guard( m_freeTypeMutex );
129
130 FT_Error e = FT_New_Face( m_freeType, aFontFileName.mb_str( wxConvUTF8 ), aFaceIndex, &m_face );
131
132 if( !e )
133 {
135 // params:
136 // m_face = handle to face object
137 // 0 = char width in 1/64th of points ( 0 = same as char height )
138 // faceSize() = char height in 1/64th of points
139 // GLYPH_RESOLUTION = horizontal device resolution (1152dpi, 16x default)
140 // 0 = vertical device resolution ( 0 = same as horizontal )
141 FT_Set_Char_Size( m_face, 0, faceSize(), GLYPH_RESOLUTION, 0 );
142 }
143
144 return e;
145}
146
147
148void OUTLINE_FONT::SelectCharmap( FT_Face aFace )
149{
150 // A normal text font carries a Unicode charmap that maps the Basic Latin block directly.
151 // Keep it when present.
152 if( FT_Select_Charmap( aFace, FT_ENCODING_UNICODE ) == 0 )
153 {
154 // Some legacy "symbol" fonts expose a Unicode charmap that only mirrors their private-use
155 // (U+F000..U+F0FF) glyph layout, leaving ASCII unmapped. Probe a few common characters to
156 // tell a usable Unicode charmap apart from such a font.
157 static const FT_ULong probes[] = { 'A', 'a', '0', ' ' };
158
159 for( FT_ULong codepoint : probes )
160 {
161 if( FT_Get_Char_Index( aFace, codepoint ) != 0 )
162 return;
163 }
164 }
165
166 // No Unicode charmap can resolve ASCII. If the font carries a Microsoft Symbol charmap,
167 // select it so HarfBuzz applies its U+F000 offset remapping and the glyphs become reachable.
168 if( FT_Select_Charmap( aFace, FT_ENCODING_MS_SYMBOL ) == 0 )
169 return;
170
171 // Otherwise fall back to the Unicode charmap (e.g. a CJK-only font with no Basic Latin).
172 FT_Select_Charmap( aFace, FT_ENCODING_UNICODE );
173}
174
175
176double OUTLINE_FONT::GetInterline( double aGlyphHeight, const METRICS& aFontMetrics ) const
177{
178 // The em-relative interline pitch already sets the line spacing; scaling it again by the face
179 // height / units_per_EM ratio double-counts and inflates spacing for non-default fonts
180 return aFontMetrics.GetInterline( aGlyphHeight );
181}
182
183
184static bool contourIsFilled( const CONTOUR& c )
185{
186 switch( c.m_Orientation )
187 {
188 case FT_ORIENTATION_TRUETYPE: return c.m_Winding == 1;
189 case FT_ORIENTATION_POSTSCRIPT: return c.m_Winding == -1;
190 default: return false;
191 }
192}
193
194
195static bool contourIsHole( const CONTOUR& c )
196{
197 return !contourIsFilled( c );
198}
199
200
201BOX2I OUTLINE_FONT::getBoundingBox( const std::vector<std::unique_ptr<GLYPH>>& aGlyphs ) const
202{
203 int minX = INT_MAX;
204 int minY = INT_MAX;
205 int maxX = INT_MIN;
206 int maxY = INT_MIN;
207
208 for( const std::unique_ptr<KIFONT::GLYPH>& glyph : aGlyphs )
209 {
210 BOX2D bbox = glyph->BoundingBox();
211 bbox.Normalize();
212
213 if( minX > bbox.GetX() )
214 minX = bbox.GetX();
215
216 if( minY > bbox.GetY() )
217 minY = bbox.GetY();
218
219 if( maxX < bbox.GetRight() )
220 maxX = bbox.GetRight();
221
222 if( maxY < bbox.GetBottom() )
223 maxY = bbox.GetBottom();
224 }
225
226 BOX2I ret;
227 ret.SetOrigin( minX, minY );
228 ret.SetEnd( maxX, maxY );
229 return ret;
230}
231
232
233void OUTLINE_FONT::GetLinesAsGlyphs( std::vector<std::unique_ptr<GLYPH>>* aGlyphs,
234 const wxString& aText, const VECTOR2I& aPosition,
235 const TEXT_ATTRIBUTES& aAttrs,
236 const METRICS& aFontMetrics ) const
237{
238 wxArrayString strings;
239 std::vector<VECTOR2I> positions;
240 std::vector<VECTOR2I> extents;
241 TEXT_STYLE_FLAGS textStyle = 0;
242
243 if( aAttrs.m_Italic )
244 textStyle |= TEXT_STYLE::ITALIC;
245
246 getLinePositions( aText, aPosition, strings, positions, extents, aAttrs, aFontMetrics );
247
248 for( size_t i = 0; i < strings.GetCount(); i++ )
249 {
250 (void) drawMarkup( nullptr, aGlyphs, strings.Item( i ), positions[i], aAttrs.m_Size,
251 aAttrs.m_Angle, aAttrs.m_Mirrored, aPosition, textStyle, aFontMetrics );
252 }
253}
254
255
256VECTOR2I OUTLINE_FONT::GetTextAsGlyphs( BOX2I* aBBox, std::vector<std::unique_ptr<GLYPH>>* aGlyphs,
257 const wxString& aText, const VECTOR2I& aSize,
258 const VECTOR2I& aPosition, const EDA_ANGLE& aAngle,
259 bool aMirror, const VECTOR2I& aOrigin,
260 TEXT_STYLE_FLAGS aTextStyle ) const
261{
262 // HarfBuzz needs further processing to split tab-delimited text into text runs.
263
264 constexpr double TAB_WIDTH = 4 * 0.6;
265
266 VECTOR2I position = aPosition;
267 wxString textRun;
268
269 if( aBBox )
270 {
271 aBBox->SetOrigin( aPosition );
272 aBBox->SetEnd( aPosition );
273 }
274
275 for( wxUniChar c : aText )
276 {
277 // Handle tabs as locked to the nearest 4th column (in space-widths).
278 if( c == '\t' )
279 {
280 if( !textRun.IsEmpty() )
281 {
282 position = getTextAsGlyphs( aBBox, aGlyphs, textRun, aSize, position, aAngle,
283 aMirror, aOrigin, aTextStyle );
284 textRun.clear();
285 }
286
287 int tabWidth = KiROUND( aSize.x * TAB_WIDTH );
288 int currentIntrusion = ( position.x - aOrigin.x ) % tabWidth;
289
290 position.x += tabWidth - currentIntrusion;
291 }
292 else
293 {
294 textRun += c;
295 }
296 }
297
298 if( !textRun.IsEmpty() )
299 {
300 position = getTextAsGlyphs( aBBox, aGlyphs, textRun, aSize, position, aAngle, aMirror,
301 aOrigin, aTextStyle );
302 }
303
304 return position;
305}
306
307
308VECTOR2I OUTLINE_FONT::getTextAsGlyphs( BOX2I* aBBox, std::vector<std::unique_ptr<GLYPH>>* aGlyphs,
309 const wxString& aText, const VECTOR2I& aSize,
310 const VECTOR2I& aPosition, const EDA_ANGLE& aAngle,
311 bool aMirror, const VECTOR2I& aOrigin,
312 TEXT_STYLE_FLAGS aTextStyle ) const
313{
314 std::lock_guard<std::mutex> guard( m_freeTypeMutex );
315
316 return getTextAsGlyphsUnlocked( aBBox, aGlyphs, aText, aSize, aPosition, aAngle, aMirror,
317 aOrigin, aTextStyle );
318}
319
320
322 FT_Face face;
323 std::string text;
325
326 bool operator==(const HARFBUZZ_CACHE_KEY& rhs ) const
327 {
328 return face == rhs.face
329 && scaler == rhs.scaler
330 && text == rhs.text;
331 }
332};
333
334
336{
337 std::vector<hb_glyph_info_t> m_GlyphInfo;
338 std::vector<hb_glyph_position_t> m_GlyphPositions;
339 bool m_Initialized = false;
340};
341
342
343namespace std
344{
345 template <>
347 {
348 std::size_t operator()( const HARFBUZZ_CACHE_KEY& k ) const
349 {
350 return hash_val( k.face, k.scaler, k.text );
351 }
352 };
353}
354
355
356static const HARFBUZZ_CACHE_ENTRY& getHarfbuzzShape( FT_Face aFace, const wxString& aText,
357 int aScaler )
358{
359 static std::unordered_map<HARFBUZZ_CACHE_KEY, HARFBUZZ_CACHE_ENTRY> s_harfbuzzCache;
360
361 std::string textUtf8 = UTF8( aText );
362 HARFBUZZ_CACHE_KEY key = { aFace, textUtf8, aScaler };
363
364 HARFBUZZ_CACHE_ENTRY& entry = s_harfbuzzCache[key];
365
366 if( !entry.m_Initialized )
367 {
368 hb_buffer_t* buf = hb_buffer_create();
369 hb_buffer_add_utf8( buf, textUtf8.c_str(), -1, 0, -1 );
370 hb_buffer_guess_segment_properties( buf ); // guess direction, script, and language based on
371 // contents
372
373 hb_font_t* referencedFont = hb_ft_font_create_referenced( aFace );
374
375 hb_shape( referencedFont, buf, nullptr, 0 );
376
377 unsigned int glyphCount;
378 hb_glyph_info_t* glyphInfo = hb_buffer_get_glyph_infos( buf, &glyphCount );
379 hb_glyph_position_t* glyphPos = hb_buffer_get_glyph_positions( buf, &glyphCount );
380
381 entry.m_GlyphInfo.assign( glyphInfo, glyphInfo + glyphCount );
382 entry.m_GlyphPositions.assign( glyphPos, glyphPos + glyphCount );
383 entry.m_Initialized = true;
384
385 hb_buffer_destroy( buf );
386 hb_font_destroy( referencedFont );
387 }
388
389 return entry;
390}
391
392
394 FT_Face face;
395 hb_codepoint_t codepoint;
400 bool mirror;
403
404 bool operator==(const GLYPH_CACHE_KEY& rhs ) const
405 {
406 return face == rhs.face
407 && codepoint == rhs.codepoint
408 && scale == rhs.scale
410 && fakeItalic == rhs.fakeItalic
411 && fakeBold == rhs.fakeBold
412 && mirror == rhs.mirror
413 && supersub == rhs.supersub
414 && angle == rhs.angle;
415 }
416};
417
418
419namespace std
420{
421 template <>
422 struct hash<GLYPH_CACHE_KEY>
423 {
424 std::size_t operator()( const GLYPH_CACHE_KEY& k ) const
425 {
426 return hash_val( k.face, k.codepoint, k.scale.x, k.scale.y, k.forDrawingSheet,
428 }
429 };
430}
431
432
433bool OUTLINE_FONT::LoadGlyphContours( unsigned int aGlyphIndex,
434 std::vector<CONTOUR>& aContours ) const
435{
436 aContours.clear();
437
438 if( m_fakeItal )
439 {
440 FT_Matrix matrix;
441 // Create a 12 degree slant
442 const float angle = (float) ( -M_PI * 12.0f ) / 180.0f;
443 matrix.xx = (FT_Fixed) ( cos( angle ) * 0x10000L );
444 matrix.xy = (FT_Fixed) ( -sin( angle ) * 0x10000L );
445 matrix.yx = 0; // Don't rotate in the y direction
446 matrix.yy = 0x10000L;
447
448 FT_Set_Transform( m_face, &matrix, nullptr );
449 }
450
451 // FreeType clears the shared glyph slot before the font driver runs, so a failed load leaves
452 // an empty or partially parsed outline. Decomposing it would silently render nothing, so bail
453 // and let the caller draw a placeholder box instead.
454 if( FT_Load_Glyph( m_face, aGlyphIndex, FT_LOAD_NO_BITMAP ) != 0 )
455 return false;
456
457 // Bitmap-only fonts ignore FT_LOAD_NO_BITMAP and load without error, leaving no outline.
458 if( m_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE )
459 return false;
460
461 if( m_fakeBold )
462 FT_Outline_Embolden( &m_face->glyph->outline, 1 << 6 );
463
464 OUTLINE_DECOMPOSER decomposer( m_face->glyph->outline );
465
466 if( !decomposer.OutlineToSegments( &aContours ) )
467 {
468 aContours.clear();
469 return false;
470 }
471
472 return true;
473}
474
475
477 std::vector<std::unique_ptr<GLYPH>>* aGlyphs,
478 const wxString& aText, const VECTOR2I& aSize,
479 const VECTOR2I& aPosition, const EDA_ANGLE& aAngle,
480 bool aMirror, const VECTOR2I& aOrigin,
481 TEXT_STYLE_FLAGS aTextStyle ) const
482{
483 VECTOR2D glyphSize = aSize;
484 FT_Face face = m_face;
485 double scaler = faceSize();
486 bool supersub = IsSuperscript( aTextStyle ) || IsSubscript( aTextStyle );
487
488 if( supersub )
489 scaler = subscriptSize();
490
491 // set glyph resolution so that FT_Load_Glyph() results are good enough for decomposing
492 FT_Set_Char_Size( face, 0, scaler, GLYPH_RESOLUTION, 0 );
493
494 const HARFBUZZ_CACHE_ENTRY& hbShape = getHarfbuzzShape( face, aText, scaler );
495
496 unsigned int glyphCount = static_cast<unsigned int>( hbShape.m_GlyphInfo.size() );
497 const hb_glyph_info_t* glyphInfo = hbShape.m_GlyphInfo.data();
498 const hb_glyph_position_t* glyphPos = hbShape.m_GlyphPositions.data();
499
500 VECTOR2D scaleFactor( glyphSize.x / faceSize(), -glyphSize.y / faceSize() );
501 scaleFactor = scaleFactor * m_outlineFontSizeCompensation;
502
503 VECTOR2I cursor( 0, 0 );
504
505 if( aGlyphs )
506 aGlyphs->reserve( glyphCount );
507
508 // GLYPH_DATA is a collection of all outlines in the glyph; for example the 'o' glyph
509 // generally contains 2 contours, one for the glyph outline and one for the hole
510 static std::unordered_map<GLYPH_CACHE_KEY, GLYPH_DATA> s_glyphCache;
511
512 for( unsigned int i = 0; i < glyphCount; i++ )
513 {
514 if( aGlyphs )
515 {
516 GLYPH_CACHE_KEY key = { face, glyphInfo[i].codepoint, scaleFactor, m_forDrawingSheet,
517 m_fakeItal, m_fakeBold, aMirror, supersub, aAngle };
518 GLYPH_DATA& glyphData = s_glyphCache[ key ];
519
520 if( !glyphData.m_Loaded )
521 {
522 glyphData.m_Loaded = true;
523
524 if( !LoadGlyphContours( glyphInfo[i].codepoint, glyphData.m_Contours ) )
525 {
526 double hb_advance = glyphPos[i].x_advance * GLYPH_SIZE_SCALER;
527 BOX2D tofuBox( { scaler * 0.03, 0.0 },
528 { hb_advance - scaler * 0.02, scaler * 0.72 } );
529
530 CONTOUR outline;
531 outline.m_Winding = 1;
532 outline.m_Orientation = FT_ORIENTATION_TRUETYPE;
533 outline.m_Points.push_back( tofuBox.GetPosition() );
534 outline.m_Points.push_back( { tofuBox.GetSize().x, tofuBox.GetPosition().y } );
535 outline.m_Points.push_back( tofuBox.GetSize() );
536 outline.m_Points.push_back( { tofuBox.GetPosition().x, tofuBox.GetSize().y } );
537 glyphData.m_Contours.push_back( std::move( outline ) );
538
539 CONTOUR hole;
540 tofuBox.Move( { scaler * 0.06, scaler * 0.06 } );
541 tofuBox.SetSize( { tofuBox.GetWidth() - scaler * 0.06,
542 tofuBox.GetHeight() - scaler * 0.06 } );
543 hole.m_Winding = 1;
544 hole.m_Orientation = FT_ORIENTATION_NONE;
545 hole.m_Points.push_back( tofuBox.GetPosition() );
546 hole.m_Points.push_back( { tofuBox.GetSize().x, tofuBox.GetPosition().y } );
547 hole.m_Points.push_back( tofuBox.GetSize() );
548 hole.m_Points.push_back( { tofuBox.GetPosition().x, tofuBox.GetSize().y } );
549 glyphData.m_Contours.push_back( std::move( hole ) );
550 }
551 }
552
553 std::unique_ptr<OUTLINE_GLYPH> glyph = std::make_unique<OUTLINE_GLYPH>();
554 std::vector<SHAPE_LINE_CHAIN> holes;
555
556 for( const CONTOUR& c : glyphData.m_Contours )
557 {
558 const std::vector<VECTOR2D>& points = c.m_Points;
559 SHAPE_LINE_CHAIN shape;
560
561 shape.ReservePoints( points.size() );
562
563 for( const VECTOR2D& v : points )
564 {
565 VECTOR2D pt( v + cursor );
566
567 if( IsSubscript( aTextStyle ) )
568 pt.y += m_subscriptVerticalOffset * scaler;
569 else if( IsSuperscript( aTextStyle ) )
570 pt.y += m_superscriptVerticalOffset * scaler;
571
572 pt *= scaleFactor;
573 pt += aPosition;
574
575 if( aMirror )
576 pt.x = aOrigin.x - ( pt.x - aOrigin.x );
577
578 if( !aAngle.IsZero() )
579 RotatePoint( pt, aOrigin, aAngle );
580
581 shape.Append( pt.x, pt.y );
582 }
583
584 shape.SetClosed( true );
585
586 if( contourIsHole( c ) )
587 holes.push_back( std::move( shape ) );
588 else
589 glyph->AddOutline( std::move( shape ) );
590 }
591
592 for( SHAPE_LINE_CHAIN& hole : holes )
593 {
594 bool added_hole = false;
595
596 if( hole.PointCount() )
597 {
598 for( int ii = 0; ii < glyph->OutlineCount(); ++ii )
599 {
600 if( glyph->Outline( ii ).PointInside( hole.GetPoint( 0 ) ) )
601 {
602 glyph->AddHole( std::move( hole ), ii );
603 added_hole = true;
604 break;
605 }
606 }
607
608 // Some lovely TTF fonts decided that winding didn't matter for outlines that
609 // don't have holes, so holes that don't fit in any outline are added as
610 // outlines.
611 if( !added_hole )
612 glyph->AddOutline( std::move( hole ) );
613 }
614 }
615
616 if( glyphData.m_TriangulationData.empty() )
617 {
618 glyph->CacheTriangulation();
619 glyphData.m_TriangulationData = glyph->GetTriangulationData();
620 }
621 else
622 {
623 glyph->CacheTriangulation( glyphData.m_TriangulationData );
624 }
625
626 aGlyphs->push_back( std::move( glyph ) );
627 }
628
629 const hb_glyph_position_t& pos = glyphPos[i];
630 cursor.x += ( pos.x_advance * GLYPH_SIZE_SCALER );
631 cursor.y += ( pos.y_advance * GLYPH_SIZE_SCALER );
632 }
633
634 int ascender = abs( face->size->metrics.ascender * GLYPH_SIZE_SCALER );
635 int descender = abs( face->size->metrics.descender * GLYPH_SIZE_SCALER );
636
637 if( aBBox )
638 {
639 aBBox->Merge( aPosition - VECTOR2I( 0, ascender * abs( scaleFactor.y ) ) );
640 aBBox->Merge( aPosition + VECTOR2I( cursor.x * scaleFactor.x, descender * abs( scaleFactor.y ) ) );
641 }
642
643 return VECTOR2I( aPosition.x + cursor.x * scaleFactor.x, aPosition.y - cursor.y * scaleFactor.y );
644}
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition box2.h:986
BOX2< VECTOR2D > BOX2D
Definition box2.h:919
constexpr void SetOrigin(const Vec &pos)
Definition box2.h:233
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
Definition box2.h:142
constexpr coord_type GetY() const
Definition box2.h:204
constexpr coord_type GetX() const
Definition box2.h:203
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
Definition box2.h:654
constexpr coord_type GetRight() const
Definition box2.h:213
constexpr void SetEnd(coord_type x, coord_type y)
Definition box2.h:293
constexpr coord_type GetBottom() const
Definition box2.h:218
double AsDegrees() const
Definition eda_angle.h:116
bool IsZero() const
Definition eda_angle.h:136
void getLinePositions(const wxString &aText, const VECTOR2I &aPosition, wxArrayString &aTextLines, std::vector< VECTOR2I > &aPositions, std::vector< VECTOR2I > &aExtents, const TEXT_ATTRIBUTES &aAttrs, const METRICS &aFontMetrics) const
Definition font.cpp:177
VECTOR2I drawMarkup(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aPosition, const VECTOR2I &aSize, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle, const METRICS &aFontMetrics, std::optional< VECTOR2I > aMousePos=std::nullopt, wxString *aActiveUrl=nullptr) const
Definition font.cpp:388
double GetInterline(double aFontHeight) const
bool OutlineToSegments(std::vector< CONTOUR > *aContours)
VECTOR2I getTextAsGlyphsUnlocked(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const
static void SelectCharmap(FT_Face aFace)
Select the charmap used to map characters to glyphs for aFace.
static std::mutex m_freeTypeMutex
Mutex for freetype access, FT_Library and FT_Face are not thread safe.
double GetInterline(double aGlyphHeight, const METRICS &aFontMetrics) const override
Compute the distance (interline) between 2 lines of text (for multiline texts).
static FT_Library m_freeType
BOX2I getBoundingBox(const std::vector< std::unique_ptr< GLYPH > > &aGlyphs) const
FT_Error loadFace(const wxString &aFontFileName, int aFaceIndex)
static constexpr double m_superscriptVerticalOffset
VECTOR2I getTextAsGlyphs(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const
bool LoadGlyphContours(unsigned int aGlyphIndex, std::vector< CONTOUR > &aContours) const
Load a single glyph into the shared FreeType slot and decompose its outline into line-chain contours.
VECTOR2I GetTextAsGlyphs(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const override
Convert text string to an array of GLYPHs.
int faceSize(int aSize) const
void GetLinesAsGlyphs(std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aPosition, const TEXT_ATTRIBUTES &aAttrs, const METRICS &aFontMetrics) const
static OUTLINE_FONT * LoadFont(const wxString &aFontFileName, bool aBold, bool aItalic, const std::vector< wxString > *aEmbeddedFiles, bool aForDrawingSheet)
Load an outline font.
static constexpr double m_outlineFontSizeCompensation
EMBEDDING_PERMISSION GetEmbeddingPermission() const
int subscriptSize() const
static constexpr double m_subscriptVerticalOffset
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void SetClosed(bool aClosed)
Mark the line chain as closed (i.e.
void ReservePoints(size_t aSize)
Allocate a number of points all at once (for performance).
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
Definition utf8.h:67
FF_RESULT FindFont(const wxString &aFontName, wxString &aFontFile, int &aFaceIndex, bool aBold, bool aItalic, const std::vector< wxString > *aEmbeddedFiles=nullptr)
Given a fully-qualified font name ("Times:Bold:Italic") find the closest matching font and return its...
@ ITALIC
Definition font.h:44
unsigned int TEXT_STYLE_FLAGS
Definition font.h:61
bool IsSuperscript(TEXT_STYLE_FLAGS aFlags)
Definition font.h:76
bool IsSubscript(TEXT_STYLE_FLAGS aFlags)
Definition font.h:82
FONTCONFIG * Fontconfig()
static constexpr std::size_t hash_val(const Types &... args)
Definition hash.h:47
constexpr int GLYPH_RESOLUTION
constexpr double GLYPH_SIZE_SCALER
STL namespace.
static bool contourIsHole(const CONTOUR &c)
static bool contourIsFilled(const CONTOUR &c)
static const HARFBUZZ_CACHE_ENTRY & getHarfbuzzShape(FT_Face aFace, const wxString &aText, int aScaler)
hb_codepoint_t codepoint
bool operator==(const GLYPH_CACHE_KEY &rhs) const
std::vector< hb_glyph_info_t > m_GlyphInfo
std::vector< hb_glyph_position_t > m_GlyphPositions
bool m_Initialized
bool operator==(const HARFBUZZ_CACHE_KEY &rhs) const
std::vector< VECTOR2D > m_Points
FT_Orientation m_Orientation
std::vector< CONTOUR > m_Contours
std::vector< std::unique_ptr< SHAPE_POLY_SET::TRIANGULATED_POLYGON > > m_TriangulationData
std::size_t operator()(const GLYPH_CACHE_KEY &k) const
std::size_t operator()(const HARFBUZZ_CACHE_KEY &k) const
#define M_PI
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
Definition trigo.cpp:225
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
VECTOR2< double > VECTOR2D
Definition vector2d.h:682