2013-03-15 13:27:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 NBEE Embedded Systems SL, Miguel Angel Ajo <miguelangel@ajo.es>
|
2021-07-19 23:56:05 +00:00
|
|
|
* Copyright (C) 2013-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-03-15 13:27:18 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
/**
|
2018-01-30 19:23:06 +00:00
|
|
|
* @file footprint_wizard.cpp
|
|
|
|
* @brief Class FOOTPRINT_WIZARD and FOOTPRINT_WIZARD_LIST
|
2012-05-09 17:37:25 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
#include "footprint_wizard.h"
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
|
|
|
|
FOOTPRINT_WIZARD::~FOOTPRINT_WIZARD()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
void FOOTPRINT_WIZARD::register_wizard()
|
|
|
|
{
|
2018-01-30 19:23:06 +00:00
|
|
|
FOOTPRINT_WIZARD_LIST::register_wizard( this );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
std::vector<FOOTPRINT_WIZARD*> FOOTPRINT_WIZARD_LIST::m_FootprintWizards;
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
FOOTPRINT_WIZARD* FOOTPRINT_WIZARD_LIST::GetWizard( int aIndex )
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
|
|
|
return m_FootprintWizards[aIndex];
|
|
|
|
}
|
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
FOOTPRINT_WIZARD* FOOTPRINT_WIZARD_LIST::GetWizard( const wxString& aName )
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
2015-04-26 16:32:16 +00:00
|
|
|
int max = GetWizardsCount();
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
for( int i = 0; i<max; i++ )
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
2013-03-16 03:27:48 +00:00
|
|
|
FOOTPRINT_WIZARD* wizard = GetWizard( i );
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
wxString name = wizard->GetName();
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
if( name.Cmp( aName )==0 )
|
|
|
|
return wizard;
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
return nullptr;
|
2012-05-09 23:04:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
int FOOTPRINT_WIZARD_LIST::GetWizardsCount()
|
2012-05-09 23:04:08 +00:00
|
|
|
{
|
|
|
|
return m_FootprintWizards.size();
|
|
|
|
}
|
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
void FOOTPRINT_WIZARD_LIST::register_wizard( FOOTPRINT_WIZARD* aWizard )
|
2013-03-16 03:27:48 +00:00
|
|
|
{
|
2017-01-09 13:44:07 +00:00
|
|
|
// Search for this entry do not register twice this wizard):
|
|
|
|
for( int ii = 0; ii < GetWizardsCount(); ii++ )
|
|
|
|
{
|
|
|
|
if( aWizard == GetWizard( ii ) ) // Already registered
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search for a wizard with the same name, and remove it if found
|
|
|
|
for( int ii = 0; ii < GetWizardsCount(); ii++ )
|
|
|
|
{
|
|
|
|
FOOTPRINT_WIZARD* wizard = GetWizard( ii );
|
|
|
|
|
|
|
|
if( wizard->GetName() == aWizard->GetName() )
|
|
|
|
{
|
|
|
|
m_FootprintWizards.erase( m_FootprintWizards.begin() + ii );
|
|
|
|
delete wizard;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
m_FootprintWizards.push_back( aWizard );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-30 19:23:06 +00:00
|
|
|
bool FOOTPRINT_WIZARD_LIST::deregister_object( void* aObject )
|
2013-03-16 03:27:48 +00:00
|
|
|
{
|
2015-04-26 16:32:16 +00:00
|
|
|
int max = GetWizardsCount();
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2017-01-09 13:44:07 +00:00
|
|
|
for( int ii = 0; ii < max; ii++ )
|
2013-03-16 03:27:48 +00:00
|
|
|
{
|
2017-01-09 13:44:07 +00:00
|
|
|
FOOTPRINT_WIZARD* wizard = GetWizard( ii );
|
2013-03-16 03:27:48 +00:00
|
|
|
|
|
|
|
if( wizard->GetObject() == aObject )
|
|
|
|
{
|
2017-01-09 13:44:07 +00:00
|
|
|
m_FootprintWizards.erase( m_FootprintWizards.begin() + ii );
|
2013-03-16 03:27:48 +00:00
|
|
|
delete wizard;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
return false;
|
|
|
|
}
|