KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_setup_mask_and_paste.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
25#include <pcb_edit_frame.h>
29
30
32 PCB_EDIT_FRAME* aFrame ) :
33 PANEL_SETUP_MASK_AND_PASTE_BASE( aParentWindow ),
39{
40 m_Frame = aFrame;
41 m_BrdSettings = &m_Frame->GetBoard()->GetDesignSettings();
42
43 m_staticTextInfoPaste->SetFont( KIUI::GetInfoFont( this ).Italic() );
44
45 // Update label text and tooltip for combined offset + ratio field
46 m_pasteMarginLabel->SetLabel( _( "Solder paste clearance:" ) );
47 m_pasteMarginLabel->SetToolTip( _( "Solder paste clearance relative to pad size.\n"
48 "Enter an absolute value (e.g., -0.1mm), a percentage "
49 "(e.g., -5%), or both (e.g., -0.1mm - 5%).\n"
50 "This value can be superseded by local values for a "
51 "footprint or a pad." ) );
52
53 // Hide the old ratio controls - they're no longer needed
54 m_pasteMarginRatioLabel->Show( false );
55 m_pasteMarginRatioCtrl->Show( false );
56 m_pasteMarginRatioUnits->Show( false );
57}
58
59
61{
62 m_maskExpansion.SetValue( m_BrdSettings->m_SolderMaskExpansion );
63 m_maskMinWidth.SetValue( m_BrdSettings->m_SolderMaskMinWidth );
64 m_maskToCopperClearance.SetValue( m_BrdSettings->m_SolderMaskToCopperClearance );
65 m_tentViasFront->SetValue( m_BrdSettings->m_TentViasFront );
66 m_tentViasBack->SetValue( m_BrdSettings->m_TentViasBack );
67
68 m_pasteMargin.SetOffsetValue( m_BrdSettings->m_SolderPasteMargin );
69 m_pasteMargin.SetRatioValue( m_BrdSettings->m_SolderPasteMarginRatio );
70
71 m_allowBridges->SetValue( m_BrdSettings->m_AllowSoldermaskBridgesInFPs );
72
73 return true;
74}
75
76
78{
79 // These are all stored in project file, not board, so no need for OnModify()
80 m_BrdSettings->m_SolderMaskExpansion = m_maskExpansion.GetIntValue();
81 m_BrdSettings->m_SolderMaskMinWidth = m_maskMinWidth.GetIntValue();
82 m_BrdSettings->m_SolderMaskToCopperClearance = m_maskToCopperClearance.GetIntValue();
83 m_BrdSettings->m_TentViasFront = m_tentViasFront->GetValue();
84 m_BrdSettings->m_TentViasBack = m_tentViasBack->GetValue();
85
86 m_BrdSettings->m_SolderPasteMargin = m_pasteMargin.GetOffsetValue().value_or( 0 );
87 m_BrdSettings->m_SolderPasteMarginRatio = m_pasteMargin.GetRatioValue().value_or( 0.0 );
88
89 m_BrdSettings->m_AllowSoldermaskBridgesInFPs = m_allowBridges->GetValue();
90
91 return true;
92}
93
94
96{
97 BOARD_DESIGN_SETTINGS* savedSettings = m_BrdSettings;
98
101
102 m_BrdSettings = savedSettings;
103}
Container for design settings for a BOARD object.
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Definition board.cpp:1082
PANEL_SETUP_MASK_AND_PASTE_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
PANEL_SETUP_MASK_AND_PASTE(wxWindow *aParentWindow, PCB_EDIT_FRAME *aFrame)
BOARD_DESIGN_SETTINGS * m_BrdSettings
The main frame for Pcbnew.
#define _(s)
KICOMMON_API wxFont GetInfoFont(wxWindow *aWindow)