KiCad PCB EDA Suite
dialog_track_via_properties.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) 2015 CERN
5 * @author Maciej Suminski <[email protected]>
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 2
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-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 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
26#include <widgets/unit_binder.h>
27#include <optional>
28#include <layer_ids.h>
29
30class PCB_SELECTION;
31class COMMIT;
32class PCB_BASE_FRAME;
33class PAD;
34
36{
37public:
39 COMMIT& aCommit );
40
42
43 bool TransferDataFromWindow() override;
44
45private:
46 void onNetSelector( wxCommandEvent& aEvent );
47 void onViaNotFreeClicked( wxCommandEvent& aEvent ) override;
48 void onTrackNetclassCheck( wxCommandEvent& aEvent ) override;
49 void onWidthSelect( wxCommandEvent& aEvent ) override;
50 void onWidthEdit( wxCommandEvent& aEvent ) override;
51 void onViaNetclassCheck( wxCommandEvent& aEvent ) override;
52 void onViaSelect( wxCommandEvent& aEvent ) override;
53 void onViaEdit( wxCommandEvent& aEvent ) override;
54
55 void onUnitsChanged( wxCommandEvent& aEvent );
56
57 bool confirmPadChange( const std::vector<PAD*>& connectedPads );
58
59 int getLayerDepth();
60
61private:
63 const PCB_SELECTION& m_items; // List of items to be modified.
64 COMMIT& m_commit; // An undo record to add any changes to.
65
69
72
73 bool m_tracks; // True if dialog displays any track properties.
74 bool m_vias; // True if dialog displays any via properties.
75};
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition: commit.h:72
Class DIALOG_TRACK_VIA_PROPERTIES_BASE.
void onWidthEdit(wxCommandEvent &aEvent) override
void onUnitsChanged(wxCommandEvent &aEvent)
void onNetSelector(wxCommandEvent &aEvent)
void onWidthSelect(wxCommandEvent &aEvent) override
DIALOG_TRACK_VIA_PROPERTIES(PCB_BASE_FRAME *aParent, const PCB_SELECTION &aItems, COMMIT &aCommit)
void onViaEdit(wxCommandEvent &aEvent) override
bool confirmPadChange(const std::vector< PAD * > &connectedPads)
void onViaSelect(wxCommandEvent &aEvent) override
void onViaNotFreeClicked(wxCommandEvent &aEvent) override
void onTrackNetclassCheck(wxCommandEvent &aEvent) override
void onViaNetclassCheck(wxCommandEvent &aEvent) override
Definition: pad.h:60
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.