KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_update_pcb.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <pcb_edit_frame.h>
25#include <pcbnew_settings.h>
26#include <dialog_update_pcb.h>
31#include <tool/tool_manager.h>
32#include <tools/pcb_actions.h>
34#include <view/view_controls.h>
35#include <kiface_base.h>
36#include <kiplatform/ui.h>
37
38
40 DIALOG_UPDATE_PCB_BASE( aParent ),
41 m_frame( aParent ),
42 m_netlist( aNetlist ),
43 m_initialized( false )
44{
45 m_messagePanel->SetLabel( _("Changes to Be Applied") );
46 m_messagePanel->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) );
47 m_messagePanel->SetLazyUpdate( true );
48 m_netlist->SortByReference();
49
50 m_messagePanel->GetSizer()->SetSizeHints( this );
51 m_messagePanel->Layout();
52
53 SetupStandardButtons( { { wxID_OK, _( "Update PCB" ) },
54 { wxID_CANCEL, _( "Close" ) } } );
55
57
58 m_initialized = true;
59 PerformUpdate( true );
60}
61
62
64{
66 {
67 PCB_SELECTION_TOOL* selTool = m_frame->GetToolManager()->GetTool<PCB_SELECTION_TOOL>();
68 PCB_SELECTION& selection = selTool->GetSelection();
69
70 // Set the reference point to (0,0) where the new footprints were spread. This ensures
71 // the move tool knows where the items are located, preventing an offset when the "warp
72 // cursor to origin of moved object" preference is disabled.
73 if( selection.Size() > 0 )
74 selection.SetReferencePoint( VECTOR2I( 0, 0 ) );
75
76 KIGFX::VIEW_CONTROLS* controls = m_frame->GetCanvas()->GetViewControls();
77 controls->SetCursorPosition( controls->GetMousePosition() );
78 m_frame->GetToolManager()->RunAction( PCB_ACTIONS::move );
79 }
80}
81
82
84{
85 m_messagePanel->Clear();
86
87 REPORTER& reporter = m_messagePanel->Reporter();
88
89 m_runDragCommand = false;
90
91 m_netlist->SetFindByTimeStamp( !m_cbRelinkFootprints->GetValue() );
92 m_netlist->SetReplaceFootprints( m_cbUpdateFootprints->GetValue() );
93
94 if( !aDryRun )
95 {
96 m_frame->GetToolManager()->DeactivateTool();
97 m_frame->GetToolManager()->RunAction( ACTIONS::selectionClear );
98 }
99
100 BOARD_NETLIST_UPDATER updater( m_frame, m_frame->GetBoard() );
101 updater.SetReporter ( &reporter );
102 updater.SetIsDryRun( aDryRun );
103 updater.SetLookupByTimestamp( !m_cbRelinkFootprints->GetValue() );
105 updater.SetReplaceFootprints( m_cbUpdateFootprints->GetValue() );
106 updater.SetTransferGroups( m_cbTransferGroups->GetValue() );
107 updater.SetOverrideLocks( m_cbOverrideLocks->GetValue() );
108 updater.SetUpdateFields( m_cbUpdateFields->GetValue() );
109 updater.SetRemoveExtraFields( m_cbRemoveExtraFields->GetValue() );
110 updater.UpdateNetlist( *m_netlist );
111
112 m_messagePanel->Flush( true );
113
114 if( aDryRun )
115 return;
116
117 m_frame->OnNetlistChanged( updater, &m_runDragCommand );
118}
119
120
121void DIALOG_UPDATE_PCB::OnOptionChanged( wxCommandEvent& event )
122{
123 if( m_initialized )
124 {
125 PerformUpdate( true );
126 m_sdbSizer1OK->Enable( true );
127 m_sdbSizer1OK->SetDefault();
128 }
129}
130
131
132void DIALOG_UPDATE_PCB::OnUpdateClick( wxCommandEvent& event )
133{
134 m_messagePanel->SetLabel( _( "Changes Applied to PCB" ) );
135 PerformUpdate( false );
136
137 m_sdbSizer1Cancel->SetDefault();
138 // wxWidgets has a tendency to keep both buttons highlighted without the following:
139 m_sdbSizer1OK->Enable( false );
140}
static TOOL_ACTION selectionClear
Clear the current selection.
Definition actions.h:224
Update the BOARD with a new netlist.
void SetRemoveExtraFields(bool aEnabled)
void SetReporter(REPORTER *aReporter)
Enable dry run mode (just report, no changes to PCB).
bool UpdateNetlist(NETLIST &aNetlist)
Update the board's components according to the new netlist.
void SetIsDryRun(bool aEnabled)
void SetDeleteUnusedFootprints(bool aEnabled)
void SetOverrideLocks(bool aOverride)
void SetReplaceFootprints(bool aEnabled)
void SetLookupByTimestamp(bool aEnabled)
void SetUpdateFields(bool aEnabled)
void SetTransferGroups(bool aEnabled)
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
WX_HTML_REPORT_PANEL * m_messagePanel
DIALOG_UPDATE_PCB_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Update PCB from Schematic"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
void PerformUpdate(bool aDryRun)
void OnOptionChanged(wxCommandEvent &event) override
void OnUpdateClick(wxCommandEvent &event) override
DIALOG_UPDATE_PCB(PCB_EDIT_FRAME *aParent, NETLIST *aNetlist)
PCB_EDIT_FRAME * m_frame
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual VECTOR2D GetMousePosition(bool aWorldCoordinates=true) const =0
Return the current mouse pointer position.
virtual void SetCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true, bool aTriggeredByArrows=false, long aArrowCommand=0)=0
Move cursor to the requested position expressed in world coordinates.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
static TOOL_ACTION move
move or drag an item
The main frame for Pcbnew.
The selection tool: currently supports:
PCB_SELECTION & GetSelection()
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
void SetReferencePoint(const VECTOR2I &aP)
#define _(s)
Class that computes missing connections on a PCB.
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695