48#include <magic_enum.hpp>
50#include <api/schematic/schematic_types.pb.h>
58static int TemplateIN_HN[] = { 6, 0, 0, -1, -1, -2, -1, -2, 1, -1, 1, 0, 0 };
59static int TemplateIN_HI[] = { 6, 0, 0, 1, 1, 2, 1, 2, -1, 1, -1, 0, 0 };
60static int TemplateIN_UP[] = { 6, 0, 0, 1, -1, 1, -2, -1, -2, -1, -1, 0, 0 };
61static int TemplateIN_BOTTOM[] = { 6, 0, 0, 1, 1, 1, 2, -1, 2, -1, 1, 0, 0 };
63static int TemplateOUT_HN[] = { 6, -2, 0, -1, 1, 0, 1, 0, -1, -1, -1, -2, 0 };
64static int TemplateOUT_HI[] = { 6, 2, 0, 1, -1, 0, -1, 0, 1, 1, 1, 2, 0 };
65static int TemplateOUT_UP[] = { 6, 0, -2, 1, -1, 1, 0, -1, 0, -1, -1, 0, -2 };
66static int TemplateOUT_BOTTOM[] = { 6, 0, 2, 1, 1, 1, 0, -1, 0, -1, 1, 0, 2 };
68static int TemplateUNSPC_HN[] = { 5, 0, -1, -2, -1, -2, 1, 0, 1, 0, -1 };
69static int TemplateUNSPC_HI[] = { 5, 0, -1, 2, -1, 2, 1, 0, 1, 0, -1 };
70static int TemplateUNSPC_UP[] = { 5, 1, 0, 1, -2, -1, -2, -1, 0, 1, 0 };
71static int TemplateUNSPC_BOTTOM[] = { 5, 1, 0, 1, 2, -1, 2, -1, 0, 1, 0 };
73static int TemplateBIDI_HN[] = { 5, 0, 0, -1, -1, -2, 0, -1, 1, 0, 0 };
74static int TemplateBIDI_HI[] = { 5, 0, 0, 1, -1, 2, 0, 1, 1, 0, 0 };
75static int TemplateBIDI_UP[] = { 5, 0, 0, -1, -1, 0, -2, 1, -1, 0, 0 };
76static int TemplateBIDI_BOTTOM[] = { 5, 0, 0, -1, 1, 0, 2, 1, 1, 0, 0 };
78static int Template3STATE_HN[] = { 5, 0, 0, -1, -1, -2, 0, -1, 1, 0, 0 };
79static int Template3STATE_HI[] = { 5, 0, 0, 1, -1, 2, 0, 1, 1, 0, 0 };
80static int Template3STATE_UP[] = { 5, 0, 0, -1, -1, 0, -2, 1, -1, 0, 0 };
81static int Template3STATE_BOTTOM[] = { 5, 0, 0, -1, 1, 0, 2, 1, 1, 0, 0 };
102 default:
return wxT(
"???" );
157 return ( ( (
int)
m_spin - (
int) aOther.
m_spin ) % 4 + 4 ) % 4;
165 m_isDangling( true ),
178 m_shape( aLabel.m_shape ),
179 m_connectionType( aLabel.m_connectionType ),
180 m_isDangling( aLabel.m_isDangling ),
181 m_lastResolvedColor( aLabel.m_lastResolvedColor ),
182 m_cached_driver_name( aLabel.m_cached_driver_name )
189 field.SetParent(
this );
205 if( aName == wxT(
"Intersheetrefs" ) )
206 return _(
"Sheet References" );
207 else if( aName == wxT(
"Netclass" ) )
208 return _(
"Net Class" );
209 else if( aName.IsEmpty() && aUseDefaultName )
224 for(
KICAD_T scanType : aScanTypes )
230 wxCHECK_MSG(
Schematic(),
false, wxT(
"No parent SCHEMATIC set for SCH_LABEL!" ) );
239 for(
KICAD_T scanType : aScanTypes )
243 for(
SCH_ITEM* connection : item_set )
245 if( connection->IsType( wireAndPinTypes ) )
252 for(
SCH_ITEM* connection : item_set )
254 if( connection->IsType( busTypes ) )
274 field.SetParent(
this );
304 wxFAIL_MSG(
"Bad spin style" );
383 field.Offset( aMoveVector );
398 field.SetTextPos( field.GetTextPos() + offset );
426 if( ( aLeftRight && field.GetTextAngle().IsHorizontal() )
427 || ( !aLeftRight && field.GetTextAngle().IsVertical() ) )
443 field.SetTextPos( pos );
456 field.FlipHJustify();
462 field.SetPosition( pos );
475 field.FlipHJustify();
481 field.SetPosition( pos );
516 for(
size_t ii = 0; ii <
m_fields.size(); ++ii )
538 if(
typeid( *
this ) !=
typeid( aOther ) )
547 for(
size_t ii = 0; ii <
m_fields.size(); ++ii )
557 similarity *= std::pow( 0.9, diff );
583 if( field.GetCanonicalName() == wxT(
"Intersheetrefs" ) )
584 offset.
x = - ( labelLen + margin );
586 offset.
y = accumulated + field.GetTextHeight() / 2;
594 if( field.GetCanonicalName() == wxT(
"Intersheetrefs" ) )
595 offset.
y = - ( labelLen + margin );
597 offset.
x = accumulated + field.GetTextHeight() / 2;
605 if( field.GetCanonicalName() == wxT(
"Intersheetrefs" ) )
606 offset.
x = labelLen + margin;
608 offset.
y = accumulated + field.GetTextHeight() / 2;
616 if( field.GetCanonicalName() == wxT(
"Intersheetrefs" ) )
617 offset.
y = labelLen + margin;
619 offset.
x = accumulated + field.GetTextHeight() / 2;
626 if( field.GetCanonicalName() != wxT(
"Intersheetrefs" ) )
627 accumulated += field.GetTextHeight() + margin;
635 std::vector<std::pair<wxString, wxString>>* pages )
644 if( it !=
Schematic()->GetPageRefsMap().end() )
646 std::vector<int> pageListCopy;
648 pageListCopy.insert( pageListCopy.end(), it->second.begin(), it->second.end() );
650 if( !
Schematic()->Settings().m_IntersheetRefsListOwnPage )
655 if( pageListCopy.empty() )
659 std::sort( pageListCopy.begin(), pageListCopy.end() );
664 for(
int pageNum : pageListCopy )
665 pages->push_back( { sheetPages[ pageNum ], sheetNames[ pageNum ] } );
674 aVars->push_back( field.GetCanonicalName().Upper() );
676 aVars->push_back( wxT(
"OP" ) );
677 aVars->push_back( wxT(
"CONNECTION_TYPE" ) );
678 aVars->push_back( wxT(
"SHORT_NET_NAME" ) );
679 aVars->push_back( wxT(
"NET_NAME" ) );
680 aVars->push_back( wxT(
"NET_CLASS" ) );
687 static wxRegEx operatingPoint( wxT(
"^"
689 "(.([0-9])?([a-zA-Z]*))?"
692 wxCHECK( aPath,
false );
699 if( operatingPoint.Matches( *token ) )
702 wxString precisionStr( operatingPoint.GetMatch( *token, 2 ) );
703 wxString range( operatingPoint.GetMatch( *token, 3 ) );
705 if( !precisionStr.IsEmpty() )
706 precision = precisionStr[0] -
'0';
708 if( range.IsEmpty() )
720 if( token->Contains(
':' ) )
727 && token->IsSameAs( wxT(
"CONNECTION_TYPE" ) ) )
733 else if( token->IsSameAs( wxT(
"SHORT_NET_NAME" ) ) )
736 *token = wxEmptyString;
743 else if( token->IsSameAs( wxT(
"NET_NAME" ) ) )
746 *token = wxEmptyString;
749 *token = connection->
Name();
753 else if( token->IsSameAs( wxT(
"NET_CLASS" ) ) )
756 *token = wxEmptyString;
766 if( token->IsSameAs( field.GetName() ) )
768 *token = field.GetShownText(
false, aDepth + 1 );
780 path.push_back( sheet );
819 std::function<bool( wxString* )> textResolver =
820 [&]( wxString* token ) ->
bool
827 if(
text == wxS(
"~" ) )
865 const std::vector<KICAD_T>& aScanTypes )
867 if(
IsType( aScanTypes ) )
869 if( INSPECT_RESULT::QUIT == aInspector(
this,
nullptr ) )
870 return INSPECT_RESULT::QUIT;
873 for(
KICAD_T scanType : aScanTypes )
879 if( INSPECT_RESULT::QUIT == aInspector( &field,
this ) )
880 return INSPECT_RESULT::QUIT;
885 return INSPECT_RESULT::CONTINUE;
892 aItemList.push_back( item );
929 std::vector<VECTOR2I> pts;
950 if( field.IsVisible() && field.GetText() != wxEmptyString )
952 BOX2I fieldBBox = field.GetBoundingBox();
957 box.
Merge( fieldBBox );
977 if( field.IsVisible() )
979 BOX2I fieldBBox = field.GetBoundingBox();
980 fieldBBox.
Inflate( aAccuracy );
985 if( fieldBBox.
Contains( aPosition ) )
1011 if( field.IsVisible() )
1013 BOX2I fieldBBox = field.GetBoundingBox();
1029 std::vector<DANGLING_END_ITEM>& aItemListByPos,
1038 it < aItemListByPos.end() && it->GetPosition() == text_pos; it++ )
1070 it < aItemListByType.end() && it->GetType() ==
BUS_END; it++ )
1091 sch_item->AddConnectionTo( *aPath,
this );
1099 it < aItemListByType.end() && it->GetType() ==
WIRE_END; it++ )
1120 sch_item->AddConnectionTo( *aPath,
this );
1144 wxCHECK( label,
false );
1152 std::vector<wxString> netclasses;
1153 std::vector<wxString> otherNetclasses;
1157 if( field.GetCanonicalName() == wxT(
"Netclass" ) )
1158 netclasses.push_back( field.GetText() );
1164 otherNetclasses.push_back( field.
GetText() );
1167 return netclasses != otherNetclasses;
1192 aList.emplace_back(
_(
"Font" ),
GetFont() ?
GetFont()->GetName() :
_(
"Default" ) );
1194 wxString textStyle[] = {
_(
"Normal" ),
_(
"Italic" ),
_(
"Bold" ),
_(
"Bold Italic" ) };
1196 aList.emplace_back(
_(
"Style" ), textStyle[style] );
1206 default: msg = wxT(
"???" );
break;
1209 aList.emplace_back(
_(
"Justification" ), msg );
1220 if( !conn->
IsBus() )
1222 aList.emplace_back(
_(
"Resolved Netclass" ),
1230 int aUnit,
int aBodyStyle,
const VECTOR2I& aOffset,
bool aDimmed )
1232 static std::vector<VECTOR2I> s_poly;
1242 if( aPlotter->
GetColorMode() && labelColor != COLOR4D::UNSPECIFIED )
1269 if(
GetShape() == LABEL_FLAG_SHAPE::F_DOT )
1271 aPlotter->
MoveTo( s_poly[0] );
1272 aPlotter->
LineTo( s_poly[1] );
1275 int diameter = ( s_poly[2] - s_poly[1] ).EuclideanNorm() * 2;
1278 else if(
GetShape() == LABEL_FLAG_SHAPE::F_ROUND )
1280 aPlotter->
MoveTo( s_poly[0] );
1281 aPlotter->
LineTo( s_poly[1] );
1284 int diameter = ( s_poly[2] - s_poly[1] ).EuclideanNorm() * 2;
1289 if( !s_poly.empty() )
1290 aPlotter->
PlotPoly( s_poly, FILL_T::NO_FILL, penWidth );
1294 bool linkAlreadyPlotted =
false;
1299 if( sheet->
size() >= 2 )
1305 linkAlreadyPlotted =
true;
1312 path.push_back( parent );
1315 linkAlreadyPlotted =
true;
1322 std::vector<wxString> properties;
1326 properties.emplace_back( wxString::Format( wxT(
"!%s = %s" ),
_(
"Net" ),
1327 connection->
Name() ) );
1329 properties.emplace_back( wxString::Format( wxT(
"!%s = %s" ),
1330 _(
"Resolved netclass" ),
1336 properties.emplace_back( wxString::Format( wxT(
"!%s = %s" ), field.GetName(),
1337 field.GetShownText(
false ) ) );
1340 if( !properties.empty() )
1347 _(
"Hierarchical Labels" ) );
1352 field.Plot( aPlotter, aBackground, aPlotOpts, aUnit, aBodyStyle, aOffset, aDimmed );
1357 const VECTOR2I& aOffset,
bool aForceNoFill,
bool aDimmed )
1359 static std::vector<VECTOR2I> s_poly;
1370 if( !blackAndWhiteMode && labelColor != COLOR4D::UNSPECIFIED )
1377 if(
GetShape() == LABEL_FLAG_SHAPE::F_DOT )
1379 GRLine( DC, s_poly[0], s_poly[1], penWidth,
color );
1381 int radius = ( s_poly[2] - s_poly[1] ).EuclideanNorm();
1384 else if(
GetShape() == LABEL_FLAG_SHAPE::F_ROUND )
1386 GRLine( DC, s_poly[0], s_poly[1], penWidth,
color );
1388 int radius = ( s_poly[2] - s_poly[1] ).EuclideanNorm();
1393 if( !s_poly.empty() )
1398 field.Print( aSettings, aUnit, aBodyStyle, aOffset, aForceNoFill, aDimmed );
1418 m_shape = LABEL_FLAG_SHAPE::L_INPUT;
1425 kiapi::schematic::types::LocalLabel label;
1430 aContainer.PackFrom( label );
1436 kiapi::schematic::types::LocalLabel label;
1438 if( !aContainer.UnpackTo( &label ) )
1479 return wxString::Format(
_(
"Label '%s'" ),
1486 return BITMAPS::add_line_label;
1494 m_shape = LABEL_FLAG_SHAPE::F_ROUND;
1553 if( ( aLeftRight && field.GetTextAngle().IsHorizontal() )
1554 || ( !aLeftRight && field.GetTextAngle().IsVertical() ) )
1570 field.SetTextPos( pos );
1597 field.SetPosition( pos );
1619 field.SetPosition( pos );
1625 std::vector<VECTOR2I>& aPoints,
1634 case LABEL_FLAG_SHAPE::F_DOT:
1635 symbolSize =
KiROUND( symbolSize * 0.7 );
1638 case LABEL_FLAG_SHAPE::F_ROUND:
1640 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1650 case LABEL_FLAG_SHAPE::F_DIAMOND:
1651 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1657 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1660 case LABEL_FLAG_SHAPE::F_RECTANGLE:
1661 symbolSize =
KiROUND( symbolSize * 0.8 );
1663 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1670 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1700 if(
m_shape == LABEL_FLAG_SHAPE::F_DIAMOND ||
m_shape == LABEL_FLAG_SHAPE::F_RECTANGLE )
1704 margin =
KiROUND( margin * 1.5 );
1710 if( field.GetText() == wxEmptyString )
1718 offset = { symbolWidth + margin, origin };
1723 offset = { -origin, -( symbolWidth + margin ) };
1728 offset = { symbolWidth + margin, -origin };
1733 offset = { origin, -( symbolWidth + margin ) };
1740 origin -= field.GetTextHeight() + margin;
1751 return _(
"Directive Label" );
1755 return wxString::Format(
_(
"Directive Label [%s %s]" ),
1791 m_shape = LABEL_FLAG_SHAPE::L_BIDI;
1797 m_fields[0].SetText( wxT(
"${INTERSHEET_REFS}" ) );
1832 case LABEL_FLAG_SHAPE::L_INPUT:
1833 case LABEL_FLAG_SHAPE::L_BIDI:
1834 case LABEL_FLAG_SHAPE::L_TRISTATE:
1838 case LABEL_FLAG_SHAPE::L_OUTPUT:
1839 case LABEL_FLAG_SHAPE::L_UNSPECIFIED:
1865 wxCHECK( aPath,
false );
1872 if( token->IsSameAs( wxT(
"INTERSHEET_REFS" ) ) )
1884 std::vector<int> pageListCopy;
1886 pageListCopy.insert( pageListCopy.end(), it->second.begin(), it->second.end() );
1887 std::sort( pageListCopy.begin(), pageListCopy.end() );
1899 ref.Append( wxString::Format( wxT(
"%s..%s" ),
1900 sheetPages[pageListCopy.front()],
1901 sheetPages[pageListCopy.back()] ) );
1905 for(
const int& pageNo : pageListCopy )
1906 ref.Append( wxString::Format( wxT(
"%s," ), sheetPages[pageNo] ) );
1908 if( !ref.IsEmpty() && ref.Last() ==
',' )
1929 std::vector<VECTOR2I>& aPoints,
1937 int x = symb_len + linewidth + 3;
1938 int y = halfSize + linewidth + 3;
1943 aPoints.emplace_back(
VECTOR2I( 0, 0 ) );
1944 aPoints.emplace_back(
VECTOR2I( 0, -y ) );
1945 aPoints.emplace_back(
VECTOR2I( -x, -y ) );
1946 aPoints.emplace_back(
VECTOR2I( -x, 0 ) );
1947 aPoints.emplace_back(
VECTOR2I( -x, y ) );
1948 aPoints.emplace_back(
VECTOR2I( 0, y ) );
1954 case LABEL_FLAG_SHAPE::L_INPUT:
1955 x_offset = -halfSize;
1956 aPoints[0].x += halfSize;
1959 case LABEL_FLAG_SHAPE::L_OUTPUT:
1960 aPoints[3].x -= halfSize;
1963 case LABEL_FLAG_SHAPE::L_BIDI:
1964 case LABEL_FLAG_SHAPE::L_TRISTATE:
1965 x_offset = -halfSize;
1966 aPoints[0].x += halfSize;
1967 aPoints[3].x -= halfSize;
1970 case LABEL_FLAG_SHAPE::L_UNSPECIFIED:
1978 aPoint.x += x_offset;
1992 aPoints.push_back( aPoints[0] );
1998 return wxString::Format(
_(
"Global Label '%s'" ),
2005 return BITMAPS::add_glabel;
2013 m_shape = LABEL_FLAG_SHAPE::L_INPUT;
2039 std::vector<VECTOR2I>& aPoints,
const VECTOR2I& aPos )
const
2046 std::vector<VECTOR2I>& aPoints,
const VECTOR2I& aPos,
2051 int imax = *Template;
2056 for(
int ii = 0; ii < imax; ii++ )
2059 corner.
x = ( halfSize * (*Template) ) + aPos.
x;
2062 corner.
y = ( halfSize * (*Template) ) + aPos.
y;
2065 aPoints.push_back( corner );
2145 return wxString::Format(
_(
"Hierarchical Label '%s'" ),
2152 return BITMAPS::add_hierarchical_label;
2163 wxSize sz( 320, 320 );
2165 dlg->SetMinSize( dlg->ConvertDialogToPixels( sz ) );
2183 if( labelShapeEnum.Choices().GetCount() == 0 )
2185 labelShapeEnum.Map( LABEL_SHAPE::LABEL_INPUT,
_HKI(
"Input" ) )
2186 .Map( LABEL_SHAPE::LABEL_OUTPUT,
_HKI(
"Output" ) )
2187 .Map( LABEL_SHAPE::LABEL_BIDI,
_HKI(
"Bidirectional" ) )
2188 .Map( LABEL_SHAPE::LABEL_TRISTATE,
_HKI(
"Tri-state" ) )
2189 .Map( LABEL_SHAPE::LABEL_PASSIVE,
_HKI(
"Passive" ) );
2214 auto hasLabelShape =
2225 .SetAvailableFunc( hasLabelShape );
2238 if( flagShapeEnum.Choices().GetCount() == 0 )
2240 flagShapeEnum.Map( FLAG_SHAPE::FLAG_DOT,
_HKI(
"Dot" ) )
2241 .Map( FLAG_SHAPE::FLAG_CIRCLE,
_HKI(
"Circle" ) )
2242 .Map( FLAG_SHAPE::FLAG_DIAMOND,
_HKI(
"Diamond" ) )
2243 .Map( FLAG_SHAPE::FLAG_RECTANGLE,
_HKI(
"Rectangle" ) );
2259 PROPERTY_DISPLAY::PT_SIZE ) );
2266 _HKI(
"Horizontal Justification" ) );
2268 _HKI(
"Vertical Justification" ) );
constexpr EDA_IU_SCALE schIUScale
BITMAPS
A list of all bitmap identifiers.
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
constexpr int GetSizeMax() const
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr const Vec GetEnd() const
constexpr void SetOrigin(const Vec &pos)
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr size_type GetWidth() const
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr bool Contains(const Vec &aPoint) const
constexpr const Vec & GetOrigin() const
constexpr void SetEnd(coord_type x, coord_type y)
constexpr void Offset(coord_type dx, coord_type dy)
constexpr bool Intersects(const BOX2< Vec > &aRect) const
static std::vector< DANGLING_END_ITEM >::iterator get_lower_type(std::vector< DANGLING_END_ITEM > &aItemListByType, const DANGLING_END_T &aType)
static std::vector< DANGLING_END_ITEM >::iterator get_lower_pos(std::vector< DANGLING_END_ITEM > &aItemListByPos, const VECTOR2I &aPos)
Helper class used to store the state of schematic items that can be connected to other schematic item...
DANGLING_END_T GetType() const
EDA_ITEM * GetItem() const
VECTOR2I GetPosition() const
The base class for create windows for drawing purpose.
KICAD_T Type() const
Returns the type of object.
virtual bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const
Compare the item against the search criteria in aSearchData.
virtual void SetParent(EDA_ITEM *aParent)
EDA_ITEM * m_parent
Linked list: Link (parent struct)
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
int GetTextHeight() const
const VECTOR2I & GetTextPos() const
COLOR4D GetTextColor() const
const EDA_ANGLE & GetTextAngle() const
virtual const wxString & GetText() const
Return the string associated with the text object.
void SetTextPos(const VECTOR2I &aPoint)
KIFONT::FONT * GetFont() const
BOX2I GetTextBox(int aLine=-1) const
Useful in multiline texts to calculate the full text or a line area (for zones filling,...
void SetVertJustify(GR_TEXT_V_ALIGN_T aType)
GR_TEXT_H_ALIGN_T GetHorizJustify() const
bool Replace(const EDA_SEARCH_DATA &aSearchData)
Helper function used in search and replace dialog.
bool HasTextVars() const
Indicates the ShownText has text var references which need to be processed.
static wxString GotoPageHref(const wxString &aDestination)
Generate a href to a page in the current schematic.
virtual void cacheShownText()
const TEXT_ATTRIBUTES & GetAttributes() const
int GetEffectiveTextPenWidth(int aDefaultPenWidth=0) const
The EffectiveTextPenWidth uses the text thickness if > 1 or aDefaultPenWidth.
virtual wxString GetShownText(bool aAllowExtraText, int aDepth=0) const
Return the string actually shown after processing of the base text.
virtual void SetText(const wxString &aText)
virtual void SetTextAngle(const EDA_ANGLE &aAngle)
void Print(const RENDER_SETTINGS *aSettings, const VECTOR2I &aOffset, const COLOR4D &aColor, OUTLINE_MODE aDisplay_mode=FILLED)
Print this text object to the device context aDC.
void SetMultilineAllowed(bool aAllow)
VECTOR2I GetTextSize() const
void SetHorizJustify(GR_TEXT_H_ALIGN_T aType)
static ENUM_MAP< T > & Instance()
void SetDialogSizeInDU(int aWidth, int aHeight)
Set the dialog size, using a "logical" value.
void AddHTML_Text(const wxString &message)
Add HTML text (without any change) to message list.
void ShowModeless()
Show a modeless version of the dialog (without an OK button).
Class that other classes need to inherit from, in order to be inspectable.
FONT is an abstract base class for both outline and stroke fonts.
static FONT * GetFont(const wxString &aFontName=wxEmptyString, bool aBold=false, bool aItalic=false, const std::vector< wxString > *aEmbeddedFiles=nullptr, bool aForDrawingSheet=false)
A color representation with 4 components: red, green, blue, alpha.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
int GetDefaultPenWidth() const
int GetMinPenWidth() const
const wxString & GetDefaultFont() const
const COLOR4D & GetLayerColor(int aLayer) const
Return the color used to draw a layer.
wxDC * GetPrintDC() const
std::string AsStdString() const
Base plotter engine class.
virtual void ThickCircle(const VECTOR2I &pos, int diametre, int width, OUTLINE_MODE tracemode, void *aData)
virtual void FilledCircle(const VECTOR2I &pos, int diametre, OUTLINE_MODE tracemode, void *aData)
void MoveTo(const VECTOR2I &pos)
RENDER_SETTINGS * RenderSettings()
virtual void Bookmark(const BOX2I &aBox, const wxString &aName, const wxString &aGroupName=wxEmptyString)
Create a bookmark to a symbol.
virtual void HyperlinkBox(const BOX2I &aBox, const wxString &aDestinationURL)
Create a clickable hyperlink with a rectangular click area.
bool GetColorMode() const
virtual void SetCurrentLineWidth(int width, void *aData=nullptr)=0
Set the line width for the next drawing.
void LineTo(const VECTOR2I &pos)
virtual void PlotPoly(const std::vector< VECTOR2I > &aCornerList, FILL_T aFill, int aWidth=USE_DEFAULT_LINE_WIDTH, void *aData=nullptr)=0
Draw a polygon ( filled or not ).
virtual void PlotText(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const TEXT_ATTRIBUTES &aAttributes, KIFONT::FONT *aFont=nullptr, const KIFONT::METRICS &aFontMetrics=KIFONT::METRICS::Default(), void *aData=nullptr)
virtual void HyperlinkMenu(const BOX2I &aBox, const std::vector< wxString > &aDestURLs)
Create a clickable hyperlink menu with a rectangular click area.
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.
void Mask(TYPE_ID aDerived, TYPE_ID aBase, const wxString &aName)
Sets a base class property as masked in a derived class.
static PROPERTY_MANAGER & Instance()
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
void AddTypeCast(TYPE_CAST_BASE *aCast)
Register a type converter.
These are loaded from Eeschema settings but then overwritten by the project settings.
wxString m_IntersheetRefsPrefix
wxString m_IntersheetRefsSuffix
bool m_IntersheetRefsFormatShort
bool m_IntersheetRefsListOwnPage
Holds all the data relating to one schematic.
SCH_SHEET_PATH & CurrentSheet() const override
wxString GetOperatingPoint(const wxString &aNetName, int aPrecision, const wxString &aRange)
SCHEMATIC_SETTINGS & Settings() const
std::map< wxString, std::set< int > > & GetPageRefsMap()
std::map< int, wxString > GetVirtualPageToSheetPagesMap() const
std::map< int, wxString > GetVirtualPageToSheetNamesMap() const
bool ResolveCrossReference(wxString *token, int aDepth) const
Resolves text vars that refer to other items.
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
wxString LocalName() const
wxString Name(bool aIgnoreSheet=false) const
void AppendInfoToMsgPanel(std::vector< MSG_PANEL_ITEM > &aList) const
Adds information about the connection object to aList.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
void MirrorSpinStyle(bool aLeftRight) override
void SwapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
void RemoveConnectedRuleArea(SCH_RULE_AREA *aRuleArea)
Removes a specific rule area from the cache.
void ClearConnectedRuleAreas()
Removes all rule areas from the cache.
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
void AutoplaceFields(SCH_SCREEN *aScreen, bool aManual) override
SCH_DIRECTIVE_LABEL(const VECTOR2I &aPos=VECTOR2I(0, 0))
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.
void CreateGraphicShape(const RENDER_SETTINGS *aSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &aPos) const override
Calculate the graphic shape (a polygon) associated to the text.
FLAG_SHAPE GetFlagShape() const
int GetPenWidth() const override
std::unordered_set< SCH_RULE_AREA * > m_connected_rule_areas
Cache of any rule areas with borders which this label connects to.
void SetPinLength(int aLength)
virtual bool IsDangling() const override
Determines dangling state from connectivity and cached connected rule areas.
void AddConnectedRuleArea(SCH_RULE_AREA *aRuleArea)
Adds an entry to the connected rule area cache.
void SetFlagShape(FLAG_SHAPE aShape)
Schematic editor (Eeschema) main window.
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
wxString GetCanonicalName() const
Get a non-language-specific name for a field which can be used for storage, variable look-up,...
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
void CreateGraphicShape(const RENDER_SETTINGS *aRenderSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &aPos) const override
Calculate the graphic shape (a polygon) associated to the text.
bool ResolveTextVar(const SCH_SHEET_PATH *aPath, wxString *token, int aDepth) const override
Resolve any references to system tokens supported by the label.
VECTOR2I GetSchematicTextOffset(const RENDER_SETTINGS *aSettings) const override
This offset depends on the orientation, the type of text, and the area required to draw the associate...
void SetSpinStyle(SPIN_STYLE aSpinStyle) override
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
SCH_GLOBALLABEL(const VECTOR2I &aPos=VECTOR2I(0, 0), const wxString &aText=wxEmptyString)
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
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.
const BOX2I GetBodyBoundingBox() const override
Return the bounding box of the label only, without taking in account its fields.
void SetSpinStyle(SPIN_STYLE aSpinStyle) override
void CreateGraphicShape(const RENDER_SETTINGS *aSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &aPos) const override
Calculate the graphic shape (a polygon) associated to the text.
SCH_HIERLABEL(const VECTOR2I &aPos=VECTOR2I(0, 0), const wxString &aText=wxEmptyString, KICAD_T aType=SCH_HIER_LABEL_T)
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
VECTOR2I GetSchematicTextOffset(const RENDER_SETTINGS *aSettings) const override
This offset depends on the orientation, the type of text, and the area required to draw the associate...
Base class for any item which can be embedded within the SCHEMATIC container class,...
virtual bool IsConnectable() const
SCH_ITEM & operator=(const SCH_ITEM &aPin)
SCHEMATIC * Schematic() const
Searches the item hierarchy to find a SCHEMATIC.
void AddConnectionTo(const SCH_SHEET_PATH &aPath, SCH_ITEM *aItem)
Add a connection link between this item and another.
std::shared_ptr< NETCLASS > GetEffectiveNetClass(const SCH_SHEET_PATH *aSheet=nullptr) const
void ClearFieldsAutoplaced()
FIELDS_AUTOPLACED m_fieldsAutoplaced
bool IsConnectivityDirty() const
SCH_CONNECTION * Connection(const SCH_SHEET_PATH *aSheet=nullptr) const
Retrieve the connection associated with this object in the given sheet.
const KIFONT::METRICS & GetFontMetrics() const
std::map< SCH_SHEET_PATH, SCH_ITEM_VEC, SHEET_PATH_CMP > m_connected_items
Store pointers to other items that are connected to this one, per sheet.
int GetEffectivePenWidth(const SCH_RENDER_SETTINGS *aSettings) const
bool IsType(const std::vector< KICAD_T > &aScanTypes) const override
Check whether the item is one of the listed types.
bool operator==(const SCH_ITEM &aItem) const override
const wxString & GetCachedDriverName() const override
SCH_LABEL_BASE(const VECTOR2I &aPos, const wxString &aText, KICAD_T aType)
COLOR4D m_lastResolvedColor
wxString GetShownText(const SCH_SHEET_PATH *aPath, bool aAllowExtraText, int aDepth=0) const override
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
void Print(const SCH_RENDER_SETTINGS *aSettings, int aUnit, int aBodyStyle, const VECTOR2I &offset, bool aForceNoFill, bool aDimmed) override
Print an item.
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &scanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
bool HasCachedDriverName() const override
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
void GetEndPoints(std::vector< DANGLING_END_ITEM > &aItemList) override
Add the schematic item end points to aItemList if the item has end points.
bool AutoRotateOnPlacement() const
autoRotateOnPlacement
SCH_LABEL_BASE & operator=(const SCH_LABEL_BASE &aLabel)
std::vector< SCH_FIELD > m_fields
CONNECTION_TYPE m_connectionType
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
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.
void SetLabelShape(LABEL_SHAPE aShape)
bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const override
Check if aItem has connectivity changes against this object.
void SwapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
SPIN_STYLE GetSpinStyle() const
void GetIntersheetRefs(const SCH_SHEET_PATH *aPath, std::vector< std::pair< wxString, wxString > > *pages)
Builds an array of { pageNumber, pageName } pairs.
void MirrorSpinStyle(bool aLeftRight) override
std::vector< VECTOR2I > GetConnectionPoints() const override
Add all the connection points for this item to aPoints.
COLOR4D GetLabelColor() const
LABEL_FLAG_SHAPE GetShape() const
const BOX2I GetBoundingBox() const override
Return the bounding box of the label including its fields.
bool IsType(const std::vector< KICAD_T > &aScanTypes) const override
Check whether the item is one of the listed types.
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
void SetPosition(const VECTOR2I &aPosition) override
virtual bool ResolveTextVar(const SCH_SHEET_PATH *aPath, wxString *token, int aDepth) const
Resolve any references to system tokens supported by the label.
LABEL_SHAPE GetLabelShape() const
bool m_autoRotateOnPlacement
wxString m_cached_driver_name
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
int GetLabelBoxExpansion(const RENDER_SETTINGS *aSettings=nullptr) const
bool IncrementLabel(int aIncrement)
Increment the label text, if it ends with a number.
void SetAutoRotateOnPlacement(bool autoRotate=true)
setAutoRotateOnPlacement
void cacheShownText() override
void Rotate90(bool aClockwise) override
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.
static const wxString GetDefaultFieldName(const wxString &aName, bool aUseDefaultName)
void AutoplaceFields(SCH_SCREEN *aScreen, bool aManual) override
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction) override
void GetContextualTextVars(wxArrayString *aVars) const
Return the list of system text vars & fields for this label.
virtual const BOX2I GetBodyBoundingBox() const
Return the bounding box of the label only, without taking in account its fields.
virtual void CreateGraphicShape(const RENDER_SETTINGS *aSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &Pos) const
Calculate the graphic shape (a polygon) associated to the text.
std::vector< SCH_FIELD > & GetFields()
bool UpdateDanglingState(std::vector< DANGLING_END_ITEM > &aItemListByType, std::vector< DANGLING_END_ITEM > &aItemListByPos, const SCH_SHEET_PATH *aPath=nullptr) override
Test the schematic item to aItemList to check if it's dangling state has changed.
VECTOR2I GetSchematicTextOffset(const RENDER_SETTINGS *aSettings) const override
This offset depends on the orientation, the type of text, and the area required to draw the associate...
virtual void SetSpinStyle(SPIN_STYLE aSpinStyle)
bool Replace(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) override
Perform a text replace using the find and replace criteria in aSearchData on items that support text ...
double Similarity(const SCH_ITEM &aItem) const override
Return a measure of how likely the other object is to represent the same object.
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
SCH_LABEL(const VECTOR2I &aPos=VECTOR2I(0, 0), const wxString &aText=wxEmptyString)
const BOX2I GetBodyBoundingBox() const override
Return the bounding box of the label only, without taking in account its fields.
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
size_t size() const
Forwarded method from std::vector.
int GetVirtualPageNumber() const
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
bool ResolveTextVar(const SCH_SHEET_PATH *aPath, wxString *token, int aDepth=0) const
Resolve any references to system tokens supported by the sheet.
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
static HTML_MESSAGE_BOX * ShowSyntaxHelp(wxWindow *aParentWindow)
VECTOR2I GetPosition() const override
virtual void Rotate90(bool aClockwise)
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
double Similarity(const SCH_ITEM &aItem) const override
Return a measure of how likely the other object is to represent the same object.
void SwapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
int GetPenWidth() const override
virtual void MirrorSpinStyle(bool aLeftRight)
bool operator==(const SCH_ITEM &aItem) const override
int GetTextOffset(const RENDER_SETTINGS *aSettings=nullptr) const
SPIN_STYLE MirrorX()
Mirror the label spin style across the X axis or simply swaps up and bottom.
SPIN_STYLE MirrorY()
Mirror the label spin style across the Y axis or simply swaps left and right.
unsigned CCWRotationsTo(const SPIN_STYLE &aOther) const
Get CCW rotation needed to get to the given spin style.
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject, int aFlags)
#define DEFAULT_LABEL_SIZE_RATIO
The offset of the pin name string from the end of the pin in mils.
#define DANGLING_SYMBOL_SIZE
< The size of the rectangle indicating an unconnected wire or label
static constexpr EDA_ANGLE ANGLE_90
static constexpr EDA_ANGLE ANGLE_VERTICAL
static constexpr EDA_ANGLE ANGLE_HORIZONTAL
static constexpr EDA_ANGLE ANGLE_270
static constexpr EDA_ANGLE ANGLE_180
const INSPECTOR_FUNC & INSPECTOR
void GRCircle(wxDC *aDC, const VECTOR2I &aPos, int aRadius, int aWidth, const COLOR4D &aColor)
void GRLine(wxDC *DC, int x1, int y1, int x2, int y2, int width, const COLOR4D &Color, wxPenStyle aStyle)
void GRPoly(wxDC *DC, int n, const VECTOR2I *Points, bool Fill, int width, const COLOR4D &Color, const COLOR4D &BgColor)
Draw a new polyline and fill it if Fill, in drawing space.
bool GetGRForceBlackPenState(void)
void GRFilledCircle(wxDC *aDC, const VECTOR2I &aPos, int aRadius, int aWidth, const COLOR4D &aStrokeColor, const COLOR4D &aFillColor)
Draw a circle onto the drawing context aDC centered at the user coordinates (x,y).
KICOMMON_API bool IncrementString(wxString &name, int aIncrement)
Generic string incrementer.
@ LAYER_SELECTION_SHADOWS
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
constexpr T MIRRORVAL(T aPoint, T aMirrorRef)
Returns the mirror of aPoint relative to the aMirrorRef.
Message panel definition file.
KICOMMON_API wxString EllipsizeMenuText(const wxString &aString)
Ellipsize text (at the end) to be no more than 36 characters.
void delete_matching(_Container &__c, _Value __value)
Covers for the horrifically named std::remove and std::remove_if (neither of which remove anything).
KICOMMON_API VECTOR2I UnpackVector2(const types::Vector2 &aInput)
KICOMMON_API void PackVector2(types::Vector2 &aOutput, const VECTOR2I &aInput)
EDA_ANGLE abs(const EDA_ANGLE &aAngle)
#define ENUM_TO_WXANY(type)
Macro to define read-only fields (no setter method available)
@ NONE
No connection to this item.
std::vector< SCH_ITEM * > SCH_ITEM_VEC
static int TemplateIN_HI[]
static int TemplateUNSPC_HI[]
static int TemplateOUT_HN[]
static int Template3STATE_HN[]
static int TemplateBIDI_HN[]
static int * TemplateShape[5][4]
static int TemplateIN_HN[]
static int TemplateIN_BOTTOM[]
static int TemplateUNSPC_HN[]
static int Template3STATE_BOTTOM[]
static int TemplateBIDI_BOTTOM[]
static struct SCH_LABEL_DESC _SCH_LABEL_DESC
static int Template3STATE_UP[]
static int TemplateOUT_UP[]
static int TemplateOUT_HI[]
static int TemplateUNSPC_UP[]
static int TemplateUNSPC_BOTTOM[]
static int TemplateOUT_BOTTOM[]
static int Template3STATE_HI[]
static int TemplateIN_UP[]
wxString getElectricalTypeLabel(LABEL_FLAG_SHAPE aType)
static int TemplateBIDI_UP[]
static int TemplateBIDI_HI[]
static struct SCH_DIRECTIVE_LABEL_DESC _SCH_DIRECTIVE_LABEL_DESC
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
void ConvertMarkdown2Html(const wxString &aMarkdownInput, wxString &aHtmlOutput)
constexpr int MilsToIU(int mils) const
SCH_DIRECTIVE_LABEL_DESC()
bool m_PDFHierarchicalLinks
bool TestSegmentHit(const VECTOR2I &aRefPoint, const VECTOR2I &aStart, const VECTOR2I &aEnd, int aDist)
Test if aRefPoint is with aDistance on the line defined by aStart and aEnd.
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
@ SCH_LABEL_LOCATE_WIRE_T
VECTOR2< int32_t > VECTOR2I