KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_painter.h
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) 2013 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Tomasz Wlostowski <[email protected]>
8 * @author Maciej Suminski <[email protected]>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
24#ifndef PCB_PAINTER_H
25#define PCB_PAINTER_H
26
27#include <frame_type.h>
28#include <gal/painter.h>
29#include <padstack.h> // PAD_DRILL_SHAPE
30#include <pcb_display_options.h>
31#include <math/vector2d.h>
32#include <memory>
34
35
36class EDA_ITEM;
39class BOARD_ITEM;
40class PCB_ARC;
41class BOARD;
42class PCB_VIA;
43class PCB_TRACK;
44class PAD;
45class PCB_SHAPE;
46class PCB_GROUP;
47class FOOTPRINT;
48class ZONE;
50class PCB_TEXT;
51class PCB_FIELD;
52class PCB_TEXTBOX;
53class PCB_TABLE;
55class PCB_BARCODE;
56class PCB_TARGET;
57class PCB_POINT;
58class PCB_MARKER;
59class NET_SETTINGS;
60class NETINFO_LIST;
61class TEXT_ATTRIBUTES;
63
64namespace KIFONT
65{
66class FONT;
67class METRICS;
68}
69
70namespace KIGFX
71{
72class GAL;
73
78{
79public:
80 friend class PCB_PAINTER;
81
83
90 void LoadDisplayOptions( const PCB_DISPLAY_OPTIONS& aOptions );
91
92 void LoadColors( const COLOR_SETTINGS* aSettings ) override;
93
95 COLOR4D GetColor( const VIEW_ITEM* aItem, int aLayer ) const override;
96
98 COLOR4D GetColor( const BOARD_ITEM* aItem, int aLayer ) const;
99
101 COLOR4D GetColor( std::nullptr_t, int aLayer ) const
102 {
103 return GetColor( static_cast<const BOARD_ITEM*>( nullptr ), aLayer );
104 }
105
106 bool GetShowPageLimits() const override;
107
108 inline bool IsBackgroundDark() const override
109 {
110 auto it = m_layerColors.find( LAYER_PCB_BACKGROUND );
111
112 if( it == m_layerColors.end() )
113 return false;
114
115 return it->second.GetBrightness() < 0.5;
116 }
117
118 const COLOR4D& GetBackgroundColor() const override
119 {
120 auto it = m_layerColors.find( LAYER_PCB_BACKGROUND );
121 return it == m_layerColors.end() ? COLOR4D::BLACK : it->second;
122 }
123
124 void SetBackgroundColor( const COLOR4D& aColor ) override
125 {
127 }
128
129 const COLOR4D& GetGridColor() override { return m_layerColors[ LAYER_GRID ]; }
130
131 const COLOR4D& GetCursorColor() override { return m_layerColors[ LAYER_CURSOR ]; }
132
135
136 std::map<int, KIGFX::COLOR4D>& GetNetColorMap() { return m_netColors; }
137
138 std::set<int>& GetHiddenNets() { return m_hiddenNets; }
139 const std::set<int>& GetHiddenNets() const { return m_hiddenNets; }
140
141 // Net chain highlight support (grouped nets). Empty when no chain highlight active.
142 const wxString& GetHighlightedNetChain() const { return m_highlightedNetChain; }
143 void SetHighlightedNetChain( const wxString& aNetChain ) { m_highlightedNetChain = aNetChain; }
144
145public:
148
151
152 PAD* m_PadEditModePad; // Pad currently in Pad Edit Mode (if any)
153
154protected:
156 static const double MAX_FONT_SIZE;
157
160
162 std::map<wxString, KIGFX::COLOR4D> m_netclassColors;
163
165 std::map<int, KIGFX::COLOR4D> m_netColors;
166
168 std::set<int> m_hiddenNets;
169
170 // These opacity overrides multiply with any opacity in the base layer color
177
179};
180
181
185class PCB_PAINTER : public PAINTER
186{
187public:
188 PCB_PAINTER( GAL* aGal, FRAME_T aFrameType );
189
192 {
193 return &m_pcbSettings;
194 }
195
197 virtual bool Draw( const VIEW_ITEM* aItem, int aLayer ) override;
198
199protected:
201
202 // Drawing functions for various types of PCB-specific items
203 void draw( const PCB_TRACK* aTrack, int aLayer );
204 void draw( const PCB_ARC* aArc, int aLayer );
205 void draw( const PCB_VIA* aVia, int aLayer );
206 void draw( const PAD* aPad, int aLayer );
207 void draw( const PCB_SHAPE* aSegment, int aLayer );
208 void draw( const PCB_REFERENCE_IMAGE* aBitmap, int aLayer );
209 void draw( const PCB_FIELD* aField, int aLayer );
210 void draw( const PCB_TEXT* aText, int aLayer );
211 void draw( const PCB_TEXTBOX* aText, int aLayer );
212 void draw( const PCB_TABLE* aTable, int aLayer );
213 void draw( const FOOTPRINT* aFootprint, int aLayer );
214 void draw( const PCB_GROUP* aGroup, int aLayer );
215 void draw( const ZONE* aZone, int aLayer );
216 void draw( const PCB_BARCODE* aBarcode, int aLayer );
217 void draw( const PCB_DIMENSION_BASE* aDimension, int aLayer );
218 void draw( const PCB_POINT* aPoint, int aLayer );
219 void draw( const PCB_TARGET* aTarget );
220 void draw( const PCB_MARKER* aMarker, int aLayer );
221 void draw( const PCB_BOARD_OUTLINE* aBoardOutline, int aLayer );
222
229 int getLineThickness( int aActualThickness ) const;
230
234 virtual PAD_DRILL_SHAPE getDrillShape( const PAD* aPad ) const;
235
239 virtual SHAPE_SEGMENT getPadHoleShape( const PAD* aPad ) const;
240
244 virtual int getViaDrillSize( const PCB_VIA* aVia ) const;
245
246 void strokeText( const wxString& aText, const VECTOR2I& aPosition,
247 const TEXT_ATTRIBUTES& aAttrs, const KIFONT::METRICS& aFontMetrics );
248
249 void renderNetNameForSegment( const SHAPE_SEGMENT& aSeg, const COLOR4D& aColor, const wxString& aNetName ) const;
250
260 void drawBackdrillIndicator( const BOARD_ITEM* aItem, const VECTOR2D& aCenter,
261 int aDrillSize, PCB_LAYER_ID aStartLayer,
262 PCB_LAYER_ID aEndLayer );
263
271 void drawPostMachiningIndicator( const BOARD_ITEM* aItem, const VECTOR2D& aCenter, PCB_LAYER_ID aLayer );
272
273protected:
276
280};
281
282
290bool ZoneOutlineDrawnOnLayer( bool aIsRuleArea, int aLayer );
291
292} // namespace KIGFX
293
294#endif /* PCB_PAINTER_H */
HIGH_CONTRAST_MODE
Determine how inactive layers should be displayed.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:81
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
Color settings are a bit different than most of the settings objects in that there can be more than o...
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
FONT is an abstract base class for both outline and stroke fonts.
Definition font.h:94
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
static const COLOR4D BLACK
Definition color4d.h:402
Abstract interface for drawing on a 2D-surface.
PAINTER(GAL *aGal)
Initialize this object for painting on any of the polymorphic GRAPHICS_ABSTRACTION_LAYER* derivatives...
Definition painter.cpp:29
void drawPostMachiningIndicator(const BOARD_ITEM *aItem, const VECTOR2D &aCenter, PCB_LAYER_ID aLayer)
Draw post-machining indicator (dashed circle) at the given center point.
virtual SHAPE_SEGMENT getPadHoleShape(const PAD *aPad) const
Return hole shape for a pad (internal units).
PCB_PAINTER(GAL *aGal, FRAME_T aFrameType)
int getLineThickness(int aActualThickness) const
Get the thickness to draw for a line (e.g.
virtual PCB_RENDER_SETTINGS * GetSettings() override
Return a pointer to current settings that are going to be used when drawing items.
void renderNetNameForSegment(const SHAPE_SEGMENT &aSeg, const COLOR4D &aColor, const wxString &aNetName) const
PCB_VIEWERS_SETTINGS_BASE * viewer_settings()
void draw(const PCB_TRACK *aTrack, int aLayer)
virtual PAD_DRILL_SHAPE getDrillShape(const PAD *aPad) const
Return drill shape of a pad.
PCB_RENDER_SETTINGS m_pcbSettings
virtual int getViaDrillSize(const PCB_VIA *aVia) const
Return drill diameter for a via (internal units).
void strokeText(const wxString &aText, const VECTOR2I &aPosition, const TEXT_ATTRIBUTES &aAttrs, const KIFONT::METRICS &aFontMetrics)
void drawBackdrillIndicator(const BOARD_ITEM *aItem, const VECTOR2D &aCenter, int aDrillSize, PCB_LAYER_ID aStartLayer, PCB_LAYER_ID aEndLayer)
Draw backdrill indicator (two semi-circles) at the given center point.
virtual bool Draw(const VIEW_ITEM *aItem, int aLayer) override
Takes an instance of VIEW_ITEM and passes it to a function that knows how to draw the item.
PCB specific render settings.
Definition pcb_painter.h:78
void SetNetColorMode(NET_COLOR_MODE aMode)
double m_zoneOpacity
Opacity override for filled zones.
double m_trackOpacity
Opacity override for all tracks.
void SetHighlightedNetChain(const wxString &aNetChain)
const std::set< int > & GetHiddenNets() const
double m_imageOpacity
Opacity override for user images.
bool IsBackgroundDark() const override
std::set< int > & GetHiddenNets()
const COLOR4D & GetCursorColor() override
Return current cursor color settings.
double m_viaOpacity
Opacity override for all types of via.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
const COLOR4D & GetBackgroundColor() const override
Return current background color settings.
NET_COLOR_MODE GetNetColorMode() const
void LoadColors(const COLOR_SETTINGS *aSettings) override
double m_padOpacity
Opacity override for SMD pads and PTHs.
const COLOR4D & GetGridColor() override
Return current grid color settings.
COLOR4D GetColor(std::nullptr_t, int aLayer) const
void SetBackgroundColor(const COLOR4D &aColor) override
Set the background color.
const wxString & GetHighlightedNetChain() const
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...
std::set< int > m_hiddenNets
HIGH_CONTRAST_MODE m_ContrastModeDisplay
std::map< int, KIGFX::COLOR4D > m_netColors
Set of net codes that should not have their ratsnest displayed.
std::map< int, KIGFX::COLOR4D > & GetNetColorMap()
wxString m_highlightedNetChain
Active highlighted chain name (if any)
NET_COLOR_MODE m_netColorMode
Overrides for specific netclass colors.
static const double MAX_FONT_SIZE
< Maximum font size for netnames (and other dynamically shown strings)
double m_filledShapeOpacity
Opacity override for graphic shapes.
std::map< wxString, KIGFX::COLOR4D > m_netclassColors
Overrides for specific net colors, stored as netcodes for the ratsnest to access easily.
bool GetShowPageLimits() const override
void LoadDisplayOptions(const PCB_DISPLAY_OPTIONS &aOptions)
Load settings related to display options (high-contrast mode, full or outline modes for vias/pads/tra...
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:82
Container for NETINFO_ITEM elements, which are the nets.
Definition netinfo.h:221
NET_SETTINGS stores various net-related settings in a project context.
Definition pad.h:61
Abstract dimension API.
A set of BOARD_ITEMs (i.e., without duplicates).
Definition pcb_group.h:49
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
Definition pcb_point.h:39
Object to handle a bitmap image that can be inserted in a PCB.
Handle a list of polygons defining a copper zone.
Definition zone.h:70
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
Definition frame_type.h:29
@ LAYER_GRID
Definition layer_ids.h:250
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition layer_ids.h:277
@ LAYER_CURSOR
PCB cursor.
Definition layer_ids.h:278
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29
bool ZoneOutlineDrawnOnLayer(bool aIsRuleArea, int aLayer)
Decide which GAL draw pass paints a zone's outline.
PAD_DRILL_SHAPE
The set of pad drill shapes, used with PAD::{Set,Get}DrillShape()
Definition padstack.h:69
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
VECTOR2< double > VECTOR2D
Definition vector2d.h:682