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 The 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, see <https://www.gnu.org/licenses/>.
19 */
20
21
22#ifndef __dialog_remove_unused_pads__
23#define __dialog_remove_unused_pads__
24
26
27class COMMIT;
28class PCB_BASE_FRAME;
29class PCB_SELECTION;
30
32{
33public:
35 COMMIT& aCommit );
36
37private:
38 void updateImage();
39
45 void updatePadsAndVias( bool aRemoveLayers );
46
47 void onApply( wxCommandEvent& event ) override;
48 void onOK( wxCommandEvent& event ) override;
49
50 void syncImages( wxCommandEvent& aEvent ) override;
51
53 const PCB_SELECTION& m_items; // List of items to be modified.
54 COMMIT& m_commit; // An undo record to add any changes to.
55};
56
57#endif // __dialog_remove_unused_pads__
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition commit.h:68
DIALOG_UNUSED_PAD_LAYERS_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Unused Pads"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
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
DIALOG_UNUSED_PAD_LAYERS(PCB_BASE_FRAME *aParent, const PCB_SELECTION &aItems, COMMIT &aCommit)
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.