Plot stub for SCH_GROUP.

This commit is contained in:
Jeff Young 2025-07-11 15:41:35 +01:00
parent b2ba9d3371
commit c0d813ef27
2 changed files with 10 additions and 0 deletions

View File

@ -308,6 +308,13 @@ void SCH_GROUP::MirrorVertically( int aCenter )
}
void SCH_GROUP::Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed )
{
// TODO: should we plot the name & border of named groups?
}
wxString SCH_GROUP::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const
{
if( m_name.empty() )

View File

@ -138,6 +138,9 @@ public:
/// @copydoc SCH_ITEM::MirrorVertically
void MirrorVertically( int aCenter ) override;
void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
/// @copydoc EDA_ITEM::GetItemDescription
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;