KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_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) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2004-2021 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 TYPE_SCH_MARKER_H_
26#define TYPE_SCH_MARKER_H_
27
28#include <erc_item.h>
29#include <sch_item.h>
30#include <marker_base.h>
31
32
33class SCH_MARKER : public SCH_ITEM, public MARKER_BASE
34{
35public:
36 SCH_MARKER( std::shared_ptr<ERC_ITEM> aItem, const VECTOR2I& aPos );
37
39
40 // Do not create a copy constructor. The one generated by the compiler is adequate.
41
42 static inline bool ClassOf( const EDA_ITEM* aItem )
43 {
44 return aItem && SCH_MARKER_T == aItem->Type();
45 }
46
47 wxString GetClass() const override
48 {
49 return wxT( "SCH_MARKER" );
50 }
51
52 const KIID GetUUID() const override { return m_Uuid; }
53
54 void SwapData( SCH_ITEM* aItem ) override;
55
56 wxString SerializeToString() const;
57 static SCH_MARKER* DeserializeFromString( SCHEMATIC* schematic, const wxString& data );
58
59 void ViewGetLayers( int aLayers[], int& aCount ) const override;
60
62
63 SEVERITY GetSeverity() const override;
64
65 void Print( const SCH_RENDER_SETTINGS* aSettings, int aUnit, int aBodyStyle,
66 const VECTOR2I& aOffset, bool aForceNoFill, bool aDimmed ) override;
67
68 void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
69 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override
70 {
71 // SCH_MARKERs should not be plotted. However, SCH_ITEM will fail an assertion if we
72 // do not confirm this by locally implementing a no-op Plot().
73 }
74
75 BOX2I const GetBoundingBox() const override;
76
77 // Geometric transforms (used in block operations):
78
79 void Move( const VECTOR2I& aMoveVector ) override
80 {
81 m_Pos += aMoveVector;
82 }
83
84 void MirrorHorizontally( int aCenter ) override;
85 void MirrorVertically( int aCenter ) override;
86 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW ) override;
87
95 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxDat ) const override;
96
97 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
98
99 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const override
100 {
101 return wxString( _( "ERC Marker" ) );
102 }
103
104 BITMAPS GetMenuImage() const override;
105
106 VECTOR2I GetPosition() const override { return m_Pos; }
107 void SetPosition( const VECTOR2I& aPosition ) override { m_Pos = aPosition; }
108
109 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
110
111 EDA_ITEM* Clone() const override;
112
117 void SetIsLegacyMarker( bool isLegacyMarker = true ) { m_isLegacyMarker = isLegacyMarker; }
118
123 bool IsLegacyMarker() const { return m_isLegacyMarker; }
124
125 double Similarity( const SCH_ITEM& aOther ) const override
126 {
127 return 0.0;
128 }
129
130 bool operator==( const SCH_ITEM& aOther ) const override
131 {
132 return false;
133 }
134
135#if defined(DEBUG)
136 void Show( int nestLevel, std::ostream& os ) const override;
137#endif
138
139protected:
140 KIGFX::COLOR4D getColor() const override;
141
143};
144
145#endif // TYPE_SCH_MARKER_H_
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
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:88
const KIID m_Uuid
Definition: eda_item.h:485
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:100
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
Definition: kiid.h:49
VECTOR2I m_Pos
position of the marker
Definition: marker_base.h:135
Base plotter engine class.
Definition: plotter.h:104
Holds all the data relating to one schematic.
Definition: schematic.h:75
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:174
SEVERITY GetSeverity() const override
Definition: sch_marker.cpp:245
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition: sch_marker.h:68
void ViewGetLayers(int aLayers[], int &aCount) const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_marker.cpp:188
static SCH_MARKER * DeserializeFromString(SCHEMATIC *schematic, const wxString &data)
Definition: sch_marker.cpp:112
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxDat) const override
Compare DRC marker main and auxiliary text against search string.
Definition: sch_marker.cpp:263
bool operator==(const SCH_ITEM &aOther) const override
Definition: sch_marker.h:130
wxString GetClass() const override
Return the class name.
Definition: sch_marker.h:47
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_marker.cpp:326
const KIID GetUUID() const override
Definition: sch_marker.h:52
void Print(const SCH_RENDER_SETTINGS *aSettings, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aForceNoFill, bool aDimmed) override
Print an item.
Definition: sch_marker.cpp:256
bool m_isLegacyMarker
Definition: sch_marker.h:142
void SetIsLegacyMarker(bool isLegacyMarker=true)
Sets this marker as a legacy artifact.
Definition: sch_marker.h:117
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_marker.cpp:65
SCH_LAYER_ID GetColorLayer() const
Definition: sch_marker.cpp:222
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_marker.cpp:338
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
Definition: sch_marker.h:125
wxString SerializeToString() const
Definition: sch_marker.cpp:91
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: sch_marker.cpp:350
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
Definition: sch_marker.h:79
void SwapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
Definition: sch_marker.cpp:71
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
Definition: sch_marker.cpp:344
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: sch_marker.cpp:275
KIGFX::COLOR4D getColor() const override
Definition: sch_marker.cpp:238
BOX2I const GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_marker.cpp:269
bool IsLegacyMarker() const
Determines if this marker is legacy (i.e.
Definition: sch_marker.h:123
void SetPosition(const VECTOR2I &aPosition) override
Definition: sch_marker.h:107
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_marker.cpp:332
VECTOR2I GetPosition() const override
Definition: sch_marker.h:106
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider) const override
Return a user-visible description string of this item.
Definition: sch_marker.h:99
static bool ClassOf(const EDA_ITEM *aItem)
Definition: sch_marker.h:42
#define _(s)
SCH_LAYER_ID
Eeschema drawing layers.
Definition: layer_ids.h:353
SEVERITY
@ SCH_MARKER_T
Definition: typeinfo.h:158