KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_marker.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) 2009-2018 Jean-Pierre Charras, [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, 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#ifndef PCB_MARKER_H
26#define PCB_MARKER_H
27
28
29#include <board_item.h>
30#include <pcb_shape.h>
31#include <rc_item.h>
32#include <marker_base.h>
33
34class DRC_ITEM;
35
36// Coordinates count for the basic shape marker
37#define MARKER_SHAPE_POINT_COUNT 9
38
39class MSG_PANEL_ITEM;
40
41
42class PCB_MARKER : public BOARD_ITEM, public MARKER_BASE
43{
44public:
45 PCB_MARKER( std::shared_ptr<RC_ITEM> aItem, const VECTOR2I& aPos, int aLayer = F_Cu );
46
48
49 static inline bool ClassOf( const EDA_ITEM* aItem )
50 {
51 return aItem && PCB_MARKER_T == aItem->Type();
52 }
53
54 const KIID GetUUID() const override { return m_Uuid; }
55
56 wxString SerializeToString() const;
57
58 static PCB_MARKER* DeserializeFromString( const wxString& data );
59
60 void Move( const VECTOR2I& aMoveVector ) override
61 {
62 m_Pos += aMoveVector;
63 }
64
65 void Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle ) override;
66
67 void Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection ) override;
68
69 VECTOR2I GetPosition() const override { return m_Pos; }
70 void SetPosition( const VECTOR2I& aPos ) override { m_Pos = aPos; }
71
72 VECTOR2I GetCenter() const override
73 {
74 return GetPosition();
75 }
76
77 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override
78 {
80 return false;
81 else
82 return HitTestMarker( aPosition, aAccuracy );
83 }
84
85 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override
86 {
88 return false;
89
90 return HitTestMarker( aRect, aContained, aAccuracy );
91 }
92
93 bool HitTest( const SHAPE_LINE_CHAIN& aPoly, bool aContained ) const override
94 {
96 return false;
97
98 return HitTestMarker( aPoly, aContained );
99 }
100
101 EDA_ITEM* Clone() const override
102 {
103 return new PCB_MARKER( *this );
104 }
105
107
108 std::shared_ptr<SHAPE> GetEffectiveShape( PCB_LAYER_ID aLayer,
109 FLASHING aFlash = FLASHING::DEFAULT ) const override;
110
111 void TransformShapeToPolygon( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer, int aClearance,
112 int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth ) const override;
113
114
115 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
116
117 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override
118 {
119 return BOARD_ITEM::Matches( m_rcItem->GetErrorMessage(), aSearchData );
120 }
121
122 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
123
124 BITMAPS GetMenuImage() const override;
125
126 void SetZoom( double aZoomFactor );
127
128 const BOX2I ViewBBox() const override;
129
130 const BOX2I GetBoundingBox() const override;
131
132 std::vector<int> ViewGetLayers() const override;
133
134 SEVERITY GetSeverity() const override;
135
136 double Similarity( const BOARD_ITEM& aBoardItem ) const override
137 {
138 return 0.0;
139 }
140
141 bool operator==( const BOARD_ITEM& aBoardItem ) const override
142 {
143 return false;
144 }
145
146#if defined(DEBUG)
147 void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
148#endif
149
153 virtual wxString GetClass() const override
154 {
155 return wxT( "PCB_MARKER" );
156 }
157
158 std::vector<PCB_SHAPE> GetShapes1() const { return m_shapes1; };
159 std::vector<PCB_SHAPE> GetShapes2() const { return m_shapes2; };
160
161 void SetShapes1( const std::vector<PCB_SHAPE>& aShapes ) { m_shapes1 = aShapes; };
162 void SetShapes2( const std::vector<PCB_SHAPE>& aShapes ) { m_shapes2 = aShapes; };
163
164
165protected:
166 KIGFX::COLOR4D getColor() const override;
167 std::vector<PCB_SHAPE> m_shapes1; // Shown on LAYER_DRC_SHAPE1
168 std::vector<PCB_SHAPE> m_shapes2; // Shown on LAYER_DRC_SHAPE2
169};
170
171#endif // PCB_MARKER_H
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
Definition: approximation.h:32
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:79
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:98
const KIID m_Uuid
Definition: eda_item.h:516
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:110
virtual bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const
Compare the item against the search criteria in aSearchData.
Definition: eda_item.h:401
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
Definition: kiid.h:49
Marker are mainly used to show a DRC or ERC error or warning.
Definition: marker_base.h:49
bool HitTestMarker(const VECTOR2I &aHitPosition, int aAccuracy) const
Test if the given VECTOR2I is within the bounds of this object.
Definition: marker_base.cpp:88
VECTOR2I m_Pos
Position of the marker.
Definition: marker_base.h:140
std::shared_ptr< RC_ITEM > m_rcItem
Definition: marker_base.h:146
enum MARKER_T GetMarkerType() const
Definition: marker_base.h:91
EDA_MSG_PANEL items for displaying messages.
Definition: msgpanel.h:54
const KIID GetUUID() const override
Definition: pcb_marker.h:54
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
Definition: pcb_marker.cpp:222
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth) const override
Convert the item shape to a closed polygon.
Definition: pcb_marker.cpp:286
std::vector< PCB_SHAPE > m_shapes2
Definition: pcb_marker.h:168
bool operator==(const BOARD_ITEM &aBoardItem) const override
Definition: pcb_marker.h:141
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer, FLASHING aFlash=FLASHING::DEFAULT) const override
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
Definition: pcb_marker.cpp:279
std::vector< PCB_SHAPE > m_shapes1
Definition: pcb_marker.h:167
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: pcb_marker.cpp:300
void Move(const VECTOR2I &aMoveVector) override
Move this object.
Definition: pcb_marker.h:60
const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
Definition: pcb_marker.cpp:383
virtual wxString GetClass() const override
Get class name.
Definition: pcb_marker.h:153
std::vector< int > ViewGetLayers() const override
Return the all the layers within the VIEW the object is painted on.
Definition: pcb_marker.cpp:327
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: pcb_marker.cpp:372
SEVERITY GetSeverity() const override
Definition: pcb_marker.cpp:306
static PCB_MARKER * DeserializeFromString(const wxString &data)
Definition: pcb_marker.cpp:160
std::vector< PCB_SHAPE > GetShapes1() const
Definition: pcb_marker.h:158
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Flip this object, i.e.
Definition: pcb_marker.cpp:273
void SetShapes2(const std::vector< PCB_SHAPE > &aShapes)
Definition: pcb_marker.h:162
bool HitTest(const BOX2I &aRect, bool aContained, int aAccuracy=0) const override
Test if aRect intersects this item.
Definition: pcb_marker.h:85
VECTOR2I GetCenter() const override
This defaults to the center of the bounding box if not overridden.
Definition: pcb_marker.h:72
wxString SerializeToString() const
Definition: pcb_marker.cpp:98
GAL_LAYER_ID GetColorLayer() const
Definition: pcb_marker.cpp:348
VECTOR2I GetPosition() const override
Definition: pcb_marker.h:69
KIGFX::COLOR4D getColor() const override
Definition: pcb_marker.cpp:360
static bool ClassOf(const EDA_ITEM *aItem)
Definition: pcb_marker.h:49
std::vector< PCB_SHAPE > GetShapes2() const
Definition: pcb_marker.h:159
double Similarity(const BOARD_ITEM &aBoardItem) const override
Return a measure of how likely the other object is to represent the same object.
Definition: pcb_marker.h:136
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
Definition: pcb_marker.h:117
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: pcb_marker.cpp:293
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: pcb_marker.h:101
void SetShapes1(const std::vector< PCB_SHAPE > &aShapes)
Definition: pcb_marker.h:161
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: pcb_marker.h:77
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
Definition: pcb_marker.cpp:267
bool HitTest(const SHAPE_LINE_CHAIN &aPoly, bool aContained) const override
Test if aPoly intersects this item.
Definition: pcb_marker.h:93
void SetZoom(double aZoomFactor)
Definition: pcb_marker.cpp:366
void SetPosition(const VECTOR2I &aPos) override
Definition: pcb_marker.h:70
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
Definition: layer_ids.h:184
GAL_LAYER_ID
GAL layers are "virtual" layers, i.e.
Definition: layer_ids.h:228
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ F_Cu
Definition: layer_ids.h:64
FLIP_DIRECTION
Definition: mirror.h:27
SEVERITY
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
Definition: typeinfo.h:99