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>
35
38
39#include <wx/app.h>
40
41using namespace KIGFX;
42
43static const wxString productName = wxT( "KiCad E.D.A." );
44
46{
47 m_backgroundColor = COLOR4D( 1.0, 1.0, 1.0, 1.0 );
50 m_brightenedColor = COLOR4D( 0.0, 1.0, 0.0, 0.9 );
51 m_pageBorderColor = COLOR4D( 0.4, 0.4, 0.4, 1.0 );
52
53 update();
54}
55
56
58{
59 for( int layer = SCH_LAYER_ID_START; layer < SCH_LAYER_ID_END; layer++ )
60 m_layerColors[ layer ] = aSettings->GetColor( layer );
61
62 for( int layer = GAL_LAYER_ID_START; layer < GAL_LAYER_ID_END; layer++ )
63 m_layerColors[ layer ] = aSettings->GetColor( layer );
64
68}
69
70
71COLOR4D DS_RENDER_SETTINGS::GetColor( const VIEW_ITEM* aItem, int aLayer ) const
72{
73 const EDA_ITEM* item = dynamic_cast<const EDA_ITEM*>( aItem );
74
75 if( item )
76 {
77 // Selection disambiguation
78 if( item->IsBrightened() )
79 return m_brightenedColor;
80
81 if( item->IsSelected() )
82 return m_selectedColor;
83
84 if( item->Type() == WSG_TEXT_T )
85 {
86 COLOR4D color = static_cast<const DS_DRAW_ITEM_TEXT*>( item )->GetTextColor();
87
89 return color;
90 }
91 }
92
93 return m_normalColor;
94}
95
96
97void DS_DRAW_ITEM_LIST::GetTextVars( wxArrayString* aVars )
98{
99 aVars->push_back( wxT( "KICAD_VERSION" ) );
100 aVars->push_back( wxT( "#" ) );
101 aVars->push_back( wxT( "##" ) );
102 aVars->push_back( wxT( "SHEETNAME" ) );
103 aVars->push_back( wxT( "SHEETPATH" ) );
104 aVars->push_back( wxT( "FILENAME" ) );
105 aVars->push_back( wxT( "FILEPATH" ) );
106 aVars->push_back( wxT( "PROJECTNAME" ) );
107 aVars->push_back( wxT( "PAPER" ) );
108 aVars->push_back( wxT( "LAYER" ) );
110}
111
112
113wxString DS_DRAW_ITEM_LIST::BuildFullText( const wxString& aTextbase )
114{
115 std::function<bool( wxString* )> wsResolver =
116 [&]( wxString* token ) -> bool
117 {
118 bool tokenUpdated = false;
119
120 if( token->IsSameAs( wxT( "KICAD_VERSION" ) ) && PgmOrNull() )
121 {
122 *token = wxString::Format( wxT( "%s %s" ), productName, GetBaseVersion() );
123 tokenUpdated = true;
124 }
125 else if( token->IsSameAs( wxT( "#" ) ) )
126 {
127 *token = wxString::Format( wxT( "%s" ), m_pageNumber );
128 tokenUpdated = true;
129 }
130 else if( token->IsSameAs( wxT( "##" ) ) )
131 {
132 *token = wxString::Format( wxT( "%d" ), m_sheetCount );
133 tokenUpdated = true;
134 }
135 else if( token->IsSameAs( wxT( "SHEETNAME" ) ) )
136 {
137 *token = m_sheetName;
138 tokenUpdated = true;
139 }
140 else if( token->IsSameAs( wxT( "SHEETPATH" ) ) )
141 {
142 *token = m_sheetPath;
143 tokenUpdated = true;
144 }
145 else if( token->IsSameAs( wxT( "FILENAME" ) ) )
146 {
147 wxFileName fn( m_fileName );
148 *token = fn.GetFullName();
149 tokenUpdated = true;
150 }
151 else if( token->IsSameAs( wxT( "FILEPATH" ) ) )
152 {
153 wxFileName fn( m_fileName );
154 *token = fn.GetFullPath();
155 return true;
156 }
157 else if( token->IsSameAs( wxT( "PAPER" ) ) )
158 {
159 *token = m_paperFormat;
160 tokenUpdated = true;
161 }
162 else if( token->IsSameAs( wxT( "LAYER" ) ) )
163 {
164 *token = m_sheetLayer;
165 tokenUpdated = true;
166 }
167 else if( m_titleBlock )
168 {
169 if( m_titleBlock->TextVarResolver( token, m_project, m_flags ) )
170 {
171 // No need for tokenUpdated; TITLE_BLOCK::TextVarResolver() already goes
172 // up to the project.
173 //
174 // However, the title block may have variables in it itself, so we need
175 // to run the worksheet resolver again.
176 //
177 const TITLE_BLOCK* savedTitleBlock = m_titleBlock;
178
179 m_titleBlock = nullptr;
180 {
181 *token = ExpandTextVars( *token, &wsResolver, m_flags );
182 }
183 m_titleBlock = savedTitleBlock;
184
185 return true;
186 }
187 }
188 else if( m_properties && m_properties->count( *token ) )
189 {
190 *token = m_properties->at( *token );
191 tokenUpdated = true;
192 }
193
194 if( tokenUpdated )
195 {
196 *token = ExpandTextVars( *token, m_project, m_flags );
197 return true;
198 }
199
200 if( m_project && m_project->TextVarResolver( token ) )
201 return true;
202
203 return false;
204 };
205
206 return ExpandTextVars( aTextbase, &wsResolver, m_flags );
207}
208
209
210bool KIGFX::DS_PAINTER::Draw( const VIEW_ITEM* aItem, int aLayer )
211{
212 auto item = dynamic_cast<const EDA_ITEM*>( aItem );
213
214 if( !item )
215 return false;
216
217 switch( item->Type() )
218 {
219 case WSG_LINE_T: draw( (DS_DRAW_ITEM_LINE*) item, aLayer ); break;
220 case WSG_POLY_T: draw( (DS_DRAW_ITEM_POLYPOLYGONS*) item, aLayer ); break;
221 case WSG_RECT_T: draw( (DS_DRAW_ITEM_RECT*) item, aLayer ); break;
222 case WSG_TEXT_T: draw( (DS_DRAW_ITEM_TEXT*) item, aLayer ); break;
223 case WSG_BITMAP_T: draw( (DS_DRAW_ITEM_BITMAP*) item, aLayer ); break;
224 case WSG_PAGE_T: draw( (DS_DRAW_ITEM_PAGE*) item, aLayer ); break;
225 default: return false;
226 }
227
228 return true;
229}
230
231
232void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_LINE* aItem, int aLayer ) const
233{
234 m_gal->SetIsStroke( true );
235 m_gal->SetIsFill( false );
236 m_gal->SetStrokeColor( m_renderSettings.GetColor( aItem, aLayer ) );
237 m_gal->SetLineWidth( std::max( aItem->GetPenWidth(), m_renderSettings.GetDefaultPenWidth() ) );
238 m_gal->DrawLine( VECTOR2D( aItem->GetStart() ), VECTOR2D( aItem->GetEnd() ) );
239}
240
241
242void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_RECT* aItem, int aLayer ) const
243{
244 m_gal->SetIsStroke( true );
245 m_gal->SetIsFill( false );
246 m_gal->SetStrokeColor( m_renderSettings.GetColor( aItem, aLayer ) );
247 m_gal->SetLineWidth( std::max( aItem->GetPenWidth(), m_renderSettings.GetDefaultPenWidth() ) );
248 m_gal->DrawRectangle( VECTOR2D( aItem->GetStart() ), VECTOR2D( aItem->GetEnd() ) );
249}
250
251
252void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_POLYPOLYGONS* aItem, int aLayer ) const
253{
254 m_gal->SetFillColor( m_renderSettings.GetColor( aItem, aLayer ) );
255 m_gal->SetIsFill( true );
256 m_gal->SetIsStroke( false );
257
259
260 for( int idx = 0; idx < item->GetPolygons().OutlineCount(); ++idx )
261 {
262 SHAPE_LINE_CHAIN& outline = item->GetPolygons().Outline( idx );
263 m_gal->DrawPolygon( outline );
264 }
265}
266
267
268void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_TEXT* aItem, int aLayer ) const
269{
270 KIFONT::FONT* font = aItem->GetFont();
271
272 if( !font )
273 {
274 font = KIFONT::FONT::GetFont( m_renderSettings.GetDefaultFont(), aItem->IsBold(),
275 aItem->IsItalic(), nullptr, true );
276 }
277
278 const COLOR4D& color = m_renderSettings.GetColor( aItem, aLayer );
279
280 m_gal->SetStrokeColor( color );
281 m_gal->SetFillColor( color );
282
283 TEXT_ATTRIBUTES attrs = aItem->GetAttributes();
284 attrs.m_StrokeWidth = std::max( aItem->GetEffectiveTextPenWidth(),
285 m_renderSettings.GetDefaultPenWidth() );
286
287 font->Draw( m_gal, aItem->GetShownText( true ), aItem->GetTextPos(), attrs,
288 aItem->GetFontMetrics() );
289}
290
291
292void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_BITMAP* aItem, int aLayer ) const
293{
294 m_gal->Save();
295 auto* bitmap = static_cast<DS_DATA_ITEM_BITMAP*>( aItem->GetPeer() );
296
297 VECTOR2D position = aItem->GetPosition();
298 m_gal->Translate( position );
299
300 // If we've failed to read the bitmap data, don't try to draw it
301 if( !( bitmap && bitmap->m_ImageBitmap
302 && bitmap->m_ImageBitmap->GetImageData() ) )
303 {
304 return;
305 }
306
307 // When the image scale factor is not 1.0, we need to modify the actual scale
308 // as the image scale factor is similar to a local zoom
309 double img_scale = bitmap->m_ImageBitmap->GetScale();
310
311 if( img_scale != 1.0 )
312 m_gal->Scale( VECTOR2D( img_scale, img_scale ) );
313
314 m_gal->DrawBitmap( *bitmap->m_ImageBitmap );
315
316#if 0 // For bounding box debug purpose only
317 BOX2I bbox = aItem->GetBoundingBox();
318 m_gal->SetIsFill( true );
319 m_gal->SetIsStroke( true );
320 m_gal->SetFillColor( COLOR4D( 1, 1, 1, 0.4 ) );
321 m_gal->SetStrokeColor( COLOR4D( 0, 0, 0, 1 ) );
322
323 if( img_scale != 1.0 )
324 m_gal->Scale( VECTOR2D( 1.0, 1.0 ) );
325
326 m_gal->DrawRectangle( VECTOR2D( bbox.GetOrigin() ) - position,
327 VECTOR2D( bbox.GetEnd() ) - position );
328#endif
329
330 m_gal->Restore();
331}
332
333
334void KIGFX::DS_PAINTER::draw( const DS_DRAW_ITEM_PAGE* aItem, int aLayer ) const
335{
336 VECTOR2D origin = VECTOR2D( 0.0, 0.0 );
337 VECTOR2D end = VECTOR2D( aItem->GetPageSize().x,
338 aItem->GetPageSize().y );
339
340 m_gal->SetIsStroke( true );
341
342 // Use a gray color for the border color
343 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
344 m_gal->SetIsFill( false );
345 m_gal->SetLineWidth( m_renderSettings.GetDefaultPenWidth() );
346
347 m_gal->DrawRectangle( origin, end );
348
349 // Draw the corner marker
350 double marker_size = aItem->GetMarkerSize();
351
352 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
353 VECTOR2D pos = VECTOR2D( aItem->GetMarkerPos().x, aItem->GetMarkerPos().y );
354
355 // Draw a circle and a X
356 m_gal->DrawCircle( pos, marker_size );
357 m_gal->DrawLine( VECTOR2D( pos.x - marker_size, pos.y - marker_size),
358 VECTOR2D( pos.x + marker_size, pos.y + marker_size ) );
359 m_gal->DrawLine( VECTOR2D( pos.x + marker_size, pos.y - marker_size),
360 VECTOR2D( pos.x - marker_size, pos.y + marker_size ) );
361}
362
363
364void KIGFX::DS_PAINTER::DrawBorder( const PAGE_INFO* aPageInfo, int aScaleFactor ) const
365{
366 VECTOR2D origin = VECTOR2D( 0.0, 0.0 );
367 VECTOR2D end = VECTOR2D( aPageInfo->GetWidthMils() * aScaleFactor,
368 aPageInfo->GetHeightMils() * aScaleFactor );
369
370 m_gal->SetIsStroke( true );
371
372 // Use a gray color for the border color
373 m_gal->SetStrokeColor( m_renderSettings.m_pageBorderColor );
374 m_gal->SetIsFill( false );
375 m_gal->SetLineWidth( m_renderSettings.GetDefaultPenWidth() );
376 m_gal->DrawRectangle( origin, end );
377}
int color
Definition: DXF_plotter.cpp:60
BASE_SCREEN class implementation.
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
Definition: ds_draw_item.h:70
DS_DATA_ITEM * GetPeer() const
Definition: ds_draw_item.h:63
const KIFONT::METRICS & GetFontMetrics() const
VECTOR2I GetPosition() const override
Definition: ds_draw_item.h:373
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
const VECTOR2I & GetStart() const
Definition: ds_draw_item.h:144
const VECTOR2I & GetEnd() const
Definition: ds_draw_item.h:146
static void GetTextVars(wxArrayString *aVars)
Definition: ds_painter.cpp:97
wxString BuildFullText(const wxString &aTextbase)
Definition: ds_painter.cpp:113
A rectangle with thick segment showing the page limits and a marker showing the coordinate origin.
Definition: ds_draw_item.h:266
const VECTOR2I & GetMarkerPos() const
Definition: ds_draw_item.h:280
double GetMarkerSize() const
Definition: ds_draw_item.h:283
VECTOR2I GetPageSize() const
Definition: ds_draw_item.h:278
SHAPE_POLY_SET & GetPolygons()
Definition: ds_draw_item.h:182
Non filled rectangle with thick segment.
Definition: ds_draw_item.h:218
const VECTOR2I & GetEnd() const
Definition: ds_draw_item.h:233
const VECTOR2I & GetStart() const
Definition: ds_draw_item.h:231
A graphic text.
Definition: ds_draw_item.h:313
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:101
bool IsSelected() const
Definition: eda_item.h:110
bool IsBrightened() const
Definition: eda_item.h:112
const VECTOR2I & GetTextPos() const
Definition: eda_text.h:260
bool IsItalic() const
Definition: eda_text.h:156
KIFONT::FONT * GetFont() const
Definition: eda_text.h:234
const TEXT_ATTRIBUTES & GetAttributes() const
Definition: eda_text.h:218
int GetEffectiveTextPenWidth(int aDefaultPenWidth=0) const
The EffectiveTextPenWidth uses the text thickness if > 1 or aDefaultPenWidth.
Definition: eda_text.cpp:456
bool IsBold() const
Definition: eda_text.h:171
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
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:146
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:249
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
COLOR4D Brightened(double aFactor) const
Return a color that is brighter by a given factor, without modifying object.
Definition: color4d.h:268
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
Definition: ds_painter.cpp:364
void draw(const DS_DRAW_ITEM_LINE *aItem, int aLayer) const
Definition: ds_painter.cpp:232
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.
Definition: ds_painter.cpp:210
void LoadColors(const COLOR_SETTINGS *aSettings) override
Definition: ds_painter.cpp:57
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...
Definition: ds_painter.cpp:71
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:59
double GetHeightMils() const
Definition: page_info.h:141
double GetWidthMils() const
Definition: page_info.h:136
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.
int OutlineCount() const
Return the number of outlines 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)
Definition: title_block.cpp:75
@ RED
Definition: color4d.h:59
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject, int aFlags)
Definition: common.cpp:59
The common library.
static const wxString productName
Definition: ds_painter.cpp:43
@ GAL_LAYER_ID_START
Definition: layer_ids.h:192
@ GAL_LAYER_ID_END
Definition: layer_ids.h:313
@ SCH_LAYER_ID_END
Definition: layer_ids.h:455
@ SCH_LAYER_ID_START
Definition: layer_ids.h:402
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:447
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:440
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:438
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:247
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:1081
see class PGM_BASE
@ WSG_POLY_T
Definition: typeinfo.h:217
@ WSG_LINE_T
Definition: typeinfo.h:215
@ WSG_TEXT_T
Definition: typeinfo.h:218
@ WSG_PAGE_T
Definition: typeinfo.h:220
@ WSG_RECT_T
Definition: typeinfo.h:216
@ WSG_BITMAP_T
Definition: typeinfo.h:219
VECTOR2< double > VECTOR2D
Definition: vector2d.h:694