KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_unused_pad_layers.h
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 (C) 2020 CERN
5 * Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-3.0.html
20 * or you may search the http://www.gnu.org website for the version 3 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25
26#ifndef __dialog_remove_unused_pads__
27#define __dialog_remove_unused_pads__
28
30
31class COMMIT;
32class PCB_BASE_FRAME;
33class PCB_SELECTION;
34
36{
37public:
39 COMMIT& aCommit );
40
41private:
42 void updateImage();
43
49 void updatePadsAndVias( bool aRemoveLayers );
50
51 void onApply( wxCommandEvent& event ) override;
52 void onOK( wxCommandEvent& event ) override;
53
54 void syncImages( wxCommandEvent& aEvent ) override;
55
57 const PCB_SELECTION& m_items; // List of items to be modified.
58 COMMIT& m_commit; // An undo record to add any changes to.
59};
60
61#endif // __dialog_remove_unused_pads__
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition: commit.h:74
Class DIALOG_UNUSED_PAD_LAYERS_BASE.
void onApply(wxCommandEvent &event) override
void onOK(wxCommandEvent &event) override
void updatePadsAndVias(bool aRemoveLayers)
Update layers of pads and vias aRemoveLayers = true to remove not connected layers false to set all l...
void syncImages(wxCommandEvent &aEvent) override
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.