mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
Make sure the view is rebuilt before selecting the new footprints so that they're shown only in the selection overlay. Don't start the drag until the dialog is closed so we don't have a bunch of extraneous mouse warping. Fixes: lp:1775265 * https://bugs.launchpad.net/kicad/+bug/1775265
194 lines
6.5 KiB
C++
194 lines
6.5 KiB
C++
/**
|
|
* @file pcbnew/dialogs/dialog_update_pcb.cpp
|
|
*/
|
|
|
|
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 1992-2016 KiCad Developers, see change_log.txt for contributors.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <pcb_edit_frame.h>
|
|
#include <pcb_netlist.h>
|
|
#include <dialog_update_pcb.h>
|
|
#include <wx_html_report_panel.h>
|
|
#include <board_netlist_updater.h>
|
|
#include <tool/tool_manager.h>
|
|
#include <tools/pcb_actions.h>
|
|
#include <class_draw_panel_gal.h>
|
|
#include <class_drawpanel.h>
|
|
#include <class_board.h>
|
|
#include <ratsnest_data.h>
|
|
#include <view/view.h>
|
|
|
|
#include <functional>
|
|
#include <kiface_i.h>
|
|
|
|
using namespace std::placeholders;
|
|
|
|
#define NETLIST_FILTER_MESSAGES_KEY wxT("NetlistReportFilterMsg")
|
|
#define NETLIST_UPDATEFOOTPRINTS_KEY wxT("NetlistUpdateFootprints")
|
|
#define NETLIST_DELETESHORTINGTRACKS_KEY wxT("NetlistDeleteShortingTracks")
|
|
#define NETLIST_DELETEEXTRAFOOTPRINTS_KEY wxT("NetlistDeleteExtraFootprints")
|
|
#define NETLIST_DELETESINGLEPADNETS_KEY wxT("NetlistDeleteSinglePadNets")
|
|
|
|
|
|
DIALOG_UPDATE_PCB::DIALOG_UPDATE_PCB( PCB_EDIT_FRAME* aParent, NETLIST* aNetlist ) :
|
|
DIALOG_UPDATE_PCB_BASE( aParent ),
|
|
m_frame( aParent ),
|
|
m_netlist( aNetlist ),
|
|
m_initialized( false )
|
|
{
|
|
m_config = Kiface().KifaceSettings();
|
|
|
|
m_cbUpdateFootprints->SetValue( m_config->Read( NETLIST_UPDATEFOOTPRINTS_KEY, 0l ) );
|
|
m_cbDeleteExtraFootprints->SetValue( m_config->Read( NETLIST_DELETEEXTRAFOOTPRINTS_KEY, 0l ) );
|
|
m_cbDeleteSinglePadNets->SetValue( m_config->Read( NETLIST_DELETESINGLEPADNETS_KEY, 0l ) );
|
|
|
|
m_messagePanel->SetLabel( _("Changes To Be Applied") );
|
|
m_messagePanel->SetLazyUpdate( true );
|
|
m_netlist->SortByReference();
|
|
|
|
m_messagePanel->SetVisibleSeverities( m_config->Read( NETLIST_FILTER_MESSAGES_KEY, -1l ) );
|
|
|
|
m_messagePanel->GetSizer()->SetSizeHints( this );
|
|
|
|
// We use a sdbSizer to get platform-dependent ordering of the action buttons, but
|
|
// that requires us to correct the button labels here.
|
|
m_sdbSizer1OK->SetLabel( _( "Update PCB" ) );
|
|
m_sdbSizer1Cancel->SetLabel( _( "Close" ) );
|
|
m_sdbSizer1->Layout();
|
|
|
|
m_sdbSizer1OK->SetDefault();
|
|
FinishDialogSettings();
|
|
|
|
m_initialized = true;
|
|
PerformUpdate( true );
|
|
}
|
|
|
|
|
|
DIALOG_UPDATE_PCB::~DIALOG_UPDATE_PCB()
|
|
{
|
|
m_config->Write( NETLIST_UPDATEFOOTPRINTS_KEY, m_cbUpdateFootprints->GetValue() );
|
|
m_config->Write( NETLIST_DELETEEXTRAFOOTPRINTS_KEY, m_cbDeleteExtraFootprints->GetValue() );
|
|
m_config->Write( NETLIST_DELETESINGLEPADNETS_KEY, m_cbDeleteSinglePadNets->GetValue() );
|
|
m_config->Write( NETLIST_FILTER_MESSAGES_KEY, (long) m_messagePanel->GetVisibleSeverities() );
|
|
|
|
if( m_runDragCommand )
|
|
m_frame->GetToolManager()->InvokeTool( "pcbnew.InteractiveEdit" );
|
|
}
|
|
|
|
|
|
void DIALOG_UPDATE_PCB::PerformUpdate( bool aDryRun )
|
|
{
|
|
m_messagePanel->Clear();
|
|
|
|
REPORTER& reporter = m_messagePanel->Reporter();
|
|
TOOL_MANAGER* toolManager = m_frame->GetToolManager();
|
|
BOARD* board = m_frame->GetBoard();
|
|
|
|
// keep trace of the initial baord area, if we want to place new footprints
|
|
// outside the existinag board
|
|
EDA_RECT bbox = board->GetBoundingBox();
|
|
|
|
toolManager->RunAction( PCB_ACTIONS::selectionClear, true );
|
|
m_runDragCommand = false;
|
|
|
|
m_netlist->SetDeleteExtraFootprints( m_cbDeleteExtraFootprints->GetValue() );
|
|
m_netlist->SetFindByTimeStamp( m_matchByTimestamp->GetSelection() == 0 );
|
|
m_netlist->SetReplaceFootprints( m_cbUpdateFootprints->GetValue() );
|
|
|
|
BOARD_NETLIST_UPDATER updater( m_frame, m_frame->GetBoard() );
|
|
updater.SetReporter ( &reporter );
|
|
updater.SetIsDryRun( aDryRun );
|
|
updater.SetLookupByTimestamp( m_matchByTimestamp->GetSelection() == 0 );
|
|
updater.SetDeleteUnusedComponents ( m_cbDeleteExtraFootprints->GetValue() );
|
|
updater.SetReplaceFootprints( m_cbUpdateFootprints->GetValue() );
|
|
updater.SetDeleteSinglePadNets( m_cbDeleteSinglePadNets->GetValue() );
|
|
updater.UpdateNetlist( *m_netlist );
|
|
|
|
m_messagePanel->Flush( true );
|
|
|
|
if( aDryRun )
|
|
return;
|
|
|
|
m_frame->SetCurItem( nullptr );
|
|
m_frame->SetMsgPanel( board );
|
|
|
|
// Update rendered tracks and vias net labels
|
|
auto view = m_frame->GetGalCanvas()->GetView();
|
|
|
|
// TODO is there a way to extract information about which nets were modified?
|
|
for( auto track : board->Tracks() )
|
|
view->Update( track );
|
|
|
|
std::vector<MODULE*> newFootprints = updater.GetAddedComponents();
|
|
|
|
// Spread new footprints.
|
|
wxPoint areaPosition = m_frame->GetCrossHairPosition();
|
|
|
|
if( !m_frame->IsGalCanvasActive() )
|
|
{
|
|
// In legacy mode place area to the left side of the board.
|
|
// if the board is empty, the bbox position is (0,0)
|
|
areaPosition.x = bbox.GetEnd().x + Millimeter2iu( 10 );
|
|
areaPosition.y = bbox.GetOrigin().y;
|
|
}
|
|
|
|
m_frame->SpreadFootprints( &newFootprints, false, false, areaPosition, false );
|
|
|
|
if( m_frame->IsGalCanvasActive() )
|
|
{
|
|
// Start drag command for new modules
|
|
if( !newFootprints.empty() )
|
|
{
|
|
for( MODULE* footprint : newFootprints )
|
|
toolManager->RunAction( PCB_ACTIONS::selectItem, true, footprint );
|
|
|
|
m_runDragCommand = true;
|
|
}
|
|
}
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
}
|
|
|
|
|
|
void DIALOG_UPDATE_PCB::OnMatchChanged( wxCommandEvent& event )
|
|
{
|
|
if( m_initialized )
|
|
PerformUpdate( true );
|
|
}
|
|
|
|
|
|
void DIALOG_UPDATE_PCB::OnOptionChanged( wxCommandEvent& event )
|
|
{
|
|
if( m_initialized )
|
|
PerformUpdate( true );
|
|
}
|
|
|
|
|
|
void DIALOG_UPDATE_PCB::OnUpdateClick( wxCommandEvent& event )
|
|
{
|
|
m_messagePanel->SetLabel( _( "Changes Applied To PCB" ) );
|
|
PerformUpdate( false );
|
|
m_sdbSizer1Cancel->SetDefault();
|
|
}
|