mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Plot stub for SCH_GROUP.
This commit is contained in:
parent
b2ba9d3371
commit
c0d813ef27
@ -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
|
wxString SCH_GROUP::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const
|
||||||
{
|
{
|
||||||
if( m_name.empty() )
|
if( m_name.empty() )
|
||||||
|
@ -138,6 +138,9 @@ public:
|
|||||||
/// @copydoc SCH_ITEM::MirrorVertically
|
/// @copydoc SCH_ITEM::MirrorVertically
|
||||||
void MirrorVertically( int aCenter ) override;
|
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
|
/// @copydoc EDA_ITEM::GetItemDescription
|
||||||
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
|
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user