2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2018-04-13 13:58:25 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-19 20:32:21 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file sch_item_struct.cpp
|
|
|
|
*/
|
2009-04-05 21:07:24 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <base_struct.h>
|
2018-04-13 13:58:25 +00:00
|
|
|
#include <trace_helpers.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_item_struct.h>
|
2018-01-30 08:56:43 +00:00
|
|
|
#include <sch_screen.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <general.h>
|
2009-04-05 21:07:24 +00:00
|
|
|
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2009-04-05 21:07:24 +00:00
|
|
|
/* Constructor and destructor for SCH_ITEM */
|
|
|
|
/* They are not inline because this creates problems with gcc at linking time
|
|
|
|
* in debug mode
|
2011-06-17 13:24:22 +00:00
|
|
|
*/
|
2009-04-05 21:07:24 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_ITEM::SCH_ITEM( EDA_ITEM* aParent, KICAD_T aType ) :
|
|
|
|
EDA_ITEM( aParent, aType )
|
2009-04-05 21:07:24 +00:00
|
|
|
{
|
2013-04-06 05:01:48 +00:00
|
|
|
m_Layer = LAYER_WIRE; // It's only a default, in fact
|
2009-04-05 21:07:24 +00:00
|
|
|
}
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
SCH_ITEM::SCH_ITEM( const SCH_ITEM& aItem ) :
|
|
|
|
EDA_ITEM( aItem )
|
|
|
|
{
|
|
|
|
m_Layer = aItem.m_Layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-05 21:07:24 +00:00
|
|
|
SCH_ITEM::~SCH_ITEM()
|
|
|
|
{
|
2011-03-25 19:16:05 +00:00
|
|
|
// Do not let the connections container go out of scope with any objects or they
|
2011-09-30 18:15:37 +00:00
|
|
|
// will be deleted by the container will cause the Eeschema to crash. These objects
|
2010-11-10 15:30:12 +00:00
|
|
|
// are owned by the sheet object container.
|
|
|
|
if( !m_connections.empty() )
|
2011-03-25 19:16:05 +00:00
|
|
|
m_connections.clear();
|
2009-04-05 21:07:24 +00:00
|
|
|
}
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void SCH_ITEM::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
// Basic fallback
|
|
|
|
aCount = 1;
|
|
|
|
aLayers[0] = LAYER_DEVICE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-13 15:59:00 +00:00
|
|
|
bool SCH_ITEM::IsConnected( const wxPoint& aPosition ) const
|
|
|
|
{
|
|
|
|
if( m_Flags & STRUCT_DELETED || m_Flags & SKIP_STRUCT )
|
|
|
|
return false;
|
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
return doIsConnected( aPosition );
|
2010-12-13 15:59:00 +00:00
|
|
|
}
|
2011-03-25 19:16:05 +00:00
|
|
|
|
|
|
|
|
2011-04-05 14:46:51 +00:00
|
|
|
void SCH_ITEM::SwapData( SCH_ITEM* aItem )
|
|
|
|
{
|
|
|
|
wxFAIL_MSG( wxT( "SwapData() method not implemented for class " ) + GetClass() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
bool SCH_ITEM::operator < ( const SCH_ITEM& aItem ) const
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( false, this->Type() < aItem.Type(),
|
|
|
|
wxT( "Less than operator not defined for " ) + GetClass() );
|
|
|
|
}
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_ITEM::Plot( PLOTTER* aPlotter )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
wxFAIL_MSG( wxT( "Plot() method not implemented for class " ) + GetClass() );
|
2011-06-17 13:24:22 +00:00
|
|
|
}
|