2012-06-08 09:56:42 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-10-25 16:58:04 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-11-22 19:47:10 +00:00
|
|
|
* Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2017-11-12 00:31:38 +00:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
2018-02-06 09:54:11 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-06-08 09:56:42 +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
|
|
|
|
*/
|
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
#include <bitmaps.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <board_commit.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <pad.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <dialog_exchange_footprints.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <kiway.h>
|
2021-03-20 15:35:37 +00:00
|
|
|
#include <macros.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
|
|
|
#include <pcbnew_settings.h>
|
2014-05-09 18:35:48 +00:00
|
|
|
#include <project.h>
|
2022-09-03 18:29:02 +00:00
|
|
|
#include <widgets/wx_html_report_panel.h>
|
2009-11-20 14:55:20 +00:00
|
|
|
|
2015-08-06 17:11:51 +00:00
|
|
|
|
2020-11-24 11:59:12 +00:00
|
|
|
#define ID_MATCH_FP_ALL 4200
|
2018-10-22 15:01:29 +00:00
|
|
|
#define ID_MATCH_FP_SELECTED 4201
|
2020-11-24 11:59:12 +00:00
|
|
|
#define ID_MATCH_FP_REF 4202
|
|
|
|
#define ID_MATCH_FP_VAL 4203
|
|
|
|
#define ID_MATCH_FP_ID 4204
|
2018-02-05 19:46:55 +00:00
|
|
|
|
2018-10-15 15:09:03 +00:00
|
|
|
|
|
|
|
int g_matchModeForUpdate = ID_MATCH_FP_ALL;
|
2018-10-22 15:01:29 +00:00
|
|
|
int g_matchModeForUpdateSelected = ID_MATCH_FP_SELECTED;
|
2018-10-15 15:09:03 +00:00
|
|
|
int g_matchModeForExchange = ID_MATCH_FP_REF;
|
2018-10-22 15:01:29 +00:00
|
|
|
int g_matchModeForExchangeSelected = ID_MATCH_FP_SELECTED;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2020-11-24 11:59:12 +00:00
|
|
|
// { update, change }
|
|
|
|
bool g_removeExtraTextItems[2] = { false, false };
|
|
|
|
bool g_resetTextItemLayers[2] = { false, true };
|
|
|
|
bool g_resetTextItemEffects[2] = { false, true };
|
|
|
|
bool g_resetFabricationAttrs[2] = { false, true };
|
|
|
|
bool g_reset3DModels[2] = { true, true };
|
2019-11-05 17:38:29 +00:00
|
|
|
|
2015-08-06 17:11:51 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
DIALOG_EXCHANGE_FOOTPRINTS::DIALOG_EXCHANGE_FOOTPRINTS( PCB_EDIT_FRAME* aParent,
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* aFootprint,
|
2018-10-22 15:01:29 +00:00
|
|
|
bool updateMode, bool selectedMode ) :
|
2020-10-14 23:37:26 +00:00
|
|
|
DIALOG_EXCHANGE_FOOTPRINTS_BASE( aParent ),
|
|
|
|
m_commit( aParent ),
|
|
|
|
m_parent( aParent ),
|
|
|
|
m_currentFootprint( aFootprint ),
|
|
|
|
m_updateMode( updateMode )
|
2009-06-20 19:09:43 +00:00
|
|
|
{
|
2020-10-30 19:48:22 +00:00
|
|
|
if( !updateMode )
|
|
|
|
{
|
|
|
|
SetTitle( _( "Change Footprints" ) );
|
|
|
|
m_matchAll->SetLabel( _( "Change all footprints on board" ) );
|
2021-06-17 22:34:19 +00:00
|
|
|
m_matchSelected->SetLabel( _( "Change selected footprint(s)" ) );
|
2020-10-30 19:48:22 +00:00
|
|
|
m_matchSpecifiedRef->SetLabel( _( "Change footprints matching reference designator:" ) );
|
|
|
|
m_matchSpecifiedValue->SetLabel( _( "Change footprints matching value:" ) );
|
|
|
|
m_matchSpecifiedID->SetLabel( _( "Change footprints with library id:" ) );
|
|
|
|
m_resetTextItemLayers->SetLabel( _( "Update text layers and visibilities" ) );
|
|
|
|
m_resetTextItemEffects->SetLabel( _( "Update text sizes, styles and positions" ) );
|
2020-11-24 11:59:12 +00:00
|
|
|
m_resetFabricationAttrs->SetLabel( _( "Update fabrication attributes" ) );
|
2020-10-30 19:48:22 +00:00
|
|
|
m_reset3DModels->SetLabel( _( "Update 3D models" ) );
|
|
|
|
}
|
2015-08-07 08:28:14 +00:00
|
|
|
|
2020-11-24 11:59:12 +00:00
|
|
|
#if 0 // translator hint
|
|
|
|
wxString x = _( "Update/reset strings: there are two cases these descriptions need to cover: "
|
|
|
|
"the user made overrides to a footprint on the PCB and wants to remove them, "
|
|
|
|
"or the user made changes to the library footprint and wants to propagate "
|
|
|
|
"them back to the PCB." );
|
|
|
|
#endif
|
|
|
|
|
2018-04-18 09:31:33 +00:00
|
|
|
if( m_updateMode )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-04-18 09:31:33 +00:00
|
|
|
m_changeSizer->Show( false );
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-01-28 18:44:52 +00:00
|
|
|
m_upperSizer->FindItem( m_matchAll )->Show( false );
|
2021-03-08 02:59:07 +00:00
|
|
|
m_newIDBrowseButton->SetBitmap( KiBitmap( BITMAPS::small_library ) );
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
if( m_currentFootprint )
|
2018-10-22 15:01:29 +00:00
|
|
|
{
|
2020-10-14 23:37:26 +00:00
|
|
|
m_newID->AppendText( FROM_UTF8( m_currentFootprint->GetFPID().Format().c_str() ) );
|
2018-10-22 15:01:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_upperSizer->FindItem( m_matchSelected )->Show( false );
|
|
|
|
|
2018-10-15 15:09:03 +00:00
|
|
|
// Use ChangeValue() instead of SetValue() so we don't generate events.
|
2020-10-14 23:37:26 +00:00
|
|
|
if( m_currentFootprint )
|
|
|
|
m_specifiedRef->ChangeValue( m_currentFootprint->GetReference() );
|
2009-06-20 19:09:43 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
if( m_currentFootprint )
|
|
|
|
m_specifiedValue->ChangeValue( m_currentFootprint->GetValue() );
|
2009-06-20 19:09:43 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
if( m_currentFootprint )
|
|
|
|
m_specifiedID->ChangeValue( FROM_UTF8( m_currentFootprint->GetFPID().Format().c_str() ) );
|
2018-10-15 15:09:03 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
m_specifiedIDBrowseButton->SetBitmap( KiBitmap( BITMAPS::small_library ) );
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2018-01-28 18:44:52 +00:00
|
|
|
m_upperSizer->SetEmptyCellSize( wxSize( 0, 0 ) );
|
2019-11-20 16:45:30 +00:00
|
|
|
// The upper sizer has its content modified: re-layout it:
|
|
|
|
m_upperSizer->Layout();
|
2018-01-28 18:44:52 +00:00
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
// initialize match-mode
|
2018-10-22 15:01:29 +00:00
|
|
|
if( m_updateMode )
|
|
|
|
m_matchMode = selectedMode ? &g_matchModeForUpdateSelected : &g_matchModeForUpdate;
|
|
|
|
else
|
|
|
|
m_matchMode = selectedMode ? &g_matchModeForExchangeSelected : &g_matchModeForExchange;
|
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
wxCommandEvent event;
|
2018-10-22 15:01:29 +00:00
|
|
|
event.SetEventObject( this );
|
|
|
|
|
|
|
|
switch( *m_matchMode )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
case ID_MATCH_FP_ALL: OnMatchAllClicked( event ); break;
|
|
|
|
case ID_MATCH_FP_SELECTED: OnMatchSelectedClicked( event ); break;
|
|
|
|
case ID_MATCH_FP_REF: OnMatchRefClicked( event ); break;
|
|
|
|
case ID_MATCH_FP_VAL: OnMatchValueClicked( event ); break;
|
|
|
|
case ID_MATCH_FP_ID: OnMatchIDClicked( event ); break;
|
|
|
|
default: break;
|
2009-06-20 19:09:43 +00:00
|
|
|
}
|
2018-04-18 09:31:33 +00:00
|
|
|
|
2020-09-15 22:52:53 +00:00
|
|
|
m_removeExtraBox->SetValue( g_removeExtraTextItems[ m_updateMode ? 0 : 1 ] );
|
|
|
|
m_resetTextItemLayers->SetValue( g_resetTextItemLayers[ m_updateMode ? 0 : 1 ] );
|
|
|
|
m_resetTextItemEffects->SetValue( g_resetTextItemEffects[ m_updateMode ? 0 : 1 ] );
|
|
|
|
m_resetFabricationAttrs->SetValue( g_resetFabricationAttrs[ m_updateMode ? 0 : 1 ] );
|
|
|
|
m_reset3DModels->SetValue( g_reset3DModels[ m_updateMode ? 0 : 1 ] );
|
2019-11-05 17:38:29 +00:00
|
|
|
|
2019-11-16 23:03:46 +00:00
|
|
|
m_MessageWindow->SetLazyUpdate( true );
|
2021-02-25 15:05:26 +00:00
|
|
|
m_MessageWindow->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) );
|
2019-11-16 23:03:46 +00:00
|
|
|
|
2018-04-18 09:31:33 +00:00
|
|
|
// DIALOG_SHIM needs a unique hash_key because classname is not sufficient
|
|
|
|
// because the update and change versions of this dialog have different controls.
|
|
|
|
m_hash_key = TO_UTF8( GetTitle() );
|
|
|
|
|
2021-11-16 19:39:58 +00:00
|
|
|
wxString okLabel = m_updateMode ? _( "Update" ) : _( "Change" );
|
2020-10-30 19:48:22 +00:00
|
|
|
|
2021-11-16 19:39:58 +00:00
|
|
|
SetupStandardButtons( { { wxID_OK, okLabel },
|
|
|
|
{ wxID_CANCEL, _( "Close" ) } } );
|
2018-04-18 09:31:33 +00:00
|
|
|
|
|
|
|
// Now all widgets have the size fixed, call FinishDialogSettings
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
2015-07-28 15:33:18 +00:00
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2019-11-05 17:38:29 +00:00
|
|
|
DIALOG_EXCHANGE_FOOTPRINTS::~DIALOG_EXCHANGE_FOOTPRINTS()
|
|
|
|
{
|
2020-09-15 22:52:53 +00:00
|
|
|
g_removeExtraTextItems[ m_updateMode ? 0 : 1 ] = m_removeExtraBox->GetValue();
|
|
|
|
g_resetTextItemLayers[ m_updateMode ? 0 : 1 ] = m_resetTextItemLayers->GetValue();
|
|
|
|
g_resetTextItemEffects[ m_updateMode ? 0 : 1 ] = m_resetTextItemEffects->GetValue();
|
|
|
|
g_resetFabricationAttrs[ m_updateMode ? 0 : 1 ] = m_resetFabricationAttrs->GetValue();
|
|
|
|
g_reset3DModels[ m_updateMode ? 0 : 1 ] = m_reset3DModels->GetValue();
|
2019-11-05 17:38:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
bool DIALOG_EXCHANGE_FOOTPRINTS::isMatch( FOOTPRINT* aFootprint )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-07-26 14:38:30 +00:00
|
|
|
LIB_ID specifiedID;
|
|
|
|
|
2018-10-22 15:01:29 +00:00
|
|
|
switch( *m_matchMode )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-02-06 09:54:11 +00:00
|
|
|
case ID_MATCH_FP_ALL:
|
2018-01-12 19:36:15 +00:00
|
|
|
return true;
|
2018-10-22 15:01:29 +00:00
|
|
|
case ID_MATCH_FP_SELECTED:
|
2021-06-17 22:34:19 +00:00
|
|
|
return aFootprint == m_currentFootprint || aFootprint->IsSelected();
|
2018-02-06 09:54:11 +00:00
|
|
|
case ID_MATCH_FP_REF:
|
2020-10-14 23:37:26 +00:00
|
|
|
return WildCompareString( m_specifiedRef->GetValue(), aFootprint->GetReference(), false );
|
2018-02-06 09:54:11 +00:00
|
|
|
case ID_MATCH_FP_VAL:
|
2020-10-14 23:37:26 +00:00
|
|
|
return WildCompareString( m_specifiedValue->GetValue(), aFootprint->GetValue(), false );
|
2018-02-06 09:54:11 +00:00
|
|
|
case ID_MATCH_FP_ID:
|
2020-12-17 23:32:23 +00:00
|
|
|
specifiedID.Parse( m_specifiedID->GetValue() );
|
2020-10-14 23:37:26 +00:00
|
|
|
return aFootprint->GetFPID() == specifiedID;
|
2018-10-15 15:09:03 +00:00
|
|
|
default:
|
|
|
|
return false; // just to quiet compiler warnings....
|
2015-07-28 15:33:18 +00:00
|
|
|
}
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
2015-07-28 15:33:18 +00:00
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
wxRadioButton* DIALOG_EXCHANGE_FOOTPRINTS::getRadioButtonForMode()
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
switch( *m_matchMode )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
case ID_MATCH_FP_ALL: return m_matchAll;
|
|
|
|
case ID_MATCH_FP_SELECTED: return m_matchSelected;
|
|
|
|
case ID_MATCH_FP_REF: return m_matchSpecifiedRef;
|
|
|
|
case ID_MATCH_FP_VAL: return m_matchSpecifiedValue;
|
|
|
|
case ID_MATCH_FP_ID: return m_matchSpecifiedID;
|
|
|
|
default: return nullptr;
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::updateMatchModeRadioButtons( wxUpdateUIEvent& )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-02-10 16:07:02 +00:00
|
|
|
wxRadioButton* rb_button = getRadioButtonForMode();
|
|
|
|
|
|
|
|
wxRadioButton* rb_butt_list[] =
|
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
m_matchAll,
|
|
|
|
m_matchSelected,
|
2018-10-15 15:09:03 +00:00
|
|
|
m_matchSpecifiedRef,
|
|
|
|
m_matchSpecifiedValue,
|
|
|
|
m_matchSpecifiedID,
|
2018-02-10 16:07:02 +00:00
|
|
|
nullptr // end of list
|
|
|
|
};
|
|
|
|
|
|
|
|
// Ensure the button state is ok. Only one button can be checked
|
|
|
|
// Change button state only if its state is incorrect, otherwise
|
|
|
|
// we have issues depending on the platform.
|
|
|
|
for( int ii = 0; rb_butt_list[ii]; ++ii )
|
|
|
|
{
|
|
|
|
bool state = rb_butt_list[ii] == rb_button;
|
|
|
|
|
|
|
|
if( rb_butt_list[ii]->GetValue() != state )
|
|
|
|
rb_butt_list[ii]->SetValue( state );
|
|
|
|
}
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnMatchAllClicked( wxCommandEvent& event )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
*m_matchMode = ID_MATCH_FP_ALL;
|
|
|
|
|
|
|
|
if( event.GetEventObject() == this )
|
|
|
|
SetInitialFocus( m_matchAll );
|
|
|
|
else
|
|
|
|
m_matchAll->SetFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnMatchSelectedClicked( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
*m_matchMode = ID_MATCH_FP_SELECTED;
|
|
|
|
|
|
|
|
if( event.GetEventObject() == this )
|
|
|
|
SetInitialFocus( m_matchSelected );
|
|
|
|
else
|
|
|
|
m_matchSelected->SetFocus();
|
2018-01-12 19:36:15 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 16:07:02 +00:00
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnMatchRefClicked( wxCommandEvent& event )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
*m_matchMode = ID_MATCH_FP_REF;
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2018-10-22 15:01:29 +00:00
|
|
|
if( event.GetEventObject() == this )
|
|
|
|
SetInitialFocus( m_specifiedRef );
|
|
|
|
else if( event.GetEventObject() != m_specifiedRef )
|
2018-01-12 19:36:15 +00:00
|
|
|
m_specifiedRef->SetFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnMatchValueClicked( wxCommandEvent& event )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
*m_matchMode = ID_MATCH_FP_VAL;
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2018-10-22 15:01:29 +00:00
|
|
|
if( event.GetEventObject() == this )
|
|
|
|
SetInitialFocus( m_specifiedValue );
|
|
|
|
else if( event.GetEventObject() != m_specifiedValue )
|
2018-01-12 19:36:15 +00:00
|
|
|
m_specifiedValue->SetFocus();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnMatchIDClicked( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-10-22 15:01:29 +00:00
|
|
|
*m_matchMode = ID_MATCH_FP_ID;
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2018-10-22 15:01:29 +00:00
|
|
|
if( event.GetEventObject() == this )
|
|
|
|
SetInitialFocus( m_specifiedID );
|
|
|
|
else if( event.GetEventObject() != m_specifiedID )
|
2018-01-12 19:36:15 +00:00
|
|
|
m_specifiedID->SetFocus();
|
|
|
|
}
|
2013-11-24 17:48:14 +00:00
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2020-05-06 19:49:58 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::OnOKClicked( wxCommandEvent& event )
|
2018-01-12 19:36:15 +00:00
|
|
|
{
|
2018-04-18 09:31:33 +00:00
|
|
|
wxBusyCursor dummy;
|
2018-01-12 19:36:15 +00:00
|
|
|
|
|
|
|
m_MessageWindow->Clear();
|
2019-11-16 23:03:46 +00:00
|
|
|
m_MessageWindow->Flush( false );
|
2018-01-12 19:36:15 +00:00
|
|
|
|
2021-09-03 21:40:45 +00:00
|
|
|
processMatchingFootprints();
|
|
|
|
|
|
|
|
m_parent->Compile_Ratsnest( true );
|
|
|
|
m_parent->GetCanvas()->Refresh();
|
2013-11-24 17:48:14 +00:00
|
|
|
|
2019-11-16 23:03:46 +00:00
|
|
|
m_MessageWindow->Flush( false );
|
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
m_commit.Push( wxT( "Changed footprint" ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-03 21:40:45 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::processMatchingFootprints()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-07-26 14:38:30 +00:00
|
|
|
LIB_ID newFPID;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2020-11-12 23:50:33 +00:00
|
|
|
if( m_parent->GetBoard()->Footprints().empty() )
|
2021-09-03 21:40:45 +00:00
|
|
|
return;
|
2011-09-20 13:57:40 +00:00
|
|
|
|
2018-07-26 14:38:30 +00:00
|
|
|
if( !m_updateMode )
|
|
|
|
{
|
2020-12-17 23:32:23 +00:00
|
|
|
newFPID.Parse( m_newID->GetValue() );
|
2018-07-26 14:38:30 +00:00
|
|
|
|
|
|
|
if( !newFPID.IsValid() )
|
2021-09-03 21:40:45 +00:00
|
|
|
return;
|
2018-07-26 14:38:30 +00:00
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2021-09-23 11:30:43 +00:00
|
|
|
/*
|
|
|
|
* NB: the change is done from the last footprint because processFootprint() modifies the
|
|
|
|
* last item in the list.
|
2009-06-20 19:09:43 +00:00
|
|
|
*/
|
2020-11-12 23:50:33 +00:00
|
|
|
for( auto it = m_parent->GetBoard()->Footprints().rbegin();
|
|
|
|
it != m_parent->GetBoard()->Footprints().rend(); it++ )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2021-09-23 11:30:43 +00:00
|
|
|
FOOTPRINT* footprint = *it;
|
2011-09-20 13:57:40 +00:00
|
|
|
|
2021-09-23 11:30:43 +00:00
|
|
|
if( !isMatch( footprint ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
2011-09-20 13:57:40 +00:00
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
if( m_updateMode )
|
2021-09-03 21:40:45 +00:00
|
|
|
processFootprint( footprint, footprint->GetFPID() );
|
2018-01-12 19:36:15 +00:00
|
|
|
else
|
2021-09-03 21:40:45 +00:00
|
|
|
processFootprint( footprint, newFPID );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2021-09-03 21:40:45 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::processFootprint( FOOTPRINT* aFootprint, const LIB_ID& aNewFPID )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-10-14 23:37:26 +00:00
|
|
|
LIB_ID oldFPID = aFootprint->GetFPID();
|
2018-04-18 09:31:33 +00:00
|
|
|
wxString msg;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
// Load new footprint.
|
2020-11-23 21:51:27 +00:00
|
|
|
if( m_updateMode )
|
|
|
|
{
|
2021-09-03 21:40:45 +00:00
|
|
|
msg.Printf( _( "Updated footprint %s (%s)" ) + wxS( ": " ),
|
2020-11-23 21:51:27 +00:00
|
|
|
aFootprint->GetReference(),
|
2021-09-03 21:40:45 +00:00
|
|
|
oldFPID.Format().c_str() );
|
2020-11-23 21:51:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-09-03 21:40:45 +00:00
|
|
|
msg.Printf( _( "Changed footprint %s from '%s' to '%s'" ) + wxS( ": " ),
|
2020-11-23 21:51:27 +00:00
|
|
|
aFootprint->GetReference(),
|
|
|
|
oldFPID.Format().c_str(),
|
|
|
|
aNewFPID.Format().c_str() );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* newFootprint = m_parent->LoadFootprint( aNewFPID );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
if( !newFootprint )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2021-09-03 21:40:45 +00:00
|
|
|
msg += _( "*** library footprint not found ***" );
|
2020-03-04 09:48:18 +00:00
|
|
|
m_MessageWindow->Report( msg, RPT_SEVERITY_ERROR );
|
2021-09-03 21:40:45 +00:00
|
|
|
return;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-12-25 17:32:04 +00:00
|
|
|
bool updated = !m_updateMode || aFootprint->FootprintNeedsUpdate( newFootprint );
|
2021-09-03 21:40:45 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
m_parent->ExchangeFootprint( aFootprint, newFootprint, m_commit,
|
|
|
|
m_removeExtraBox->GetValue(),
|
|
|
|
m_resetTextItemLayers->GetValue(),
|
|
|
|
m_resetTextItemEffects->GetValue(),
|
|
|
|
m_resetFabricationAttrs->GetValue(),
|
2021-12-25 17:32:04 +00:00
|
|
|
m_reset3DModels->GetValue(),
|
|
|
|
&updated );
|
2013-05-28 16:54:59 +00:00
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
if( aFootprint == m_currentFootprint )
|
|
|
|
m_currentFootprint = newFootprint;
|
2018-04-18 09:31:33 +00:00
|
|
|
|
2021-12-25 17:32:04 +00:00
|
|
|
if( m_updateMode && !updated )
|
|
|
|
{
|
|
|
|
msg += _( ": (no changes)" );
|
|
|
|
m_MessageWindow->Report( msg, RPT_SEVERITY_INFO );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
msg += _( ": OK" );
|
|
|
|
m_MessageWindow->Report( msg, RPT_SEVERITY_ACTION );
|
|
|
|
}
|
|
|
|
|
2021-09-03 21:40:45 +00:00
|
|
|
return;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
void DIALOG_EXCHANGE_FOOTPRINTS::ViewAndSelectFootprint( wxCommandEvent& event )
|
2015-06-22 17:21:34 +00:00
|
|
|
{
|
2018-12-16 21:03:58 +00:00
|
|
|
wxString newname = m_newID->GetValue();
|
2015-06-22 17:21:34 +00:00
|
|
|
|
2019-09-05 22:00:47 +00:00
|
|
|
KIWAY_PLAYER* frame = Kiway().Player( FRAME_FOOTPRINT_VIEWER_MODAL, true );
|
2015-06-22 17:21:34 +00:00
|
|
|
|
|
|
|
if( frame->ShowModal( &newname, this ) )
|
|
|
|
{
|
2018-01-12 19:36:15 +00:00
|
|
|
if( event.GetEventObject() == m_newIDBrowseButton )
|
|
|
|
m_newID->SetValue( newname );
|
|
|
|
else
|
|
|
|
m_specifiedID->SetValue( newname );
|
2015-06-22 17:21:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
frame->Destroy();
|
|
|
|
}
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|