KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_shape.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 (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
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#include <sch_draw_panel.h>
26#include <macros.h>
27#include <plotters/plotter.h>
28#include <base_units.h>
29#include <widgets/msgpanel.h>
30#include <bitmaps.h>
31#include <eda_draw_frame.h>
32#include <gr_basic.h>
34#include <schematic.h>
35#include <api/api_utils.h>
36#include <api/schematic/schematic_types.pb.h>
37#include <sch_shape.h>
38#include <properties/property.h>
40
41
42SCH_SHAPE::SCH_SHAPE( SHAPE_T aShape, SCH_LAYER_ID aLayer, int aLineWidth, FILL_T aFillType,
43 KICAD_T aType ) :
44 SCH_ITEM( nullptr, aType ),
45 EDA_SHAPE( aShape, aLineWidth, aFillType )
46{
47 SetLayer( aLayer );
48}
49
50
52{
53 return new SCH_SHAPE( *this );
54}
55
56
57void SCH_SHAPE::Serialize( google::protobuf::Any& aContainer ) const
58{
59 using namespace kiapi::common;
60
61 kiapi::schematic::types::SchematicGraphicShape msg;
62 google::protobuf::Any any;
63
64 msg.mutable_id()->set_value( m_Uuid.AsStdString() );
65 msg.set_locked( IsLocked() ? types::LockedState::LS_LOCKED : types::LockedState::LS_UNLOCKED );
66
68 any.UnpackTo( msg.mutable_shape() );
69
70 aContainer.PackFrom( msg );
71}
72
73
74bool SCH_SHAPE::Deserialize( const google::protobuf::Any& aContainer )
75{
76 using namespace kiapi::common;
77
78 kiapi::schematic::types::SchematicGraphicShape msg;
79
80 if( !aContainer.UnpackTo( &msg ) )
81 return false;
82
83 const_cast<KIID&>( m_Uuid ) = KIID( msg.id().value() );
84 SetLocked( msg.locked() == types::LockedState::LS_LOCKED );
85
86 google::protobuf::Any any;
87 any.PackFrom( msg.shape() );
89}
90
91
93{
94 SCH_SHAPE* shape = static_cast<SCH_SHAPE*>( aItem );
95
96 EDA_SHAPE::SwapShape( shape );
97}
98
99
101{
102 m_stroke = aStroke;
103}
104
105
106void SCH_SHAPE::SetFilled( bool aFilled )
107{
108 if( !aFilled )
110 else if( GetParentSymbol() )
112 else
114}
115
116
117void SCH_SHAPE::Move( const VECTOR2I& aOffset )
118{
119 move( aOffset );
120}
121
122
124{
126 {
127 VECTOR2I size = GetEnd() - GetPosition();
128
129 if( size.y < 0 )
130 {
131 SetStartY( GetStartY() + size.y );
132 SetEndY( GetStartY() - size.y );
133 }
134
135 if( size.x < 0 )
136 {
137 SetStartX( GetStartX() + size.x );
138 SetEndX( GetStartX() - size.x );
139 }
140 }
141}
142
143
145{
146 flip( VECTOR2I( aCenter, 0 ), FLIP_DIRECTION::LEFT_RIGHT );
147}
148
149
151{
152 flip( VECTOR2I( 0, aCenter ), FLIP_DIRECTION::TOP_BOTTOM );
153}
154
155
156void SCH_SHAPE::Rotate( const VECTOR2I& aCenter, bool aRotateCCW )
157{
158 rotate( aCenter, aRotateCCW ? ANGLE_90 : ANGLE_270 );
159}
160
161
162bool SCH_SHAPE::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
163{
164 return hitTest( aPosition, aAccuracy );
165}
166
167
168bool SCH_SHAPE::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const
169{
171 return false;
172
173 return hitTest( aRect, aContained, aAccuracy );
174}
175
176
177bool SCH_SHAPE::HitTest( const SHAPE_LINE_CHAIN& aPoly, bool aContained ) const
178{
180 return false;
181
182 std::vector<SHAPE*> shapes = MakeEffectiveShapes( false );
183
184 for( SHAPE* shape : shapes )
185 {
186 bool hit = KIGEOM::ShapeHitTest( aPoly, *shape, aContained );
187
188 if( hit )
189 {
190 for( SHAPE* s : shapes )
191 delete s;
192 return true;
193 }
194 }
195
196 for( SHAPE* shape : shapes )
197 delete shape;
198
199 return false;
200}
201
202
203bool SCH_SHAPE::IsEndPoint( const VECTOR2I& aPt ) const
204{
205 SHAPE_T shape = GetShape();
206
207 if( shape == SHAPE_T::ARC || shape == SHAPE_T::BEZIER || shape == SHAPE_T::SEGMENT )
208 return ( aPt == GetStart() ) || ( aPt == GetEnd() );
209
210 if( shape == SHAPE_T::RECTANGLE )
211 {
212 for( const VECTOR2I& corner : GetRectCorners() )
213 {
214 if( corner == aPt )
215 return true;
216 }
217
218 return false;
219 }
220
221 if( shape == SHAPE_T::POLY )
222 {
223 for( const VECTOR2I& pt : GetPolyPoints() )
224 {
225 if( pt == aPt )
226 return true;
227 }
228
229 return false;
230 }
231
232 return false;
233}
234
235
236void SCH_SHAPE::Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
237 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed )
238{
239 if( IsPrivate() )
240 return;
241
242 // note: if aBodyStyle == -1 the outline shape is not plotted. Only the filled area
243 // is plotted (used to plot cells for SCH_TABLE items
244
245 SCH_RENDER_SETTINGS* renderSettings = getRenderSettings( aPlotter );
246 int pen_size = GetEffectivePenWidth( renderSettings );
247
248 static std::vector<VECTOR2I> ptList;
249
250 if( GetShape() == SHAPE_T::POLY )
251 {
252 ptList.clear();
253
254 for( const VECTOR2I& pt : GetPolyShape().Outline( 0 ).CPoints() )
255 ptList.push_back( renderSettings->TransformCoordinate( pt ) + aOffset );
256 }
257 else if( GetShape() == SHAPE_T::BEZIER )
258 {
259 ptList.clear();
260
261 for( const VECTOR2I& pt : m_bezierPoints )
262 ptList.push_back( renderSettings->TransformCoordinate( pt ) + aOffset );
263 }
264
265 COLOR4D color = GetStroke().GetColor();
266 COLOR4D bg = renderSettings->GetBackgroundColor();
267 LINE_STYLE lineStyle = GetStroke().GetLineStyle();
268 FILL_T fill = m_fill;
269
270 if( aBackground )
271 {
272 switch( m_fill )
273 {
275 // Fill in the foreground layer
276 return;
277
278 case FILL_T::HATCH:
281 if( !aPlotter->GetColorMode() || color == COLOR4D::UNSPECIFIED )
282 color = renderSettings->GetLayerColor( m_layer );
283
284 color.a = color.a * 0.4;
285 break;
286
288 // drop separate fills in B&W mode
289 if( !aPlotter->GetColorMode() && pen_size > 0 )
290 return;
291
292 color = GetFillColor();
293
294 if( color == COLOR4D::UNSPECIFIED )
295 color = renderSettings->GetLayerColor( m_layer );
296
297 break;
298
300 // drop fill in B&W mode
301 if( !aPlotter->GetColorMode() )
302 return;
303
304 color = renderSettings->GetLayerColor( LAYER_DEVICE_BACKGROUND );
305 break;
306
307 default:
308 return;
309 }
310
311 pen_size = 0;
312 lineStyle = LINE_STYLE::SOLID;
313 }
314 else /* if( aForeground ) */
315 {
316 if( !aPlotter->GetColorMode() || color == COLOR4D::UNSPECIFIED )
317 color = renderSettings->GetLayerColor( m_layer );
318
319 if( lineStyle == LINE_STYLE::DEFAULT )
320 lineStyle = LINE_STYLE::SOLID;
321
323 fill = m_fill;
324 else
325 fill = FILL_T::NO_FILL;
326
327 pen_size = aBodyStyle == -1 ? 0 : GetEffectivePenWidth( renderSettings );
328 }
329
330 if( bg == COLOR4D::UNSPECIFIED || !aPlotter->GetColorMode() )
331 bg = COLOR4D::WHITE;
332
333 if( color.m_text && Schematic() )
334 color = COLOR4D( ResolveText( *color.m_text, &Schematic()->CurrentSheet() ) );
335
336 if( aDimmed )
337 {
338 color.Desaturate( );
339 color = color.Mix( bg, 0.5f );
340 }
341
342 aPlotter->SetColor( color );
343
344 if( aBackground && IsHatchedFill() )
345 {
346 for( int ii = 0; ii < GetHatching().OutlineCount(); ++ii )
347 aPlotter->PlotPoly( GetHatching().COutline( ii ), FILL_T::FILLED_SHAPE, 0, nullptr );
348
349 return;
350 }
351
352 aPlotter->SetCurrentLineWidth( pen_size );
353 aPlotter->SetDash( pen_size, lineStyle );
354
355 VECTOR2I start = renderSettings->TransformCoordinate( m_start ) + aOffset;
356 VECTOR2I end = renderSettings->TransformCoordinate( m_end ) + aOffset;
357 VECTOR2I mid, center;
358
359 switch( GetShape() )
360 {
361 case SHAPE_T::ARC:
362 mid = renderSettings->TransformCoordinate( GetArcMid() ) + aOffset;
363 aPlotter->Arc( start, mid, end, fill, pen_size );
364 break;
365
366 case SHAPE_T::CIRCLE:
367 center = renderSettings->TransformCoordinate( getCenter() ) + aOffset;
368 aPlotter->Circle( center, GetRadius() * 2, fill, pen_size );
369 break;
370
372 aPlotter->Rect( start, end, fill, pen_size, GetCornerRadius() );
373 break;
374
375 case SHAPE_T::POLY:
376 case SHAPE_T::BEZIER:
377 aPlotter->PlotPoly( ptList, fill, pen_size, nullptr );
378 break;
379
380 default:
382 }
383
384 aPlotter->SetDash( pen_size, LINE_STYLE::SOLID );
385}
386
387
389{
390 if( GetPenWidth() > 0 )
391 return GetPenWidth();
392
393 // Historically 0 meant "default width" and negative numbers meant "don't stroke".
394 if( GetPenWidth() < 0 )
395 return 0;
396
397 SCHEMATIC* schematic = Schematic();
398
399 if( schematic )
400 return schematic->Settings().m_DefaultLineWidth;
401
402 return schIUScale.MilsToIU( DEFAULT_LINE_WIDTH_MILS );
403}
404
405
407{
408 return getBoundingBox();
409}
410
411
412void SCH_SHAPE::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
413{
414 SCH_ITEM::GetMsgPanelInfo( aFrame, aList );
415
416 ShapeGetMsgPanelInfo( aFrame, aList );
417}
418
419
420wxString SCH_SHAPE::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const
421{
422 switch( GetShape() )
423 {
424 case SHAPE_T::ARC:
425 return wxString::Format( _( "Arc, radius %s" ),
426 aUnitsProvider->MessageTextFromValue( GetRadius() ) );
427
428 case SHAPE_T::CIRCLE:
429 return wxString::Format( _( "Circle, radius %s" ),
430 aUnitsProvider->MessageTextFromValue( GetRadius() ) );
431
433 return wxString::Format( _( "Rectangle, width %s height %s" ),
434 aUnitsProvider->MessageTextFromValue( std::abs( m_start.x - m_end.x ) ),
435 aUnitsProvider->MessageTextFromValue( std::abs( m_start.y - m_end.y ) ) );
436
437 case SHAPE_T::POLY:
438 return wxString::Format( _( "Polyline, %d points" ),
439 int( GetPolyShape().Outline( 0 ).GetPointCount() ) );
440
441 case SHAPE_T::BEZIER:
442 return wxString::Format( _( "Bezier Curve, %d points" ),
443 int( m_bezierPoints.size() ) );
444
445 default:
447 return wxEmptyString;
448 }
449}
450
451
453{
454 switch( GetShape() )
455 {
457 case SHAPE_T::ARC: return BITMAPS::add_arc;
462
463 default:
466 }
467}
468
469
470std::vector<int> SCH_SHAPE::ViewGetLayers() const
471{
472 std::vector<int> layers( 3 );
473
474 layers[0] = IsPrivate() ? LAYER_PRIVATE_NOTES : m_layer;
475
476 if( m_layer == LAYER_DEVICE )
477 {
479 layers[1] = LAYER_DEVICE_BACKGROUND;
480 else
481 layers[1] = LAYER_SHAPES_BACKGROUND;
482 }
483 else
484 {
485 layers[1] = LAYER_SHAPES_BACKGROUND;
486 }
487
488 layers[2] = LAYER_SELECTION_SHADOWS;
489
490 return layers;
491}
492
493
494void SCH_SHAPE::AddPoint( const VECTOR2I& aPosition )
495{
496 if( GetShape() == SHAPE_T::POLY )
497 {
498 if( GetPolyShape().IsEmpty() )
499 {
501 GetPolyShape().Outline( 0 ).SetClosed( false );
502 }
503
504 GetPolyShape().Outline( 0 ).Append( aPosition, true );
505 }
506 else
507 {
509 }
510}
511
512
513bool SCH_SHAPE::operator==( const SCH_ITEM& aOther ) const
514{
515 if( aOther.Type() != Type() )
516 return false;
517
518 const SCH_SHAPE& other = static_cast<const SCH_SHAPE&>( aOther );
519
520 return SCH_ITEM::operator==( aOther ) && EDA_SHAPE::operator==( other );
521}
522
523
524double SCH_SHAPE::Similarity( const SCH_ITEM& aOther ) const
525{
526 if( m_Uuid == aOther.m_Uuid )
527 return 1.0;
528
529 if( aOther.Type() != Type() )
530 return 0.0;
531
532 const SCH_SHAPE& other = static_cast<const SCH_SHAPE&>( aOther );
533
534 double similarity = SimilarityBase( other );
535
536 similarity *= EDA_SHAPE::Similarity( other );
537
538 return similarity;
539}
540
541
542int SCH_SHAPE::compare( const SCH_ITEM& aOther, int aCompareFlags ) const
543{
544 int cmpFlags = aCompareFlags;
545
546 // The object UUIDs must be compared after the shape coordinates because shapes do not
547 // have immutable UUIDs.
550
551 int retv = SCH_ITEM::compare( aOther, cmpFlags );
552
553 if( retv )
554 return retv;
555
556 retv = EDA_SHAPE::Compare( &static_cast<const SCH_SHAPE&>( aOther ) );
557
558 if( retv )
559 return retv;
560
561 if( ( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::EQUALITY )
562 || ( aCompareFlags & SCH_ITEM::COMPARE_FLAGS::ERC ) )
563 {
564 return 0;
565 }
566
567 if( m_Uuid < aOther.m_Uuid )
568 return -1;
569
570 if( m_Uuid > aOther.m_Uuid )
571 return 1;
572
573 return 0;
574}
575
576
577static struct SCH_SHAPE_DESC
578{
580 {
582
583 if( fillEnum.Choices().GetCount() == 0 )
584 {
585 fillEnum.Map( FILL_T::NO_FILL, _HKI( "None" ) )
586 .Map( FILL_T::FILLED_SHAPE, _HKI( "Body outline color" ) )
587 .Map( FILL_T::FILLED_WITH_BG_BODYCOLOR, _HKI( "Body background color" ) )
588 .Map( FILL_T::FILLED_WITH_COLOR, _HKI( "Fill color" ) );
589 }
590
597
598 // Only polygons have meaningful Position properties.
599 // On other shapes, these are duplicates of the Start properties.
600 auto isPolygon =
601 []( INSPECTABLE* aItem ) -> bool
602 {
603 if( SCH_SHAPE* shape = dynamic_cast<SCH_SHAPE*>( aItem ) )
604 return shape->GetShape() == SHAPE_T::POLY;
605
606 return false;
607 };
608
609 auto isSymbolItem =
610 []( INSPECTABLE* aItem ) -> bool
611 {
612 if( SCH_SHAPE* shape = dynamic_cast<SCH_SHAPE*>( aItem ) )
613 return shape->GetLayer() == LAYER_DEVICE;
614
615 return false;
616 };
617
618 auto isSchematicItem =
619 []( INSPECTABLE* aItem ) -> bool
620 {
621 if( SCH_SHAPE* shape = dynamic_cast<SCH_SHAPE*>( aItem ) )
622 return shape->GetLayer() != LAYER_DEVICE;
623
624 return false;
625 };
626
627 auto isFillColorEditable =
628 []( INSPECTABLE* aItem ) -> bool
629 {
630 if( SCH_SHAPE* shape = dynamic_cast<SCH_SHAPE*>( aItem ) )
631 {
632 if( shape->GetParentSymbol() )
633 return shape->GetFillMode() == FILL_T::FILLED_WITH_COLOR;
634 else
635 return shape->IsSolidFill();
636 }
637
638 return true;
639 };
640
642 _HKI( "Position X" ), isPolygon );
644 _HKI( "Position Y" ), isPolygon );
645
647 _HKI( "Filled" ), isSchematicItem );
648
650 _HKI( "Fill Color" ), isFillColorEditable );
651
652 void ( SCH_SHAPE::*fillModeSetter )( FILL_T ) = &SCH_SHAPE::SetFillMode;
653 FILL_T ( SCH_SHAPE::*fillModeGetter )() const = &SCH_SHAPE::GetFillMode;
654
655 propMgr.AddProperty( new PROPERTY_ENUM<SCH_SHAPE, FILL_T>( _HKI( "Fill Mode" ),
656 fillModeSetter, fillModeGetter ),
657 _HKI( "Shape Properties" ) )
658 .SetAvailableFunc( isSymbolItem );
659 }
661
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:127
BITMAPS
A list of all bitmap identifiers.
@ add_rectangle
@ add_graphical_segments
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
static const COLOR4D WHITE
Definition color4d.h:405
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
Definition color4d.h:402
The base class for create windows for drawing purpose.
const KIID m_Uuid
Definition eda_item.h:528
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:112
EDA_ITEM_FLAGS m_flags
Definition eda_item.h:539
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:41
void SetStartX(int x)
Definition eda_shape.h:208
VECTOR2I getCenter() const
int GetStartY() const
Definition eda_shape.h:191
void rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle)
const SHAPE_POLY_SET & GetHatching() const
FILL_T GetFillMode() const
Definition eda_shape.h:158
void SetEndY(int aY)
Definition eda_shape.h:243
std::vector< VECTOR2I > GetPolyPoints() const
Duplicate the polygon outlines into a flat list of VECTOR2I points.
void SetStartY(int y)
Definition eda_shape.h:201
SHAPE_POLY_SET & GetPolyShape()
void ShapeGetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList)
bool operator==(const EDA_SHAPE &aOther) const
int GetRadius() const
SHAPE_T GetShape() const
Definition eda_shape.h:185
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
bool IsHatchedFill() const
Definition eda_shape.h:140
bool hitTest(const VECTOR2I &aPosition, int aAccuracy=0) const
void SetEndX(int aX)
Definition eda_shape.h:250
void flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection)
EDA_SHAPE(SHAPE_T aType, int aLineWidth, FILL_T aFill)
Definition eda_shape.cpp:55
VECTOR2I m_start
Definition eda_shape.h:530
int GetPointCount() const
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
Definition eda_shape.h:232
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
Definition eda_shape.h:190
COLOR4D GetFillColor() const
Definition eda_shape.h:169
void SwapShape(EDA_SHAPE *aImage)
std::vector< VECTOR2I > GetRectCorners() const
std::vector< VECTOR2I > m_bezierPoints
Definition eda_shape.h:539
wxString SHAPE_T_asString() const
int GetStartX() const
Definition eda_shape.h:192
double Similarity(const EDA_SHAPE &aOther) const
VECTOR2I m_end
Definition eda_shape.h:531
const BOX2I getBoundingBox() const
STROKE_PARAMS m_stroke
Definition eda_shape.h:519
FILL_T m_fill
Definition eda_shape.h:520
int GetCornerRadius() const
void SetFillMode(FILL_T aFill)
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
int Compare(const EDA_SHAPE *aOther) const
VECTOR2I GetArcMid() const
ENUM_MAP & Map(T aValue, const wxString &aName)
Definition property.h:727
static ENUM_MAP< T > & Instance()
Definition property.h:721
wxPGChoices & Choices()
Definition property.h:770
Class that other classes need to inherit from, in order to be inspectable.
Definition inspectable.h:38
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:105
std::shared_ptr< wxString > m_text
Definition color4d.h:399
double a
Alpha component.
Definition color4d.h:396
COLOR4D & Desaturate()
Removes color (in HSL model)
Definition color4d.cpp:532
COLOR4D Mix(const COLOR4D &aColor, double aFactor) const
Return a color that is mixed with the input by a factor.
Definition color4d.h:296
const COLOR4D & GetLayerColor(int aLayer) const
Return the color used to draw a layer.
Definition kiid.h:48
Base plotter engine class.
Definition plotter.h:136
virtual void Circle(const VECTOR2I &pos, int diametre, FILL_T fill, int width)=0
virtual void SetDash(int aLineWidth, LINE_STYLE aLineStyle)=0
virtual void Rect(const VECTOR2I &p1, const VECTOR2I &p2, FILL_T fill, int width, int aCornerRadius=0)=0
bool GetColorMode() const
Definition plotter.h:164
virtual void SetCurrentLineWidth(int width, void *aData=nullptr)=0
Set the line width for the next drawing.
virtual void PlotPoly(const std::vector< VECTOR2I > &aCornerList, FILL_T aFill, int aWidth, void *aData)=0
Draw a polygon ( filled or not ).
virtual void SetColor(const COLOR4D &color)=0
virtual void Arc(const VECTOR2D &aStart, const VECTOR2D &aMid, const VECTOR2D &aEnd, FILL_T aFill, int aWidth)
Definition plotter.cpp:152
PROPERTY_BASE & SetAvailableFunc(std::function< bool(INSPECTABLE *)> aFunc)
Set a callback function to determine whether an object provides this property.
Definition property.h:262
Provide class metadata.Helper macro to map type hashes to names.
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
static PROPERTY_MANAGER & Instance()
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
void OverrideAvailability(TYPE_ID aDerived, TYPE_ID aBase, const wxString &aName, std::function< bool(INSPECTABLE *)> aFunc)
Sets an override availability functor for a base class property of a given derived class.
void OverrideWriteability(TYPE_ID aDerived, TYPE_ID aBase, const wxString &aName, std::function< bool(INSPECTABLE *)> aFunc)
Sets an override writeability functor for a base class property of a given derived class.
void AddTypeCast(TYPE_CAST_BASE *aCast)
Register a type converter.
Holds all the data relating to one schematic.
Definition schematic.h:89
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:168
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_item.cpp:827
void SetLocked(bool aLocked) override
Definition sch_item.h:257
SCH_RENDER_SETTINGS * getRenderSettings(PLOTTER *aPlotter) const
Definition sch_item.h:730
const SYMBOL * GetParentSymbol() const
Definition sch_item.cpp:278
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition sch_item.cpp:272
bool IsLocked() const override
Definition sch_item.cpp:152
virtual bool operator==(const SCH_ITEM &aOther) const
Definition sch_item.cpp:698
bool IsPrivate() const
Definition sch_item.h:254
void SetLayer(SCH_LAYER_ID aLayer)
Definition sch_item.h:345
virtual int compare(const SCH_ITEM &aOther, int aCompareFlags=0) const
Provide the draw object specific comparison called by the == and < operators.
Definition sch_item.cpp:722
SCH_ITEM(EDA_ITEM *aParent, KICAD_T aType, int aUnit=0, int aBodyStyle=0)
Definition sch_item.cpp:56
wxString ResolveText(const wxString &aText, const SCH_SHEET_PATH *aPath, int aDepth=0) const
Definition sch_item.cpp:381
int GetEffectivePenWidth(const SCH_RENDER_SETTINGS *aSettings) const
Definition sch_item.cpp:792
SCH_LAYER_ID m_layer
Definition sch_item.h:781
double SimilarityBase(const SCH_ITEM &aItem) const
Calculate the boilerplate similarity for all LIB_ITEMs without preventing the use above of a pure vir...
Definition sch_item.h:383
VECTOR2I TransformCoordinate(const VECTOR2I &aPoint) const
const KIGFX::COLOR4D & GetBackgroundColor() const override
Return current background color settings.
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
Definition sch_shape.cpp:74
std::vector< SHAPE * > MakeEffectiveShapes(bool aEdgeOnly=false) const override
Make a set of SHAPE objects representing the SCH_SHAPE.
Definition sch_shape.h:115
void SetFilled(bool aFilled) override
void Move(const VECTOR2I &aOffset) override
Move the item by aMoveVector to a new position.
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition sch_shape.cpp:51
void SetStroke(const STROKE_PARAMS &aStroke) override
void swapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
Definition sch_shape.cpp:92
void Normalize()
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
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.
SCH_SHAPE(SHAPE_T aShape=SHAPE_T::UNDEFINED, SCH_LAYER_ID aLayer=LAYER_NOTES, int aLineWidth=0, FILL_T aFillType=FILL_T::NO_FILL, KICAD_T aType=SCH_SHAPE_T)
Definition sch_shape.cpp:42
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
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.
void AddPoint(const VECTOR2I &aPosition)
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
bool operator==(const SCH_ITEM &aOther) const override
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
int GetPenWidth() const override
Definition sch_shape.h:58
bool IsEndPoint(const VECTOR2I &aPoint) const override
Test if aPt is an end point of this schematic object.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
Definition sch_shape.cpp:57
STROKE_PARAMS GetStroke() const override
Definition sch_shape.h:61
VECTOR2I GetPosition() const override
Definition sch_shape.h:88
int GetEffectiveWidth() const override
int compare(const SCH_ITEM &aOther, int aCompareFlags=0) const override
Provide the draw object specific comparison called by the == and < operators.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void SetClosed(bool aClosed)
Mark the line chain as closed (i.e.
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
int NewOutline()
Creates a new empty polygon in the set and returns its index.
int OutlineCount() const
Return the number of outlines in the set.
An abstract shape on 2D plane.
Definition shape.h:126
Simple container to manage line stroke parameters.
LINE_STYLE GetLineStyle() const
KIGFX::COLOR4D GetColor() const
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
A type-safe container of any type.
Definition ki_any.h:93
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
#define _(s)
static constexpr EDA_ANGLE ANGLE_90
Definition eda_angle.h:413
static constexpr EDA_ANGLE ANGLE_270
Definition eda_angle.h:416
#define STRUCT_DELETED
flag indication structures to be erased
#define SKIP_STRUCT
flag indicating that the structure should be ignored
SHAPE_T
Definition eda_shape.h:46
@ SEGMENT
Definition eda_shape.h:48
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
Definition eda_shape.h:49
FILL_T
Definition eda_shape.h:59
@ FILLED_WITH_COLOR
Definition eda_shape.h:63
@ NO_FILL
Definition eda_shape.h:60
@ REVERSE_HATCH
Definition eda_shape.h:65
@ HATCH
Definition eda_shape.h:64
@ FILLED_WITH_BG_BODYCOLOR
Definition eda_shape.h:62
@ FILLED_SHAPE
Fill with object color.
Definition eda_shape.h:61
@ CROSS_HATCH
Definition eda_shape.h:66
a few functions useful in geometry calculations.
SCH_LAYER_ID
Eeschema drawing layers.
Definition layer_ids.h:451
@ LAYER_SHAPES_BACKGROUND
Definition layer_ids.h:485
@ LAYER_DEVICE
Definition layer_ids.h:468
@ LAYER_PRIVATE_NOTES
Definition layer_ids.h:470
@ LAYER_DEVICE_BACKGROUND
Definition layer_ids.h:486
@ LAYER_SELECTION_SHADOWS
Definition layer_ids.h:497
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
Definition macros.h:96
@ LEFT_RIGHT
Flip left to right (around the Y axis)
Definition mirror.h:28
@ TOP_BOTTOM
Flip top to bottom (around the X axis)
Definition mirror.h:29
Message panel definition file.
bool ShapeHitTest(const SHAPE_LINE_CHAIN &aHitter, const SHAPE &aHittee, bool aHitteeContained)
Perform a shape-to-shape hit test.
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
Definition eda_angle.h:400
#define _HKI(x)
Definition page_info.cpp:44
#define TYPE_HASH(x)
Definition property.h:74
#define ENUM_TO_WXANY(type)
Macro to define read-only fields (no setter method available)
Definition property.h:823
#define REGISTER_TYPE(x)
static struct SCH_SHAPE_DESC _SCH_SHAPE_DESC
LINE_STYLE
Dashed line types.
VECTOR2I center
VECTOR2I end
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:75
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:687