KiCad PCB EDA Suite
Loading...
Searching...
No Matches
gr_text.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) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2012 Wayne Stambaugh <[email protected]>
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <gr_basic.h>
28#include <plotters/plotter.h>
29#include <trigo.h>
30#include <math/util.h> // for KiROUND
31#include <font/font.h>
32
33#include <callback_gal.h>
34
35
36int GetPenSizeForBold( int aTextSize )
37{
38 return KiROUND( aTextSize / 5.0 );
39}
40
41
42int GetPenSizeForDemiBold( int aTextSize )
43{
44 return KiROUND( aTextSize / 6 );
45}
46
47
48int GetPenSizeForBold( const wxSize& aTextSize )
49{
50 return GetPenSizeForBold( std::min( aTextSize.x, aTextSize.y ) );
51}
52
53
54int GetPenSizeForDemiBold( const wxSize& aTextSize )
55{
56 return GetPenSizeForDemiBold( std::min( aTextSize.x, aTextSize.y ) );
57}
58
59
60int GetPenSizeForNormal( int aTextSize )
61{
62 return KiROUND( aTextSize / 8.0 );
63}
64
65
66int GetPenSizeForNormal( const wxSize& aTextSize )
67{
68 return GetPenSizeForNormal( std::min( aTextSize.x, aTextSize.y ) );
69}
70
71
72int ClampTextPenSize( int aPenSize, int aSize, bool aStrict )
73{
74 double scale = aStrict ? 0.18 : 0.25;
75 int maxWidth = KiROUND( (double) aSize * scale );
76
77 return std::min( aPenSize, maxWidth );
78}
79
80
81float ClampTextPenSize( float aPenSize, int aSize, bool aStrict )
82{
83 double scale = aStrict ? 0.18 : 0.25;
84 float maxWidth = (float) aSize * scale;
85
86 return std::min( aPenSize, maxWidth );
87}
88
89
90int ClampTextPenSize( int aPenSize, const VECTOR2I& aSize, bool aStrict )
91{
92 int size = std::min( std::abs( aSize.x ), std::abs( aSize.y ) );
93
94 return ClampTextPenSize( aPenSize, size, aStrict );
95}
96
97
98int GRTextWidth( const wxString& aText, KIFONT::FONT* aFont, const VECTOR2I& aSize,
99 int aThickness, bool aBold, bool aItalic, const KIFONT::METRICS& aFontMetrics )
100{
101 if( !aFont )
102 aFont = KIFONT::FONT::GetFont();
103
104 return KiROUND( aFont->StringBoundaryLimits( aText, aSize, aThickness, aBold, aItalic,
105 aFontMetrics ).x );
106}
107
108
109void GRPrintText( wxDC* aDC, const VECTOR2I& aPos, const COLOR4D& aColor, const wxString& aText,
110 const EDA_ANGLE& aOrient, const VECTOR2I& aSize,
111 enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify,
112 int aWidth, bool aItalic, bool aBold, KIFONT::FONT* aFont,
113 const KIFONT::METRICS& aFontMetrics )
114{
116 bool fill_mode = true;
117
118 if( !aFont )
119 aFont = KIFONT::FONT::GetFont();
120
121 if( aWidth == 0 ) // Use default values if aWidth == 0
122 {
123 if( aBold )
124 aWidth = GetPenSizeForBold( std::min( aSize.x, aSize.y ) );
125 else
126 aWidth = GetPenSizeForNormal( std::min( aSize.x, aSize.y ) );
127 }
128
129 if( aWidth < 0 )
130 {
131 aWidth = -aWidth;
132 fill_mode = false;
133 }
134
135 CALLBACK_GAL callback_gal( empty_opts,
136 // Stroke callback
137 [&]( const VECTOR2I& aPt1, const VECTOR2I& aPt2 )
138 {
139 if( fill_mode )
140 GRLine( aDC, aPt1, aPt2, aWidth, aColor );
141 else
142 GRCSegm( aDC, aPt1, aPt2, aWidth, aColor );
143 },
144 // Polygon callback
145 [&]( const SHAPE_LINE_CHAIN& aPoly )
146 {
147 GRClosedPoly( aDC, aPoly.PointCount(), aPoly.CPoints().data(), true, aColor );
148 } );
149
150 TEXT_ATTRIBUTES attributes;
151 attributes.m_Angle = aOrient;
152 attributes.m_StrokeWidth = aWidth;
153 attributes.m_Italic = aItalic;
154 attributes.m_Bold = aBold;
155 attributes.m_Halign = aH_justify;
156 attributes.m_Valign = aV_justify;
157 attributes.m_Size = aSize;
158
159 aFont->Draw( &callback_gal, aText, aPos, attributes, aFontMetrics );
160}
161
162
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition: box2.h:990
FONT is an abstract base class for both outline and stroke fonts.
Definition: font.h:131
static FONT * GetFont(const wxString &aFontName=wxEmptyString, bool aBold=false, bool aItalic=false, const std::vector< wxString > *aEmbeddedFiles=nullptr, bool aForDrawingSheet=false)
Definition: font.cpp:149
void Draw(KIGFX::GAL *aGal, const wxString &aText, const VECTOR2I &aPosition, const VECTOR2I &aCursor, const TEXT_ATTRIBUTES &aAttributes, const METRICS &aFontMetrics) const
Draw a string.
Definition: font.cpp:252
VECTOR2I StringBoundaryLimits(const wxString &aText, const VECTOR2I &aSize, int aThickness, bool aBold, bool aItalic, const METRICS &aFontMetrics) const
Compute the boundary limits of aText (the bounding box of all shapes).
Definition: font.cpp:429
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void GRCSegm(wxDC *DC, const VECTOR2I &A, const VECTOR2I &B, int width, const COLOR4D &Color)
Definition: gr_basic.cpp:201
void GRLine(wxDC *DC, int x1, int y1, int x2, int y2, int width, const COLOR4D &Color, wxPenStyle aStyle)
Definition: gr_basic.cpp:171
void GRClosedPoly(wxDC *DC, int n, const VECTOR2I *Points, bool Fill, const COLOR4D &Color)
Draw a closed polyline and fill it if Fill, in object space.
Definition: gr_basic.cpp:352
int GetPenSizeForBold(int aTextSize)
Definition: gr_text.cpp:36
int GetPenSizeForDemiBold(int aTextSize)
Definition: gr_text.cpp:42
int GetPenSizeForNormal(int aTextSize)
Definition: gr_text.cpp:60
int GRTextWidth(const wxString &aText, KIFONT::FONT *aFont, const VECTOR2I &aSize, int aThickness, bool aBold, bool aItalic, const KIFONT::METRICS &aFontMetrics)
Definition: gr_text.cpp:98
void GRPrintText(wxDC *aDC, const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const EDA_ANGLE &aOrient, const VECTOR2I &aSize, enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify, int aWidth, bool aItalic, bool aBold, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics)
Print a graphic text through wxDC.
Definition: gr_text.cpp:109
int ClampTextPenSize(int aPenSize, int aSize, bool aStrict)
Pen width should not allow characters to become cluttered up in their own fatness.
Definition: gr_text.cpp:72
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Definition: eda_angle.h:390
const int scale
GR_TEXT_H_ALIGN_T
This is API surface mapped to common.types.HorizontalAlignment.
GR_TEXT_V_ALIGN_T
This is API surface mapped to common.types.VertialAlignment.