/** * @file eeschema/dialogs/dialog_update_from_pcb.cpp */ /* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019 Alexander Shuklin * Copyright (C) 1992-2019 KiCad Developers, see AUTHORS.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 #include #include #include #include #include #include #include #include #include #include // Saved dialog settings DIALOG_UPDATE_FROM_PCB::DIALOG_UPDATE_FROM_PCB_SAVED_STATE DIALOG_UPDATE_FROM_PCB::s_savedDialogState{ true, false, false, false }; DIALOG_UPDATE_FROM_PCB::DIALOG_UPDATE_FROM_PCB( SCH_EDIT_FRAME* aParent ) : DIALOG_UPDATE_FROM_PCB_BASE( aParent ), m_frame( aParent ), m_editorControl( m_frame->GetToolManager()->GetTool() ) { m_messagePanel->SetLabel( _( "Changes To Be Applied" ) ); m_messagePanel->SetLazyUpdate( true ); m_messagePanel->GetSizer()->SetSizeHints( this ); m_cbUpdateReferences->SetValue( s_savedDialogState.UpdateReferences ); m_cbUpdateFootprints->SetValue( s_savedDialogState.UpdateFootprints ); m_cbUpdateValues->SetValue( s_savedDialogState.UpdateValues ); m_cbIgnoreOtherProjects->SetValue( s_savedDialogState.IgnoreOtherProjectsErrors ); // We use a sdbSizer to get platform-dependent ordering of the action buttons, but // that requires us to correct the button labels here. m_sdbSizerOK->SetLabel( _( "Update Schematic" ) ); m_sdbSizerCancel->SetLabel( _( "Close" ) ); m_sdbSizer->Layout(); m_sdbSizerOK->SetDefault(); FinishDialogSettings(); } BACK_ANNOTATE::SETTINGS DIALOG_UPDATE_FROM_PCB::getSettings( bool aDryRun ) { return BACK_ANNOTATE::SETTINGS{ m_messagePanel->Reporter(), m_cbUpdateFootprints->GetValue(), m_cbUpdateValues->GetValue(), m_cbUpdateReferences->GetValue(), m_cbIgnoreOtherProjects->GetValue(), aDryRun }; } void DIALOG_UPDATE_FROM_PCB::updateData() { bool successfulRun = false; m_messagePanel->Clear(); BACK_ANNOTATE backAnno( this->m_frame, getSettings( true ) ); std::string netlist; if( backAnno.FetchNetlistFromPCB( netlist ) ) successfulRun = backAnno.BackAnnotateSymbols( netlist ); m_sdbSizerOK->Enable( successfulRun ); m_messagePanel->Flush( false ); } bool DIALOG_UPDATE_FROM_PCB::TransferDataToWindow() { updateData(); return true; } DIALOG_UPDATE_FROM_PCB::~DIALOG_UPDATE_FROM_PCB() { } void DIALOG_UPDATE_FROM_PCB::OnOptionChanged( wxCommandEvent& event ) { updateData(); s_savedDialogState.UpdateReferences = m_cbUpdateReferences->GetValue(); s_savedDialogState.UpdateFootprints = m_cbUpdateFootprints->GetValue(); s_savedDialogState.UpdateValues = m_cbUpdateValues->GetValue(); s_savedDialogState.IgnoreOtherProjectsErrors = m_cbIgnoreOtherProjects->GetValue(); } void DIALOG_UPDATE_FROM_PCB::OnUpdateClick( wxCommandEvent& event ) { KIDIALOG dlg( this, _( "\n\nThis operation will change the existing annotation and cannot be undone." ), _( "Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING ); dlg.SetOKLabel( _( "Back annotate" ) ); dlg.DoNotShowCheckbox( __FILE__, __LINE__ ); if( dlg.ShowModal() == wxID_CANCEL ) return; std::string netlist; m_messagePanel->Clear(); BACK_ANNOTATE backAnno( this->m_frame, getSettings( false ) ); if( backAnno.FetchNetlistFromPCB( netlist ) && backAnno.BackAnnotateSymbols( netlist ) ) { m_frame->GetCurrentSheet().UpdateAllScreenReferences(); m_frame->SetSheetNumberAndCount(); m_frame->SyncView(); m_frame->OnModify(); m_frame->GetCanvas()->Refresh(); } m_messagePanel->Flush( true ); }