KiCad PCB EDA Suite
panel_board_finish.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 (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2019-2021 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 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 <pcb_edit_frame.h>
29#include "panel_board_finish.h"
30
31#include <wx/treebook.h>
32
33
35 PANEL_SETUP_BOARD_FINISH_BASE( aParent->GetTreebook() )
36{
37 m_parentDialog = aParent;
38 m_frame = aFrame;
41
42 // Get the translated list of choices and init m_choiceFinish
43 wxArrayString finish_list = GetStandardCopperFinishes( true );
44 m_choiceFinish->Append( finish_list );
45 m_choiceFinish->SetSelection( 0 ); // Will be correctly set later
46
48}
49
50
52{
53}
54
55
57{
58 const BOARD_STACKUP& brd_stackup = m_brdSettings->GetStackupDescriptor();
59
60 m_choiceEdgeConn->SetSelection( brd_stackup.m_EdgeConnectorConstraints );
61 m_cbCastellatedPads->SetValue( brd_stackup.m_CastellatedPads );
62 m_cbEgdesPlated->SetValue( brd_stackup.m_EdgePlating );
63
64 // find the choice depending on the initial finish setting
65 wxArrayString initial_finish_list = GetStandardCopperFinishes( false );
66 unsigned idx;
67
68 for( idx = 0; idx < initial_finish_list.GetCount(); idx++ )
69 {
70 if( initial_finish_list[idx] == brd_stackup.m_FinishType )
71 break;
72 }
73
74 // Now init the choice (use last choice: "User defined" if not found )
75 if( idx >= initial_finish_list.GetCount() )
76 idx = initial_finish_list.GetCount()-1;
77
78 m_choiceFinish->SetSelection( idx );
79}
80
81
83{
85
86 wxArrayString finish_list = GetStandardCopperFinishes( false );
87 int finish = m_choiceFinish->GetSelection() >= 0 ? m_choiceFinish->GetSelection() : 0;
88 bool modified = brd_stackup.m_FinishType == finish_list[finish];
89 brd_stackup.m_FinishType = finish_list[finish];
90
91 int edge = m_choiceEdgeConn->GetSelection();
92 modified |= brd_stackup.m_EdgeConnectorConstraints == (BS_EDGE_CONNECTOR_CONSTRAINTS) edge;
94
95 brd_stackup.m_CastellatedPads = m_cbCastellatedPads->GetValue();
96 modified |= brd_stackup.m_EdgePlating == m_cbEgdesPlated->GetValue();
97 brd_stackup.m_EdgePlating = m_cbEgdesPlated->GetValue();
98
99 if( modified )
100 m_frame->OnModify();
101
102 return true;
103}
104
105
107{
108 BOARD* savedBrd = m_board;
109 BOARD_DESIGN_SETTINGS* savedSettings = m_brdSettings;
110 m_brdSettings = &aBoard->GetDesignSettings();
111
113
114 m_brdSettings = savedSettings;
115 m_board = savedBrd;
116}
BS_EDGE_CONNECTOR_CONSTRAINTS
Definition: board_stackup.h:54
Container for design settings for a BOARD object.
BOARD_STACKUP & GetStackupDescriptor()
Manage layers needed to make a physical board.
bool m_CastellatedPads
True if castellated pads exist.
bool m_EdgePlating
True if the edge board is plated.
BS_EDGE_CONNECTOR_CONSTRAINTS m_EdgeConnectorConstraints
If the board has edge connector cards, some constrains can be specified in job file: BS_EDGE_CONNECTO...
wxString m_FinishType
The name of external copper finish.
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:269
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Definition: board.cpp:704
Class PANEL_SETUP_BOARD_FINISH_BASE.
bool TransferDataFromWindow() override
BOARD_DESIGN_SETTINGS * m_brdSettings
void ImportSettingsFrom(BOARD *aBoard)
PANEL_SETUP_BOARD_FINISH(PAGED_DIALOG *aParent, PCB_EDIT_FRAME *aFrame)
BOARD * GetBoard() const
The main frame for Pcbnew.
void OnModify() override
Must be called after a board change to set the modified flag.
wxArrayString GetStandardCopperFinishes(bool aTranslate)