KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ds_painter.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25
26#include <common.h>
27#include <pgm_base.h>
28#include <base_screen.h>
29#include <eda_draw_frame.h>
30#include <title_block.h>
31#include <build_version.h>
36
39
40#include <wx/app.h>
41
42using namespace KIGFX;
43
44static const wxString productName = wxT( "KiCad E.D.A." );
45
47{
48 m_backgroundColor = COLOR4D( 1.0, 1.0, 1.0, 1.0 );
50 m_selectedColor = m_normalColor.Brightened( 0.5 );
51 m_brightenedColor = COLOR4D( 0.0, 1.0, 0.0, 0.9 );
52 m_pageBorderColor = COLOR4D( 0.4, 0.4, 0.4, 1.0 );
53
54 update();
55}
56
57
59{
60 for( int layer = SCH_LAYER_ID_START; layer < SCH_LAYER_ID_END; layer++ )
61 m_layerColors[ layer ] = aSettings->GetColor( layer );
62
63 for( int layer = GAL_LAYER_ID_START; layer < GAL_LAYER_ID_END; layer++ )
64 m_layerColors[ layer ] = aSettings->GetColor( layer );
65
69}
70
71
72COLOR4D DS_RENDER_SETTINGS::GetColor( const VIEW_ITEM* aItem, int aLayer ) const
73{
74 const EDA_ITEM* item = dynamic_cast<const EDA_ITEM*>( aItem );
75
76 if( item )
77 {
78 // Selection disambiguation
79 if( item->IsBrightened() )
80 return m_brightenedColor;
81
82 if( item->IsSelected() )
83 return m_selectedColor;
84
85 if( item->Type() == WSG_TEXT_T )
86 {
87 COLOR4D color = static_cast<const DS_DRAW_ITEM_TEXT*>( item )->GetTextColor();
88
90 return color;
91 }
92 }
93
94 return m_normalColor;
95}
96
97
98void DS_DRAW_ITEM_LIST::GetTextVars( wxArrayString* aVars )
99{
100 aVars->push_back( wxT( "KICAD_VERSION" ) );
101 aVars->push_back( wxT( "#" ) );
102 aVars->push_back( wxT( "##" ) );
103 aVars->push_back( wxT( "SHEETNAME" ) );
104 aVars->push_back( wxT( "SHEETPATH" ) );
105 aVars->push_back( wxT( "FILENAME" ) );
106 aVars->push_back( wxT( "FILEPATH" ) );
107 aVars->push_back( wxT( "PROJECTNAME" ) );
108 aVars->push_back( wxT( "PAPER" ) );
109 aVars->push_back( wxT( "LAYER" ) );
111}
112
113
114wxString DS_DRAW_ITEM_LIST::BuildFullText( const wxString& aTextbase )
115{
116 std::function<bool( wxString* )> wsResolver =
117 [&]( wxString* token ) -> bool
118 {
119 bool tokenUpdated = false;
120
121 if( token->IsSameAs( wxT( "KICAD_VERSION" ) ) && PgmOrNull() )
122 {
123 *token = wxString::Format( wxT( "%s %s" ), productName, GetBaseVersion() );
124 tokenUpdated = true;
125 }
126 else if( token->IsSameAs( wxT( "#" ) ) )
127 {
128 *token = wxString::Format( wxT( "%s" ), m_pageNumber );
129 tokenUpdated = true;
130 }
131 else if( token->IsSameAs( wxT( "##" ) ) )
132 {
133 *token = wxString::Format( wxT( "%d" ), m_sheetCount );
134 tokenUpdated = true;
135 }
136 else if( token->IsSameAs( wxT( "SHEETNAME" ) ) )
137 {
138 *token = m_sheetName;
139 tokenUpdated = true;
140 }
141 else if( token->IsSameAs( wxT( "SHEETPATH" ) ) )
142 {
143 *token = m_sheetPath;
144 tokenUpdated = true;
145 }
146 else if( token->IsSameAs( wxT( "FILENAME" ) ) )
147 {
148 wxFileName fn( m_fileName );
149 *token = fn.GetFullName();
150 tokenUpdated = true;
151 }
152 else if( token->IsSameAs( wxT( "FILEPATH" ) ) )
153 {
154 wxFileName fn( m_fileName );
155 *token = fn.GetFullPath();
156 return true;
157 }
158 else if( token->IsSameAs( wxT( "PAPER" ) ) )
159 {
160 *token = m_paperFormat;
161 tokenUpdated = true;
162 }
163 else if( token->IsSameAs( wxT( "LAYER" ) ) )
164 {
165 *token = m_sheetLayer;
166 tokenUpdated = true;
167 }
168 else if( m_titleBlock )
169 {
170 if( m_titleBlock->TextVarResolver( token, m_project, m_flags ) )
171 {
172 // No need for tokenUpdated; TITLE_BLOCK::TextVarResolver() already goes
173 // up to the project.
174 //
175 // However, the title block may have variables in it itself, so we need
176 // to run the worksheet resolver again.
177 //
178 const TITLE_BLOCK* savedTitleBlock = m_titleBlock;
179
180 m_titleBlock = nullptr;
181 {
182 *token = ExpandTextVars( *token, &wsResolver, m_flags );
183 }
184 m_titleBlock = savedTitleBlock;
185
186 return true;
187 }
188 }
189 else if( m_properties && m_properties->count( *token ) )
190 {
191 *token = m_properties->at( *token );
192 tokenUpdated = true;
193 }
194
195 if( tokenUpdated )
196 {
197 *token = ExpandTextVars( *token, m_project, m_flags );
198 return true;
199 }
200
201 if( m_project && m_project->TextVarResolver( token ) )
202 return true;
203
204 return false;
205 };
206
207 wxString retv = ExpandTextVars( aTextbase, &wsResolver, m_flags );
208
209 static EXPRESSION_EVALUATOR evaluator;
210
211 if( retv.Contains( wxS( "@{" ) ) )
212 retv = evaluator.Evaluate( retv );
213
214 return retv;
215}
216
217
218bool KIGFX::DS_PAINTER::Draw( const VIEW_ITEM* aItem, int aLayer )
219{
220 auto item = dynamic_cast<const EDA_ITEM*>( aItem );
221
222 if( !item )
223 return false;
224
225 switch( item->Type() )
226 {
227 case WSG_LINE_T: draw( (DS_DRAW_ITEM_LINE*) item, aLayer ); break;
228 case WSG_POLY_T: draw( (DS_DRAW_ITEM_POLYPOLYGONS*) item, aLayer ); break;
229 case WSG_RECT_T: draw( (DS_DRAW_ITEM_RECT*) item, aLayer ); break;
230 case WSG_TEXT_T: draw( (DS_DRAW_ITEM_TEXT*) item, aLayer ); break;
231 case WSG_BITMAP_T: draw( (DS_DRAW_ITEM_BITMAP*) item, aLayer ); break;
232 case WSG_PAGE_T: draw( (DS_DRAW_ITEM_PAGE*) item, aLayer ); break;
233 default: return false;
234 }
235
236 return true;
237}
238
239
240void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_LINE* aItem, int aLayer ) const
241{
242 m_gal->SetIsStroke( true );
243 m_gal->SetIsFill( false );
244 m_gal->SetStrokeColor( m_renderSettings.GetColor( aItem, aLayer ) );
245 m_gal->SetLineWidth( std::max( aItem->GetPenWidth(), m_renderSettings.GetDefaultPenWidth() ) );
246 m_gal->DrawLine( VECTOR2D( aItem->GetStart() ), VECTOR2D( aItem->GetEnd() ) );
247}
248
249
250void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_RECT* aItem, int aLayer ) const
251{
252 m_gal->SetIsStroke( true );
253 m_gal->SetIsFill( false );
254 m_gal->SetStrokeColor( m_renderSettings.GetColor( aItem, aLayer ) );
255 m_gal->SetLineWidth( std::max( aItem->GetPenWidth(), m_renderSettings.GetDefaultPenWidth() ) );
256 m_gal->DrawRectangle( VECTOR2D( aItem->GetStart() ), VECTOR2D( aItem->GetEnd() ) );
257}
258
259
260void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_POLYPOLYGONS* aItem, int aLayer ) const
261{
262 m_gal->SetFillColor( m_renderSettings.GetColor( aItem, aLayer ) );
263 m_gal->SetIsFill( true );
264 m_gal->SetIsStroke( false );
265
267
268 for( int idx = 0; idx < item->GetPolygons().OutlineCount(); ++idx )
269 {
270 SHAPE_LINE_CHAIN& outline = item->GetPolygons().Outline( idx );
271 m_gal->DrawPolygon( outline );
272 }
273}
274
275
276void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_TEXT* aItem, int aLayer ) const
277{
278 KIFONT::FONT* font = aItem->GetFont();
279
280 if( !font )
281 {
282 font = KIFONT::FONT::GetFont( m_renderSettings.GetDefaultFont(), aItem->IsBold(),
283 aItem->IsItalic(), nullptr, true );
284 }
285
286 const COLOR4D& color = m_renderSettings.GetColor( aItem, aLayer );
287
288 m_gal->SetStrokeColor( color );
289 m_gal->SetFillColor( color );
290
291 TEXT_ATTRIBUTES attrs = aItem->GetAttributes();
292 attrs.m_StrokeWidth = std::max( aItem->GetEffectiveTextPenWidth(),
293 m_renderSettings.GetDefaultPenWidth() );
294
295 font->Draw( m_gal, aItem->GetShownText( true ), aItem->GetTextPos(), attrs,
296 aItem->GetFontMetrics() );
297}
298
299
300void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_BITMAP* aItem, int aLayer ) const
301{
302 m_gal->Save();
303 auto* bitmap = static_cast<DS_DATA_ITEM_BITMAP*>( aItem->GetPeer() );
304
305 VECTOR2D position = aItem->GetPosition();
306 m_gal->Translate( position );
307
308 // If we've failed to read the bitmap data, don't try to draw it
309 if( !( bitmap && bitmap->m_ImageBitmap
310 && bitmap->m_ImageBitmap->GetImageData() ) )
311 {
312 return;
313 }
314
315 // When the image scale factor is not 1.0, we need to modify the actual scale
316 // as the image scale factor is similar to a local zoom
317 double img_scale = bitmap->m_ImageBitmap->GetScale();
318
319 if( img_scale != 1.0 )
320 m_gal->Scale( VECTOR2D( img_scale, img_scale ) );
321
322 m_gal->DrawBitmap( *bitmap->m_ImageBitmap );
323
324#if 0 // For bounding box debug purpose only
325 BOX2I bbox = aItem->GetBoundingBox();
326 m_gal->SetIsFill( true );
327 m_gal->SetIsStroke( true );
328 m_gal->SetFillColor( COLOR4D( 1, 1, 1, 0.4 ) );
329 m_gal->SetStrokeColor( COLOR4D( 0, 0, 0, 1 ) );
330
331 if( img_scale != 1.0 )
332 m_gal->Scale( VECTOR2D( 1.0, 1.0 ) );
333
334 m_gal->DrawRectangle( VECTOR2D( bbox.GetOrigin() ) - position,
335 VECTOR2D( bbox.GetEnd() ) - position );
336#endif
337
338 m_gal->Restore();
339}
340
341
342void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_PAGE* aItem, int aLayer ) const
343{
344 VECTOR2D origin = VECTOR2D( 0.0, 0.0 );
345 VECTOR2D end = VECTOR2D( aItem->GetPageSize().x,
346 aItem->GetPageSize().y );
347
348 m_gal->SetIsStroke( true );
349
350 // Use a gray color for the border color
351 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
352 m_gal->SetIsFill( false );
353 m_gal->SetLineWidth( m_renderSettings.GetDefaultPenWidth() );
354
355 m_gal->DrawRectangle( origin, end );
356
357 // Draw the corner marker
358 double marker_size = aItem->GetMarkerSize();
359
360 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
361 VECTOR2D pos = VECTOR2D( aItem->GetMarkerPos().x, aItem->GetMarkerPos().y );
362
363 // Draw a circle and a X
364 m_gal->DrawCircle( pos, marker_size );
365 m_gal->DrawLine( VECTOR2D( pos.x - marker_size, pos.y - marker_size),
366 VECTOR2D( pos.x + marker_size, pos.y + marker_size ) );
367 m_gal->DrawLine( VECTOR2D( pos.x + marker_size, pos.y - marker_size),
368 VECTOR2D( pos.x - marker_size, pos.y + marker_size ) );
369}
370
371
372void KIGFX::DS_PAINTER::DrawBorder( const PAGE_INFO* aPageInfo, int aScaleFactor ) const
373{
374 VECTOR2D origin = VECTOR2D( 0.0, 0.0 );
375 VECTOR2D end = VECTOR2D( aPageInfo->GetWidthMils() * aScaleFactor,
376 aPageInfo->GetHeightMils() * aScaleFactor );
377
378 m_gal->SetIsStroke( true );
379
380 // Use a gray color for the border color
381 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
382 m_gal->SetIsFill( false );
383 m_gal->SetLineWidth( m_renderSettings.GetDefaultPenWidth() );
384 m_gal->DrawRectangle( origin, end );
385}
int color
BASE_SCREEN class implementation.
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
wxString GetBaseVersion()
Get the KiCad version string without the information added by the packagers.
constexpr const Vec GetEnd() const
Definition box2.h:212
constexpr const Vec & GetOrigin() const
Definition box2.h:210
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
virtual int GetPenWidth() const
DS_DATA_ITEM * GetPeer() const
const KIFONT::METRICS & GetFontMetrics() const
VECTOR2I GetPosition() const override
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
const VECTOR2I & GetStart() const
const VECTOR2I & GetEnd() const
int m_sheetCount
The number of sheets.
static void GetTextVars(wxArrayString *aVars)
const std::map< wxString, wxString > * m_properties
wxString BuildFullText(const wxString &aTextbase)
const TITLE_BLOCK * m_titleBlock
const PROJECT * m_project
wxString m_pageNumber
The actual page number displayed in the title block.
A rectangle with thick segment showing the page limits and a marker showing the coordinate origin.
const VECTOR2I & GetMarkerPos() const
double GetMarkerSize() const
VECTOR2I GetPageSize() const
SHAPE_POLY_SET & GetPolygons()
Non filled rectangle with thick segment.
const VECTOR2I & GetEnd() const
const VECTOR2I & GetStart() const
A graphic text.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
bool IsSelected() const
Definition eda_item.h:127
bool IsBrightened() const
Definition eda_item.h:129
const VECTOR2I & GetTextPos() const
Definition eda_text.h:273
bool IsItalic() const
Definition eda_text.h:169
KIFONT::FONT * GetFont() const
Definition eda_text.h:247
const TEXT_ATTRIBUTES & GetAttributes() const
Definition eda_text.h:231
int GetEffectiveTextPenWidth(int aDefaultPenWidth=0) const
The EffectiveTextPenWidth uses the text thickness if > 1 or aDefaultPenWidth.
Definition eda_text.cpp:476
bool IsBold() const
Definition eda_text.h:184
virtual wxString GetShownText(bool aAllowExtraText, int aDepth=0) const
Return the string actually shown after processing of the base text.
Definition eda_text.h:109
High-level wrapper for evaluating mathematical and string expressions in wxString format.
wxString Evaluate(const wxString &aInput)
Main evaluation function - processes input string and evaluates all} expressions.
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:147
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:250
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:104
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
Definition color4d.h:398
void DrawBorder(const PAGE_INFO *aPageInfo, int aScaleFactor) const
DS_RENDER_SETTINGS m_renderSettings
Definition ds_painter.h:121
void draw(const DS_DRAW_ITEM_LINE *aItem, int aLayer) const
virtual bool Draw(const VIEW_ITEM *, int) override
Takes an instance of VIEW_ITEM and passes it to a function that knows how to draw the item.
void LoadColors(const COLOR_SETTINGS *aSettings) override
virtual COLOR4D GetColor(const VIEW_ITEM *aItem, int aLayer) const override
Returns the color that should be used to draw the specific VIEW_ITEM on the specific layer using curr...
GAL * m_gal
Instance of graphic abstraction layer that gives an interface to call commands used to draw (eg.
Definition painter.h:102
virtual void update()
Precalculates extra colors for layers (e.g.
std::map< int, COLOR4D > m_layerColors
An abstract base class for deriving all objects that can be added to a VIEW.
Definition view_item.h:86
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition page_info.h:79
double GetHeightMils() const
Definition page_info.h:147
double GetWidthMils() const
Definition page_info.h:142
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition title_block.h:41
static void GetContextualTextVars(wxArrayString *aVars)
@ RED
Definition color4d.h:59
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject, int aFlags)
Definition common.cpp:60
The common library.
static const wxString productName
@ GAL_LAYER_ID_START
Definition layer_ids.h:229
@ GAL_LAYER_ID_END
Definition layer_ids.h:360
@ SCH_LAYER_ID_END
Definition layer_ids.h:505
@ SCH_LAYER_ID_START
Definition layer_ids.h:450
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition layer_ids.h:496
@ LAYER_SCHEMATIC_BACKGROUND
Definition layer_ids.h:488
@ LAYER_SCHEMATIC_GRID
Definition layer_ids.h:486
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:33
PGM_BASE * PgmOrNull()
Return a reference that can be nullptr when running a shared lib from a script, not from a kicad app.
Definition pgm_base.cpp:954
see class PGM_BASE
VECTOR2I end
@ WSG_POLY_T
Definition typeinfo.h:222
@ WSG_LINE_T
Definition typeinfo.h:220
@ WSG_TEXT_T
Definition typeinfo.h:223
@ WSG_PAGE_T
Definition typeinfo.h:225
@ WSG_RECT_T
Definition typeinfo.h:221
@ WSG_BITMAP_T
Definition typeinfo.h:224
VECTOR2< double > VECTOR2D
Definition vector2d.h:694