2011-10-07 14:41:30 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-03-23 07:41:47 +00:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2020-02-04 10:06:30 +00:00
|
|
|
* Copyright (C) 1992-2020 Kicad Developers, see AUTHORS.txt for contributors.
|
2011-10-07 14:41:30 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2020-11-18 01:21:04 +00:00
|
|
|
#include <core/mirror.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2019-05-31 12:15:25 +00:00
|
|
|
#include <gr_text.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2018-01-28 18:12:26 +00:00
|
|
|
#include <plotter.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <kicad_string.h>
|
2020-10-25 04:49:02 +00:00
|
|
|
#include <widgets/msgpanel.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/util.h> // for KiROUND
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_sheet.h>
|
|
|
|
#include <sch_sheet_path.h>
|
|
|
|
#include <sch_component.h>
|
2020-06-22 00:43:47 +00:00
|
|
|
#include <sch_painter.h>
|
2020-05-13 02:00:37 +00:00
|
|
|
#include <schematic.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2018-04-17 16:25:19 +00:00
|
|
|
#include <trace_helpers.h>
|
2020-03-06 12:05:21 +00:00
|
|
|
#include <pgm_base.h>
|
|
|
|
|
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
const wxString SCH_SHEET::GetDefaultFieldName( int aFieldNdx )
|
2020-03-06 12:05:21 +00:00
|
|
|
{
|
|
|
|
static void* locale = nullptr;
|
|
|
|
static wxString sheetnameDefault;
|
|
|
|
static wxString sheetfilenameDefault;
|
|
|
|
static wxString fieldDefault;
|
|
|
|
|
|
|
|
// Fetching translations can take a surprising amount of time when loading libraries,
|
|
|
|
// so only do it when necessary.
|
|
|
|
if( Pgm().GetLocale() != locale )
|
|
|
|
{
|
2020-03-06 20:02:58 +00:00
|
|
|
sheetnameDefault = _( "Sheet name" );
|
|
|
|
sheetfilenameDefault = _( "Sheet file" );
|
|
|
|
fieldDefault = _( "Field%d" );
|
2020-03-06 12:05:21 +00:00
|
|
|
locale = Pgm().GetLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fixed values for the mandatory fields
|
|
|
|
switch( aFieldNdx )
|
|
|
|
{
|
|
|
|
case SHEETNAME: return sheetnameDefault;
|
|
|
|
case SHEETFILENAME: return sheetfilenameDefault;
|
|
|
|
default: return wxString::Format( fieldDefault, aFieldNdx );
|
|
|
|
}
|
|
|
|
}
|
2011-10-12 14:03:43 +00:00
|
|
|
|
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SHEET::SCH_SHEET( EDA_ITEM* aParent, const wxPoint& pos ) :
|
|
|
|
SCH_ITEM( aParent, SCH_SHEET_T )
|
2008-02-12 21:12:46 +00:00
|
|
|
{
|
2020-11-14 14:29:11 +00:00
|
|
|
m_layer = LAYER_SHEET;
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos = pos;
|
2020-01-22 14:48:34 +00:00
|
|
|
m_size = wxSize( Mils2iu( MIN_SHEET_WIDTH ), Mils2iu( MIN_SHEET_HEIGHT ) );
|
2011-12-08 15:45:01 +00:00
|
|
|
m_screen = NULL;
|
2020-03-06 12:05:21 +00:00
|
|
|
|
|
|
|
for( int i = 0; i < SHEET_MANDATORY_FIELDS; ++i )
|
|
|
|
{
|
|
|
|
m_fields.emplace_back( pos, i, this, GetDefaultFieldName( i ) );
|
|
|
|
m_fields.back().SetVisible( true );
|
|
|
|
|
|
|
|
if( i == SHEETNAME )
|
|
|
|
m_fields.back().SetLayer( LAYER_SHEETNAME );
|
|
|
|
else if( i == SHEETFILENAME )
|
|
|
|
m_fields.back().SetLayer( LAYER_SHEETFILENAME );
|
|
|
|
else
|
|
|
|
m_fields.back().SetLayer( LAYER_SHEETFIELDS );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_fieldsAutoplaced = FIELDS_AUTOPLACED_AUTO;
|
2020-03-08 02:18:45 +00:00
|
|
|
|
2020-04-04 20:32:14 +00:00
|
|
|
m_borderWidth = 0;
|
|
|
|
m_borderColor = COLOR4D::UNSPECIFIED;
|
|
|
|
m_backgroundColor = COLOR4D::UNSPECIFIED;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
SCH_SHEET::SCH_SHEET( const SCH_SHEET& aSheet ) :
|
|
|
|
SCH_ITEM( aSheet )
|
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos = aSheet.m_pos;
|
|
|
|
m_size = aSheet.m_size;
|
2020-11-14 14:29:11 +00:00
|
|
|
m_layer = aSheet.m_layer;
|
2020-02-21 22:20:42 +00:00
|
|
|
const_cast<KIID&>( m_Uuid ) = aSheet.m_Uuid;
|
2020-03-06 12:05:21 +00:00
|
|
|
m_fields = aSheet.m_fields;
|
|
|
|
m_fieldsAutoplaced = aSheet.m_fieldsAutoplaced;
|
2011-12-08 15:45:01 +00:00
|
|
|
m_screen = aSheet.m_screen;
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : aSheet.m_pins )
|
|
|
|
{
|
|
|
|
m_pins.emplace_back( new SCH_SHEET_PIN( *pin ) );
|
|
|
|
m_pins.back()->SetParent( this );
|
|
|
|
}
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2020-03-08 02:18:45 +00:00
|
|
|
m_borderWidth = aSheet.m_borderWidth;
|
|
|
|
m_borderColor = aSheet.m_borderColor;
|
|
|
|
m_backgroundColor = aSheet.m_backgroundColor;
|
2020-10-18 20:30:37 +00:00
|
|
|
m_instances = aSheet.m_instances;
|
2020-03-08 02:18:45 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
|
|
|
m_screen->IncRefCount();
|
2010-12-21 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
SCH_SHEET::~SCH_SHEET()
|
2008-02-12 21:12:46 +00:00
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
// also, look at the associated sheet & its reference count
|
|
|
|
// perhaps it should be deleted also.
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
m_screen->DecRefCount();
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen->GetRefCount() == 0 )
|
|
|
|
delete m_screen;
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2020-01-12 18:40:50 +00:00
|
|
|
|
|
|
|
// We own our pins; delete them
|
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
|
|
|
delete pin;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
|
|
|
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SCH_SHEET::Clone() const
|
2010-12-21 15:13:09 +00:00
|
|
|
{
|
|
|
|
return new SCH_SHEET( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-20 16:34:57 +00:00
|
|
|
void SCH_SHEET::SetScreen( SCH_SCREEN* aScreen )
|
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
if( aScreen == m_screen )
|
2011-01-20 16:34:57 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen != NULL )
|
2011-01-20 16:34:57 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
m_screen->DecRefCount();
|
2011-01-20 16:34:57 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen->GetRefCount() == 0 )
|
2011-01-20 16:34:57 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
delete m_screen;
|
|
|
|
m_screen = NULL;
|
2011-01-20 16:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
m_screen = aScreen;
|
2011-01-20 16:34:57 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
|
|
|
m_screen->IncRefCount();
|
2011-01-20 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SCH_SHEET::GetScreenCount() const
|
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen == NULL )
|
2011-01-20 16:34:57 +00:00
|
|
|
return 0;
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
return m_screen->GetRefCount();
|
2011-01-20 16:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
bool SCH_SHEET::IsRootSheet() const
|
2016-07-06 09:22:56 +00:00
|
|
|
{
|
2020-05-13 02:00:37 +00:00
|
|
|
wxCHECK_MSG( Schematic(), false, "Can't call IsRootSheet without setting a schematic" );
|
2016-07-06 09:22:56 +00:00
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
return &Schematic()->Root() == this;
|
2016-07-06 09:22:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-27 22:28:36 +00:00
|
|
|
void SCH_SHEET::GetContextualTextVars( wxArrayString* aVars ) const
|
|
|
|
{
|
|
|
|
for( int i = 0; i < SHEET_MANDATORY_FIELDS; ++i )
|
2020-07-28 12:11:11 +00:00
|
|
|
aVars->push_back( m_fields[i].GetCanonicalName().Upper() );
|
|
|
|
|
|
|
|
for( size_t i = SHEET_MANDATORY_FIELDS; i < m_fields.size(); ++i )
|
|
|
|
aVars->push_back( m_fields[i].GetName() );
|
2020-05-27 22:28:36 +00:00
|
|
|
|
|
|
|
aVars->push_back( wxT( "#" ) );
|
|
|
|
aVars->push_back( wxT( "##" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-06 13:06:57 +00:00
|
|
|
bool SCH_SHEET::ResolveTextVar( wxString* token, int aDepth ) const
|
|
|
|
{
|
|
|
|
for( int i = 0; i < SHEET_MANDATORY_FIELDS; ++i )
|
|
|
|
{
|
|
|
|
if( token->IsSameAs( m_fields[i].GetCanonicalName().Upper() ) )
|
|
|
|
{
|
|
|
|
*token = m_fields[i].GetShownText( aDepth + 1 );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for( size_t i = SHEET_MANDATORY_FIELDS; i < m_fields.size(); ++i )
|
|
|
|
{
|
|
|
|
if( token->IsSameAs( m_fields[i].GetName() ) )
|
|
|
|
{
|
|
|
|
*token = m_fields[i].GetShownText( aDepth + 1 );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-03 14:52:31 +00:00
|
|
|
if( token->IsSameAs( wxT( "#" ) ) )
|
|
|
|
{
|
2020-05-13 02:00:37 +00:00
|
|
|
for( const SCH_SHEET_PATH& sheet : Schematic()->GetSheets() )
|
2020-05-03 14:52:31 +00:00
|
|
|
{
|
|
|
|
if( sheet.Last() == this ) // Current sheet path found
|
|
|
|
{
|
2020-10-18 20:30:37 +00:00
|
|
|
*token = wxString::Format( "%s", sheet.GetPageNumber() );
|
2020-05-03 14:52:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( token->IsSameAs( wxT( "##" ) ) )
|
|
|
|
{
|
2020-05-13 02:00:37 +00:00
|
|
|
SCH_SHEET_LIST sheetList = Schematic()->GetSheets();
|
2020-05-03 14:52:31 +00:00
|
|
|
*token = wxString::Format( wxT( "%d" ), (int) sheetList.size() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:06:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-16 13:04:50 +00:00
|
|
|
bool SCH_SHEET::UsesDefaultStroke() const
|
|
|
|
{
|
2020-04-04 20:32:14 +00:00
|
|
|
return m_borderWidth == 0 && m_borderColor == COLOR4D::UNSPECIFIED;
|
2020-03-16 13:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-07 15:29:01 +00:00
|
|
|
void SCH_SHEET::SwapData( SCH_ITEM* aItem )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-06-07 15:29:01 +00:00
|
|
|
wxCHECK_RET( aItem->Type() == SCH_SHEET_T,
|
2020-10-16 00:39:55 +00:00
|
|
|
wxString::Format( wxT( "SCH_SHEET object cannot swap data with %s object." ),
|
|
|
|
aItem->GetClass() ) );
|
2011-06-07 15:29:01 +00:00
|
|
|
|
|
|
|
SCH_SHEET* sheet = ( SCH_SHEET* ) aItem;
|
|
|
|
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_pos, sheet->m_pos );
|
|
|
|
std::swap( m_size, sheet->m_size );
|
2020-03-06 12:05:21 +00:00
|
|
|
m_fields.swap( sheet->m_fields );
|
|
|
|
std::swap( m_fieldsAutoplaced, sheet->m_fieldsAutoplaced );
|
2011-06-07 15:29:01 +00:00
|
|
|
m_pins.swap( sheet->m_pins );
|
2008-03-30 16:15:53 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
// Update parent pointers after swapping.
|
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->SetParent( this );
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : sheet->m_pins )
|
|
|
|
sheetPin->SetParent( sheet );
|
2020-03-08 02:18:45 +00:00
|
|
|
|
|
|
|
std::swap( m_borderWidth, sheet->m_borderWidth );
|
|
|
|
std::swap( m_borderColor, sheet->m_borderColor );
|
|
|
|
std::swap( m_backgroundColor, sheet->m_backgroundColor );
|
2020-10-18 20:30:37 +00:00
|
|
|
std::swap( m_instances, sheet->m_instances );
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
void SCH_SHEET::AddPin( SCH_SHEET_PIN* aSheetPin )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2011-03-30 19:26:05 +00:00
|
|
|
wxASSERT( aSheetPin != NULL );
|
|
|
|
wxASSERT( aSheetPin->Type() == SCH_SHEET_PIN_T );
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-03-25 15:27:15 +00:00
|
|
|
aSheetPin->SetParent( this );
|
2011-03-30 19:26:05 +00:00
|
|
|
m_pins.push_back( aSheetPin );
|
|
|
|
renumberPins();
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
void SCH_SHEET::RemovePin( SCH_SHEET_PIN* aSheetPin )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2011-03-30 19:26:05 +00:00
|
|
|
wxASSERT( aSheetPin != NULL );
|
|
|
|
wxASSERT( aSheetPin->Type() == SCH_SHEET_PIN_T );
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( auto i = m_pins.begin(); i < m_pins.end(); ++i )
|
2008-03-30 16:15:53 +00:00
|
|
|
{
|
2011-03-30 19:26:05 +00:00
|
|
|
if( *i == aSheetPin )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2011-03-30 19:26:05 +00:00
|
|
|
m_pins.erase( i );
|
|
|
|
renumberPins();
|
2010-06-24 18:31:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-03-30 16:15:53 +00:00
|
|
|
}
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
bool SCH_SHEET::HasPin( const wxString& aName )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
2008-03-30 16:15:53 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
if( pin->GetText().CmpNoCase( aName ) == 0 )
|
2010-06-24 18:31:43 +00:00
|
|
|
return true;
|
2008-03-30 16:15:53 +00:00
|
|
|
}
|
2010-06-24 18:31:43 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-02-04 10:06:30 +00:00
|
|
|
bool SCH_SHEET::doIsConnected( const wxPoint& aPosition ) const
|
|
|
|
{
|
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
{
|
|
|
|
if( sheetPin->GetPosition() == aPosition )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-17 13:24:22 +00:00
|
|
|
bool SCH_SHEET::IsVerticalOrientation() const
|
2010-09-09 17:37:25 +00:00
|
|
|
{
|
2019-09-02 21:34:50 +00:00
|
|
|
int leftRight = 0;
|
|
|
|
int topBottom = 0;
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
switch( pin->GetEdge() )
|
2019-09-02 21:34:50 +00:00
|
|
|
{
|
|
|
|
case SHEET_LEFT_SIDE: leftRight++; break;
|
|
|
|
case SHEET_RIGHT_SIDE: leftRight++; break;
|
|
|
|
case SHEET_TOP_SIDE: topBottom++; break;
|
|
|
|
case SHEET_BOTTOM_SIDE: topBottom++; break;
|
|
|
|
default: break;
|
|
|
|
}
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2019-09-02 21:34:50 +00:00
|
|
|
|
|
|
|
return topBottom > 0 && leftRight == 0;
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
bool SCH_SHEET::HasUndefinedPins()
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
|
|
|
/* Search the schematic for a hierarchical label corresponding to this sheet label. */
|
2019-06-25 23:39:58 +00:00
|
|
|
const SCH_HIERLABEL* HLabel = nullptr;
|
|
|
|
for( auto aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
if( !pin->GetText().CmpNoCase( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) )
|
2019-06-25 23:39:58 +00:00
|
|
|
{
|
|
|
|
HLabel = static_cast<SCH_HIERLABEL*>( aItem );
|
|
|
|
break;
|
|
|
|
}
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
if( HLabel == nullptr ) // Corresponding hierarchical label not found.
|
2010-06-24 18:31:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
|
|
|
|
|
2011-06-07 15:29:01 +00:00
|
|
|
int SCH_SHEET::GetMinWidth() const
|
|
|
|
{
|
2020-01-22 14:48:34 +00:00
|
|
|
int width = Mils2iu( MIN_SHEET_WIDTH );
|
2011-06-07 15:29:01 +00:00
|
|
|
|
|
|
|
for( size_t i = 0; i < m_pins.size(); i++ )
|
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
int edge = m_pins[i]->GetEdge();
|
|
|
|
EDA_RECT pinRect = m_pins[i]->GetBoundingBox();
|
2011-06-07 15:29:01 +00:00
|
|
|
|
2019-05-17 16:45:27 +00:00
|
|
|
wxASSERT( edge != SHEET_UNDEFINED_SIDE );
|
2011-06-07 15:29:01 +00:00
|
|
|
|
2019-05-17 16:45:27 +00:00
|
|
|
if( edge == SHEET_TOP_SIDE || edge == SHEET_BOTTOM_SIDE )
|
2011-06-07 15:29:01 +00:00
|
|
|
{
|
2017-08-23 22:33:27 +00:00
|
|
|
if( width < pinRect.GetRight() - m_pos.x )
|
|
|
|
width = pinRect.GetRight() - m_pos.x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( width < pinRect.GetWidth() )
|
|
|
|
width = pinRect.GetWidth();
|
2011-06-07 15:29:01 +00:00
|
|
|
|
2017-08-23 22:33:27 +00:00
|
|
|
for( size_t j = 0; j < m_pins.size(); j++ )
|
2011-06-07 15:29:01 +00:00
|
|
|
{
|
2017-08-23 22:33:27 +00:00
|
|
|
// Check for pin directly across from the current pin.
|
2020-01-12 18:40:50 +00:00
|
|
|
if( (i == j) || (m_pins[i]->GetPosition().y != m_pins[j]->GetPosition().y) )
|
2017-08-23 22:33:27 +00:00
|
|
|
continue;
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
if( width < pinRect.GetWidth() + m_pins[j]->GetBoundingBox().GetWidth() )
|
2017-08-23 22:33:27 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
width = pinRect.GetWidth() + m_pins[j]->GetBoundingBox().GetWidth();
|
2017-08-23 22:33:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-06-07 15:29:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SCH_SHEET::GetMinHeight() const
|
|
|
|
{
|
2020-01-22 14:48:34 +00:00
|
|
|
int height = Mils2iu( MIN_SHEET_HEIGHT );
|
2011-06-07 15:29:01 +00:00
|
|
|
|
|
|
|
for( size_t i = 0; i < m_pins.size(); i++ )
|
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
int edge = m_pins[i]->GetEdge();
|
|
|
|
EDA_RECT pinRect = m_pins[i]->GetBoundingBox();
|
2017-08-23 16:06:33 +00:00
|
|
|
|
|
|
|
// Make sure pin is on top or bottom side of sheet.
|
2019-05-17 16:45:27 +00:00
|
|
|
if( edge == SHEET_RIGHT_SIDE || edge == SHEET_LEFT_SIDE )
|
2017-08-23 16:06:33 +00:00
|
|
|
{
|
2017-08-23 22:33:27 +00:00
|
|
|
if( height < pinRect.GetBottom() - m_pos.y )
|
|
|
|
height = pinRect.GetBottom() - m_pos.y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( height < pinRect.GetHeight() )
|
|
|
|
height = pinRect.GetHeight();
|
2011-06-07 15:29:01 +00:00
|
|
|
|
2017-08-23 22:33:27 +00:00
|
|
|
for( size_t j = 0; j < m_pins.size(); j++ )
|
2017-08-23 16:06:33 +00:00
|
|
|
{
|
2017-08-23 22:33:27 +00:00
|
|
|
// Check for pin directly above or below the current pin.
|
2020-01-12 18:40:50 +00:00
|
|
|
if( (i == j) || (m_pins[i]->GetPosition().x != m_pins[j]->GetPosition().x) )
|
2017-08-23 22:33:27 +00:00
|
|
|
continue;
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
if( height < pinRect.GetHeight() + m_pins[j]->GetBoundingBox().GetHeight() )
|
2017-08-23 22:33:27 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
height = pinRect.GetHeight() + m_pins[j]->GetBoundingBox().GetHeight();
|
2017-08-23 22:33:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-08-23 16:06:33 +00:00
|
|
|
}
|
|
|
|
}
|
2011-06-07 15:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
void SCH_SHEET::CleanupSheet()
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
auto i = m_pins.begin();
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
while( i != m_pins.end() )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2010-06-24 18:31:43 +00:00
|
|
|
/* Search the schematic for a hierarchical label corresponding to this sheet label. */
|
2014-09-13 18:15:45 +00:00
|
|
|
const SCH_HIERLABEL* HLabel = NULL;
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_HIER_LABEL_T ) )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
if( (*i)->GetText().CmpNoCase( static_cast<SCH_HIERLABEL*>( aItem )->GetText() ) == 0 )
|
2019-06-25 23:39:58 +00:00
|
|
|
{
|
|
|
|
HLabel = static_cast<SCH_HIERLABEL*>( aItem );
|
|
|
|
break;
|
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
if( HLabel == NULL ) // Hlabel not found: delete sheet label.
|
2015-12-27 12:16:46 +00:00
|
|
|
i = m_pins.erase( i );
|
2010-06-24 18:31:43 +00:00
|
|
|
else
|
|
|
|
++i;
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
2008-04-30 17:04:22 +00:00
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
SCH_SHEET_PIN* SCH_SHEET::GetPin( const wxPoint& aPosition )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
if( pin->HitTest( aPosition ) )
|
|
|
|
return pin;
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
|
|
|
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int SCH_SHEET::GetPenWidth() const
|
2009-06-30 19:21:41 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
return std::max( GetBorderWidth(), 1 );
|
2009-06-30 19:21:41 +00:00
|
|
|
}
|
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
void SCH_SHEET::AutoplaceFields( SCH_SCREEN* aScreen, bool aManual )
|
2010-10-20 19:43:58 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
wxSize textSize = m_fields[ SHEETNAME ].GetTextSize();
|
|
|
|
int borderMargin = KiROUND( GetPenWidth() / 2.0 ) + 4;
|
|
|
|
int margin = borderMargin + KiROUND( std::max( textSize.x, textSize.y ) * 0.5 );
|
2011-12-08 15:45:01 +00:00
|
|
|
|
2010-10-20 19:43:58 +00:00
|
|
|
if( IsVerticalOrientation() )
|
2020-03-06 20:02:58 +00:00
|
|
|
{
|
|
|
|
m_fields[ SHEETNAME ].SetTextPos( m_pos + wxPoint( -margin, m_size.y ) );
|
|
|
|
m_fields[ SHEETNAME ].SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_fields[ SHEETNAME ].SetVertJustify(GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
m_fields[ SHEETNAME ].SetTextAngle( TEXT_ANGLE_VERT );
|
|
|
|
}
|
2010-10-20 19:43:58 +00:00
|
|
|
else
|
2020-03-06 20:02:58 +00:00
|
|
|
{
|
|
|
|
m_fields[ SHEETNAME ].SetTextPos( m_pos + wxPoint( 0, -margin ) );
|
|
|
|
m_fields[ SHEETNAME ].SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_fields[ SHEETNAME ].SetVertJustify(GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
m_fields[ SHEETNAME ].SetTextAngle( TEXT_ANGLE_HORIZ );
|
|
|
|
}
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
textSize = m_fields[ SHEETFILENAME ].GetTextSize();
|
2020-04-14 12:25:00 +00:00
|
|
|
margin = borderMargin + KiROUND( std::max( textSize.x, textSize.y ) * 0.4 );
|
2011-05-25 10:42:56 +00:00
|
|
|
|
2010-10-20 19:43:58 +00:00
|
|
|
if( IsVerticalOrientation() )
|
2020-03-06 20:02:58 +00:00
|
|
|
{
|
|
|
|
m_fields[ SHEETFILENAME ].SetTextPos( m_pos + wxPoint( m_size.x + margin, m_size.y ) );
|
|
|
|
m_fields[ SHEETFILENAME ].SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_fields[ SHEETFILENAME ].SetVertJustify(GR_TEXT_VJUSTIFY_TOP );
|
|
|
|
m_fields[ SHEETFILENAME ].SetTextAngle( TEXT_ANGLE_VERT );
|
|
|
|
}
|
2010-10-20 19:43:58 +00:00
|
|
|
else
|
2020-03-06 20:02:58 +00:00
|
|
|
{
|
|
|
|
m_fields[ SHEETFILENAME ].SetTextPos( m_pos + wxPoint( 0, m_size.y + margin ) );
|
|
|
|
m_fields[ SHEETFILENAME ].SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_fields[ SHEETFILENAME ].SetVertJustify(GR_TEXT_VJUSTIFY_TOP );
|
|
|
|
m_fields[ SHEETFILENAME ].SetTextAngle( TEXT_ANGLE_HORIZ );
|
|
|
|
}
|
2020-03-06 12:05:21 +00:00
|
|
|
|
|
|
|
m_fieldsAutoplaced = FIELDS_AUTOPLACED_AUTO;
|
2010-10-20 19:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void SCH_SHEET::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
2019-07-30 01:57:41 +00:00
|
|
|
aCount = 4;
|
2018-12-13 23:04:49 +00:00
|
|
|
aLayers[0] = LAYER_HIERLABEL;
|
|
|
|
aLayers[1] = LAYER_SHEET;
|
|
|
|
aLayers[2] = LAYER_SHEET_BACKGROUND;
|
2019-07-30 01:57:41 +00:00
|
|
|
aLayers[3] = LAYER_SELECTION_SHADOWS;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
const EDA_RECT SCH_SHEET::GetBodyBoundingBox() const
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2020-02-20 21:29:21 +00:00
|
|
|
wxPoint end;
|
2011-12-08 15:45:01 +00:00
|
|
|
EDA_RECT box( m_pos, m_size );
|
2020-04-14 12:25:00 +00:00
|
|
|
int lineWidth = GetPenWidth();
|
2020-02-20 21:29:21 +00:00
|
|
|
int textLength = 0;
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2011-04-29 12:42:04 +00:00
|
|
|
// Calculate bounding box X size:
|
2020-02-20 21:29:21 +00:00
|
|
|
end.x = std::max( m_size.x, textLength );
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2011-04-29 12:42:04 +00:00
|
|
|
// Calculate bounding box pos:
|
2011-12-08 15:45:01 +00:00
|
|
|
end.y = m_size.y;
|
|
|
|
end += m_pos;
|
2011-04-29 12:42:04 +00:00
|
|
|
|
|
|
|
box.SetEnd( end );
|
|
|
|
box.Inflate( lineWidth / 2 );
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const EDA_RECT SCH_SHEET::GetBoundingBox() const
|
|
|
|
{
|
|
|
|
EDA_RECT box = GetBodyBoundingBox();
|
|
|
|
|
|
|
|
for( const SCH_FIELD& field : m_fields )
|
|
|
|
box.Merge( field.GetBoundingBox() );
|
2020-03-06 12:05:21 +00:00
|
|
|
|
2008-03-30 10:14:37 +00:00
|
|
|
return box;
|
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2009-11-03 13:26:31 +00:00
|
|
|
|
2019-09-02 21:34:50 +00:00
|
|
|
wxPoint SCH_SHEET::GetRotationCenter() const
|
|
|
|
{
|
|
|
|
EDA_RECT box( m_pos, m_size );
|
|
|
|
return box.GetCenter();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-15 17:03:27 +00:00
|
|
|
int SCH_SHEET::SymbolCount() const
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2008-02-26 19:19:54 +00:00
|
|
|
int n = 0;
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2020-09-06 12:04:52 +00:00
|
|
|
for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_COMPONENT_T ) )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2020-11-15 17:03:27 +00:00
|
|
|
SCH_COMPONENT* symbol = (SCH_COMPONENT*) aItem;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-11-15 17:03:27 +00:00
|
|
|
if( symbol->GetField( VALUE_FIELD )->GetText().GetChar( 0 ) != '#' )
|
2019-06-25 23:39:58 +00:00
|
|
|
n++;
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2019-06-25 23:39:58 +00:00
|
|
|
|
2020-09-06 12:04:52 +00:00
|
|
|
for( SCH_ITEM* aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
|
2020-11-15 17:03:27 +00:00
|
|
|
n += static_cast<const SCH_SHEET*>( aItem )->SymbolCount();
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2009-12-02 21:44:03 +00:00
|
|
|
|
2008-02-26 19:19:54 +00:00
|
|
|
return n;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
|
|
|
|
|
2011-01-20 16:34:57 +00:00
|
|
|
bool SCH_SHEET::SearchHierarchy( const wxString& aFilename, SCH_SCREEN** aScreen )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2019-11-17 16:43:05 +00:00
|
|
|
// Only check the root sheet once and don't recurse.
|
|
|
|
if( !GetParent() )
|
|
|
|
{
|
2019-06-25 23:39:58 +00:00
|
|
|
if( m_screen && m_screen->GetFileName().Cmp( aFilename ) == 0 )
|
2019-11-17 16:43:05 +00:00
|
|
|
{
|
2019-06-25 23:39:58 +00:00
|
|
|
*aScreen = m_screen;
|
2019-11-17 16:43:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
for( auto aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2019-06-25 23:39:58 +00:00
|
|
|
SCH_SHEET* sheet = static_cast<SCH_SHEET*>( aItem );
|
|
|
|
SCH_SCREEN* screen = sheet->m_screen;
|
2011-01-20 16:34:57 +00:00
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
// Must use the screen's path (which is always absolute) rather than the
|
|
|
|
// sheet's (which could be relative).
|
|
|
|
if( screen && screen->GetFileName().Cmp( aFilename ) == 0 )
|
|
|
|
{
|
|
|
|
*aScreen = screen;
|
|
|
|
return true;
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2011-01-20 16:34:57 +00:00
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
if( sheet->SearchHierarchy( aFilename, aScreen ) )
|
|
|
|
return true;
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
|
|
|
}
|
2009-12-02 21:44:03 +00:00
|
|
|
|
2008-02-26 19:19:54 +00:00
|
|
|
return false;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
|
|
|
|
|
2016-02-15 20:24:59 +00:00
|
|
|
bool SCH_SHEET::LocatePathOfScreen( SCH_SCREEN* aScreen, SCH_SHEET_PATH* aList )
|
|
|
|
{
|
|
|
|
if( m_screen )
|
|
|
|
{
|
2016-02-27 19:35:45 +00:00
|
|
|
aList->push_back( this );
|
2016-02-15 20:24:59 +00:00
|
|
|
|
|
|
|
if( m_screen == aScreen )
|
|
|
|
return true;
|
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
for( auto item : m_screen->Items().OfType( SCH_SHEET_T ) )
|
2016-02-15 20:24:59 +00:00
|
|
|
{
|
2019-06-25 23:39:58 +00:00
|
|
|
SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
|
2016-02-15 20:24:59 +00:00
|
|
|
|
2019-06-25 23:39:58 +00:00
|
|
|
if( sheet->LocatePathOfScreen( aScreen, aList ) )
|
|
|
|
{
|
|
|
|
return true;
|
2016-02-15 20:24:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 19:35:45 +00:00
|
|
|
aList->pop_back();
|
2016-02-15 20:24:59 +00:00
|
|
|
}
|
2016-02-27 19:35:45 +00:00
|
|
|
|
2016-02-15 20:24:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-13 02:00:37 +00:00
|
|
|
int SCH_SHEET::CountSheets() const
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2008-02-26 19:19:54 +00:00
|
|
|
int count = 1; //1 = this!!
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_screen )
|
2008-02-26 19:19:54 +00:00
|
|
|
{
|
2019-06-25 23:39:58 +00:00
|
|
|
for( auto aItem : m_screen->Items().OfType( SCH_SHEET_T ) )
|
|
|
|
count += static_cast<SCH_SHEET*>( aItem )->CountSheets();
|
2008-02-26 19:19:54 +00:00
|
|
|
}
|
2019-06-25 23:39:58 +00:00
|
|
|
|
2008-02-26 19:19:54 +00:00
|
|
|
return count;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
void SCH_SHEET::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, MSG_PANEL_ITEMS& aList )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2020-12-08 05:50:25 +00:00
|
|
|
aList.emplace_back( _( "Sheet Name" ), m_fields[ SHEETNAME ].GetText() );
|
2020-03-05 12:20:38 +00:00
|
|
|
|
2020-10-24 22:29:29 +00:00
|
|
|
if( SCH_EDIT_FRAME* schframe = dynamic_cast<SCH_EDIT_FRAME*>( aFrame ) )
|
2020-05-13 02:00:37 +00:00
|
|
|
{
|
2020-10-24 22:29:29 +00:00
|
|
|
SCH_SHEET_PATH path = schframe->GetCurrentSheet();
|
|
|
|
path.push_back( this );
|
2020-05-13 02:00:37 +00:00
|
|
|
|
2020-12-08 05:50:25 +00:00
|
|
|
aList.emplace_back( _( "Hierarchical Path" ), path.PathHumanReadable( false ) );
|
2020-05-13 02:00:37 +00:00
|
|
|
}
|
2020-10-24 22:29:29 +00:00
|
|
|
|
2020-12-08 05:50:25 +00:00
|
|
|
aList.emplace_back( _( "File Name" ), m_fields[ SHEETFILENAME ].GetText() );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-16 13:15:54 +00:00
|
|
|
void SCH_SHEET::Rotate( wxPoint aPosition )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2020-03-06 12:05:21 +00:00
|
|
|
wxPoint prev = m_pos;
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
RotatePoint( &m_pos, aPosition, 900 );
|
2011-12-08 15:45:01 +00:00
|
|
|
RotatePoint( &m_size.x, &m_size.y, 900 );
|
2010-09-09 17:37:25 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_size.x < 0 )
|
2010-09-09 17:37:25 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos.x += m_size.x;
|
2015-06-26 13:41:56 +00:00
|
|
|
m_size.x = -m_size.x;
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2010-09-09 17:37:25 +00:00
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
if( m_size.y < 0 )
|
2010-09-09 17:37:25 +00:00
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos.y += m_size.y;
|
2015-06-26 13:41:56 +00:00
|
|
|
m_size.y = -m_size.y;
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2010-09-09 17:37:25 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
// Pins must be rotated first as that's how we determine vertical vs horizontal
|
|
|
|
// orientation for auto-placement
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->Rotate( aPosition );
|
2020-03-06 20:02:58 +00:00
|
|
|
|
|
|
|
if( m_fieldsAutoplaced == FIELDS_AUTOPLACED_AUTO )
|
|
|
|
{
|
|
|
|
AutoplaceFields( /* aScreen */ NULL, /* aManual */ false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Move the fields to the new position because the component itself has moved.
|
|
|
|
for( SCH_FIELD& field : m_fields )
|
|
|
|
{
|
|
|
|
wxPoint pos = field.GetTextPos();
|
|
|
|
pos.x -= prev.x - m_pos.x;
|
|
|
|
pos.y -= prev.y - m_pos.y;
|
|
|
|
field.SetTextPos( pos );
|
|
|
|
}
|
|
|
|
}
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2010-09-09 17:37:25 +00:00
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_SHEET::MirrorX( int aXaxis_position )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.y, aXaxis_position );
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos.y -= m_size.y;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->MirrorX( aXaxis_position );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2010-09-09 17:37:25 +00:00
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_SHEET::MirrorY( int aYaxis_position )
|
2009-07-27 14:32:40 +00:00
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
MIRROR( m_pos.x, aYaxis_position );
|
2011-12-08 15:45:01 +00:00
|
|
|
m_pos.x -= m_size.x;
|
2009-07-27 14:32:40 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->MirrorY( aYaxis_position );
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
|
2020-03-08 02:18:45 +00:00
|
|
|
|
2015-02-28 16:56:09 +00:00
|
|
|
void SCH_SHEET::SetPosition( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
// Remember the sheet and all pin sheet positions must be
|
|
|
|
// modified. So use Move function to do that.
|
|
|
|
Move( aPosition - m_pos );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
void SCH_SHEET::Resize( const wxSize& aSize )
|
|
|
|
{
|
2011-12-08 15:45:01 +00:00
|
|
|
if( aSize == m_size )
|
2010-06-24 18:31:43 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
m_size = aSize;
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-03-06 12:05:21 +00:00
|
|
|
// Move the fields if we're in autoplace mode
|
|
|
|
if( m_fieldsAutoplaced == FIELDS_AUTOPLACED_AUTO )
|
|
|
|
AutoplaceFields( /* aScreen */ NULL, /* aManual */ false );
|
|
|
|
|
|
|
|
// Move the sheet labels according to the new sheet size.
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->ConstrainOnEdge( sheetPin->GetPosition() );
|
2009-07-27 14:32:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-19 21:04:04 +00:00
|
|
|
bool SCH_SHEET::Matches( wxFindReplaceData& aSearchData, void* aAuxData )
|
2010-03-16 18:22:59 +00:00
|
|
|
{
|
2019-12-20 14:11:39 +00:00
|
|
|
wxLogTrace( traceFindItem, wxT( " item " ) + GetSelectMenuText( EDA_UNITS::MILLIMETRES ) );
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2020-03-06 12:05:21 +00:00
|
|
|
// Sheets are searchable via the child field and pin item text.
|
2010-10-20 19:43:58 +00:00
|
|
|
return false;
|
2010-03-16 18:22:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
void SCH_SHEET::renumberPins()
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2011-03-30 19:26:05 +00:00
|
|
|
int id = 2;
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
2010-06-24 18:31:43 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
pin->SetNumber( id );
|
2011-03-30 19:26:05 +00:00
|
|
|
id++;
|
2010-06-24 18:31:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-03 14:13:15 +00:00
|
|
|
void SCH_SHEET::GetEndPoints( std::vector <DANGLING_END_ITEM>& aItemList )
|
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
2010-11-03 14:13:15 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
wxCHECK2_MSG( sheetPin->Type() == SCH_SHEET_PIN_T, continue,
|
2010-11-03 14:13:15 +00:00
|
|
|
wxT( "Invalid item in schematic sheet pin list. Bad programmer!" ) );
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
sheetPin->GetEndPoints( aItemList );
|
2010-11-03 14:13:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-17 02:33:16 +00:00
|
|
|
bool SCH_SHEET::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList,
|
|
|
|
const SCH_SHEET_PATH* aPath )
|
2010-11-03 14:13:15 +00:00
|
|
|
{
|
2018-10-24 22:49:51 +00:00
|
|
|
bool changed = false;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
changed |= sheetPin->UpdateDanglingState( aItemList );
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2018-10-24 22:49:51 +00:00
|
|
|
return changed;
|
2010-11-03 14:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-08 13:27:13 +00:00
|
|
|
std::vector<wxPoint> SCH_SHEET::GetConnectionPoints() const
|
2010-11-03 14:13:15 +00:00
|
|
|
{
|
2020-09-08 13:27:13 +00:00
|
|
|
std::vector<wxPoint> retval;
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
2020-09-08 13:27:13 +00:00
|
|
|
retval.push_back( sheetPin->GetPosition() );
|
|
|
|
|
|
|
|
return retval;
|
2010-11-03 14:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-12 19:05:54 +00:00
|
|
|
SEARCH_RESULT SCH_SHEET::Visit( INSPECTOR aInspector, void* testData, const KICAD_T aFilterTypes[] )
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
KICAD_T stype;
|
|
|
|
|
|
|
|
for( const KICAD_T* p = aFilterTypes; (stype = *p) != EOT; ++p )
|
|
|
|
{
|
|
|
|
// If caller wants to inspect my type
|
2019-05-08 18:56:03 +00:00
|
|
|
if( stype == SCH_LOCATE_ANY_T || stype == Type() )
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2019-12-28 00:55:11 +00:00
|
|
|
if( SEARCH_RESULT::QUIT == aInspector( this, NULL ) )
|
|
|
|
return SEARCH_RESULT::QUIT;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
2019-05-08 18:56:03 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
if( stype == SCH_LOCATE_ANY_T || stype == SCH_FIELD_T )
|
|
|
|
{
|
|
|
|
// Test the sheet fields.
|
|
|
|
for( SCH_FIELD& field : m_fields )
|
|
|
|
{
|
|
|
|
if( SEARCH_RESULT::QUIT == aInspector( &field, this ) )
|
|
|
|
return SEARCH_RESULT::QUIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
if( stype == SCH_LOCATE_ANY_T || stype == SCH_SHEET_PIN_T )
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2011-12-01 16:49:28 +00:00
|
|
|
// Test the sheet labels.
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
if( SEARCH_RESULT::QUIT == aInspector( sheetPin, this ) )
|
2019-12-28 00:55:11 +00:00
|
|
|
return SEARCH_RESULT::QUIT;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-28 00:55:11 +00:00
|
|
|
return SEARCH_RESULT::CONTINUE;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
2010-12-13 15:59:00 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2020-11-17 16:02:47 +00:00
|
|
|
void SCH_SHEET::RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction )
|
|
|
|
{
|
|
|
|
for( SCH_FIELD& field : m_fields )
|
|
|
|
aFunction( &field );
|
|
|
|
|
|
|
|
for( SCH_SHEET_PIN* pin : m_pins )
|
|
|
|
aFunction( pin );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString SCH_SHEET::GetSelectMenuText( EDA_UNITS aUnits ) const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2020-09-19 16:12:00 +00:00
|
|
|
return wxString::Format( _( "Hierarchical Sheet %s" ),
|
|
|
|
m_fields[ SHEETNAME ].GetText() );
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF SCH_SHEET::GetMenuImage() const
|
|
|
|
{
|
|
|
|
return add_hierarchical_subsheet_xpm;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_SHEET::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2020-03-06 20:02:58 +00:00
|
|
|
EDA_RECT rect = GetBodyBoundingBox();
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
return rect.Contains( aPosition );
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_SHEET::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = aRect;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
2020-03-06 20:02:58 +00:00
|
|
|
return rect.Contains( GetBodyBoundingBox() );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2020-03-06 20:02:58 +00:00
|
|
|
return rect.Intersects( GetBodyBoundingBox() );
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_SHEET::Plot( PLOTTER* aPlotter )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2020-12-13 22:42:29 +00:00
|
|
|
wxString msg;
|
|
|
|
wxPoint pos;
|
|
|
|
auto* settings = dynamic_cast<KIGFX::SCH_RENDER_SETTINGS*>( aPlotter->RenderSettings() );
|
|
|
|
bool override = settings ? settings->m_OverrideItemColors : false;
|
|
|
|
COLOR4D borderColor = GetBorderColor();
|
|
|
|
COLOR4D backgroundColor = GetBackgroundColor();
|
2020-06-22 00:43:47 +00:00
|
|
|
|
|
|
|
if( override || borderColor == COLOR4D::UNSPECIFIED )
|
2020-04-14 12:25:00 +00:00
|
|
|
borderColor = aPlotter->RenderSettings()->GetLayerColor( LAYER_SHEET );
|
2020-04-05 11:29:58 +00:00
|
|
|
|
2020-06-22 00:43:47 +00:00
|
|
|
if( override || backgroundColor == COLOR4D::UNSPECIFIED )
|
|
|
|
backgroundColor = aPlotter->RenderSettings()->GetLayerColor( LAYER_SHEET_BACKGROUND );
|
|
|
|
|
|
|
|
aPlotter->SetColor( backgroundColor );
|
2020-07-28 08:13:20 +00:00
|
|
|
// Do not fill shape in B&W mode, otherwise texts are unreadable
|
|
|
|
bool fill = aPlotter->GetColorMode();
|
2020-12-13 22:42:29 +00:00
|
|
|
|
|
|
|
aPlotter->Rect( m_pos, m_pos + m_size, fill ? FILL_TYPE::FILLED_SHAPE : FILL_TYPE::NO_FILL,
|
|
|
|
1.0 );
|
2020-06-22 00:43:47 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( borderColor );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2020-09-08 19:18:50 +00:00
|
|
|
int penWidth = std::max( GetPenWidth(), aPlotter->RenderSettings()->GetMinPenWidth() );
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetCurrentLineWidth( penWidth );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->MoveTo( m_pos );
|
2011-12-08 15:45:01 +00:00
|
|
|
pos = m_pos;
|
|
|
|
pos.x += m_size.x;
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->LineTo( pos );
|
2011-12-08 15:45:01 +00:00
|
|
|
pos.y += m_size.y;
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->LineTo( pos );
|
2011-12-08 15:45:01 +00:00
|
|
|
pos = m_pos;
|
|
|
|
pos.y += m_size.y;
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->LineTo( pos );
|
|
|
|
aPlotter->FinishTo( m_pos );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2020-03-06 12:05:21 +00:00
|
|
|
for( SCH_FIELD field : m_fields )
|
|
|
|
field.Plot( aPlotter );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
/* Draw texts : SheetLabel */
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->Plot( aPlotter );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-13 22:42:29 +00:00
|
|
|
void SCH_SHEET::Print( RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
|
|
|
{
|
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
|
|
|
wxPoint pos = m_pos + aOffset;
|
|
|
|
int lineWidth = std::max( GetPenWidth(), aSettings->GetDefaultPenWidth() );
|
|
|
|
auto* settings = dynamic_cast<KIGFX::SCH_RENDER_SETTINGS*>( aSettings );
|
2020-12-15 17:10:24 +00:00
|
|
|
bool override = settings && settings->m_OverrideItemColors;
|
2020-12-13 22:42:29 +00:00
|
|
|
COLOR4D border = GetBorderColor();
|
|
|
|
COLOR4D background = GetBackgroundColor();
|
|
|
|
|
|
|
|
if( override || border == COLOR4D::UNSPECIFIED )
|
|
|
|
border = aSettings->GetLayerColor( LAYER_SHEET );
|
|
|
|
|
|
|
|
if( override || background == COLOR4D::UNSPECIFIED )
|
|
|
|
background = aSettings->GetLayerColor( LAYER_SHEET_BACKGROUND );
|
|
|
|
|
2020-12-15 17:10:24 +00:00
|
|
|
if( GetGRForceBlackPenState() ) // printing in black & white
|
|
|
|
background = COLOR4D::UNSPECIFIED;
|
|
|
|
|
2020-12-13 22:42:29 +00:00
|
|
|
if( background != COLOR4D::UNSPECIFIED )
|
|
|
|
{
|
|
|
|
GRFilledRect( nullptr, DC, pos.x, pos.y, pos.x + m_size.x, pos.y + m_size.y, 0,
|
|
|
|
background, background );
|
|
|
|
}
|
|
|
|
|
|
|
|
GRRect( nullptr, DC, pos.x, pos.y, pos.x + m_size.x, pos.y + m_size.y, lineWidth, border );
|
|
|
|
|
|
|
|
for( SCH_FIELD& field : m_fields )
|
|
|
|
field.Print( aSettings, aOffset );
|
|
|
|
|
|
|
|
/* Draw text : SheetLabel */
|
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->Print( aSettings, aOffset );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
SCH_SHEET& SCH_SHEET::operator=( const SCH_ITEM& aItem )
|
2012-01-09 20:26:55 +00:00
|
|
|
{
|
|
|
|
wxCHECK_MSG( Type() == aItem.Type(), *this,
|
|
|
|
wxT( "Cannot assign object type " ) + aItem.GetClass() + wxT( " to type " ) +
|
|
|
|
GetClass() );
|
|
|
|
|
|
|
|
if( &aItem != this )
|
|
|
|
{
|
|
|
|
SCH_ITEM::operator=( aItem );
|
|
|
|
|
|
|
|
SCH_SHEET* sheet = (SCH_SHEET*) &aItem;
|
|
|
|
|
|
|
|
m_pos = sheet->m_pos;
|
|
|
|
m_size = sheet->m_size;
|
2020-03-06 12:05:21 +00:00
|
|
|
m_fields = sheet->m_fields;
|
2012-01-09 20:26:55 +00:00
|
|
|
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* pin : sheet->m_pins )
|
2012-01-09 20:26:55 +00:00
|
|
|
{
|
2020-01-12 18:40:50 +00:00
|
|
|
m_pins.emplace_back( new SCH_SHEET_PIN( *pin ) );
|
|
|
|
m_pins.back()->SetParent( this );
|
2012-01-09 20:26:55 +00:00
|
|
|
}
|
2020-10-18 20:30:37 +00:00
|
|
|
|
2020-10-20 23:28:56 +00:00
|
|
|
for( const SCH_SHEET_INSTANCE& instance : sheet->m_instances )
|
2020-10-18 20:30:37 +00:00
|
|
|
m_instances.emplace_back( instance );
|
2012-01-09 20:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-28 20:33:23 +00:00
|
|
|
bool SCH_SHEET::operator <( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
if( Type() != aItem.Type() )
|
|
|
|
return Type() < aItem.Type();
|
|
|
|
|
|
|
|
auto sheet = static_cast<const SCH_SHEET*>( &aItem );
|
|
|
|
|
2020-11-24 22:16:41 +00:00
|
|
|
if (m_fields[ SHEETNAME ].GetText() != sheet->m_fields[ SHEETNAME ].GetText() )
|
2020-03-06 12:05:21 +00:00
|
|
|
return m_fields[ SHEETNAME ].GetText() < sheet->m_fields[ SHEETNAME ].GetText();
|
2020-01-28 20:33:23 +00:00
|
|
|
|
2020-11-24 22:16:41 +00:00
|
|
|
if (m_fields[ SHEETFILENAME ].GetText() != sheet->m_fields[ SHEETFILENAME ].GetText() )
|
2020-03-06 12:05:21 +00:00
|
|
|
return m_fields[ SHEETFILENAME ].GetText() < sheet->m_fields[ SHEETFILENAME ].GetText();
|
2020-01-28 20:33:23 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-18 20:30:37 +00:00
|
|
|
bool SCH_SHEET::AddInstance( const KIID_PATH& aSheetPath )
|
|
|
|
{
|
|
|
|
// a empty sheet path is illegal:
|
|
|
|
wxCHECK( aSheetPath.size() > 0, false );
|
|
|
|
|
|
|
|
wxString path;
|
|
|
|
|
|
|
|
for( const SCH_SHEET_INSTANCE& instance : m_instances )
|
|
|
|
{
|
|
|
|
// if aSheetPath is found, nothing to do:
|
|
|
|
if( instance.m_Path == aSheetPath )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCH_SHEET_INSTANCE instance;
|
|
|
|
|
|
|
|
instance.m_Path = aSheetPath;
|
|
|
|
|
|
|
|
// This entry does not exist: add it with an empty page number.
|
|
|
|
m_instances.emplace_back( instance );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString SCH_SHEET::GetPageNumber( const SCH_SHEET_PATH& aInstance ) const
|
|
|
|
{
|
|
|
|
wxString pageNumber;
|
|
|
|
KIID_PATH path = aInstance.Path();
|
|
|
|
|
|
|
|
for( const SCH_SHEET_INSTANCE& instance : m_instances )
|
|
|
|
{
|
|
|
|
if( instance.m_Path == path )
|
|
|
|
{
|
|
|
|
pageNumber = instance.m_PageNumber;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pageNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_SHEET::SetPageNumber( const SCH_SHEET_PATH& aInstance, const wxString& aPageNumber )
|
|
|
|
{
|
|
|
|
KIID_PATH path = aInstance.Path();
|
|
|
|
|
|
|
|
for( SCH_SHEET_INSTANCE& instance : m_instances )
|
|
|
|
{
|
|
|
|
if( instance.m_Path == path )
|
|
|
|
{
|
|
|
|
instance.m_PageNumber = aPageNumber;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-29 00:10:17 +00:00
|
|
|
int SCH_SHEET::ComparePageNum( const wxString& aPageNumberA, const wxString aPageNumberB )
|
|
|
|
{
|
|
|
|
if( aPageNumberA == aPageNumberB )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// First sort numerically if the page numbers are integers
|
|
|
|
long pageA, pageB;
|
|
|
|
bool isIntegerPageA = aPageNumberA.ToLong( &pageA );
|
|
|
|
bool isIntegerPageB = aPageNumberB.ToLong( &pageB );
|
|
|
|
|
|
|
|
if( isIntegerPageA && isIntegerPageB )
|
|
|
|
{
|
|
|
|
if( pageA > pageB )
|
|
|
|
return 1;
|
|
|
|
else if( pageA == pageB )
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Numerical page numbers always before strings
|
|
|
|
if( isIntegerPageA )
|
|
|
|
return -1;
|
|
|
|
else if( isIntegerPageB )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// If not numeric, then sort as strings
|
|
|
|
int result = aPageNumberA.Cmp( aPageNumberB );
|
|
|
|
|
|
|
|
if( result == 0 )
|
|
|
|
return 0;
|
|
|
|
else if( result > 0 )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 16:38:23 +00:00
|
|
|
#if defined(DEBUG)
|
2010-06-24 18:31:43 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
void SCH_SHEET::Show( int nestLevel, std::ostream& os ) const
|
2008-04-22 16:38:23 +00:00
|
|
|
{
|
|
|
|
// XML output:
|
|
|
|
wxString s = GetClass();
|
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
NestedSpace( nestLevel, os ) << '<' << s.Lower().mb_str() << ">" << " sheet_name=\""
|
2020-03-06 12:05:21 +00:00
|
|
|
<< TO_UTF8( m_fields[ SHEETNAME ].GetText() ) << '"' << ">\n";
|
2008-04-22 16:38:23 +00:00
|
|
|
|
|
|
|
// show all the pins, and check the linked list integrity
|
2020-01-12 18:40:50 +00:00
|
|
|
for( SCH_SHEET_PIN* sheetPin : m_pins )
|
|
|
|
sheetPin->Show( nestLevel + 1, os );
|
2008-04-22 16:38:23 +00:00
|
|
|
|
2010-06-24 18:31:43 +00:00
|
|
|
NestedSpace( nestLevel, os ) << "</" << s.Lower().mb_str() << ">\n" << std::flush;
|
2008-02-12 21:12:46 +00:00
|
|
|
}
|
2008-02-26 19:19:54 +00:00
|
|
|
|
2009-01-04 18:52:57 +00:00
|
|
|
#endif
|