KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_export_2581_bom.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * 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, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef IPC2581_EXPORT_BOM_DIALOG_H
21#define IPC2581_EXPORT_BOM_DIALOG_H
22
23#include <vector>
24
26
27class BOARD;
28
31{
32 wxString m_revision;
33 wxString m_internalId;
34 wxString m_mfgPn;
35 wxString m_mfg;
36 wxString m_distPn;
37 wxString m_dist;
38};
39
41{
42public:
43 DIALOG_EXPORT_2581_BOM( wxWindow* aParent, BOARD* aBoard, const IPC2581_BOM_FIELDS& aFields );
44
45 const IPC2581_BOM_FIELDS& GetFields() const { return m_fields; }
46
47private:
48 void onMfgPNChange( wxCommandEvent& event ) override;
49 void onDistPNChange( wxCommandEvent& event ) override;
50
51 bool TransferDataToWindow() override;
52 bool TransferDataFromWindow() override;
53
54 wxString choiceValue( const wxChoice* aChoice ) const;
55
57};
58
59#endif // IPC2581_EXPORT_BOM_DIALOG_H
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:409
DIALOG_EXPORT_2581_BOM_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("BOM Fields"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
const IPC2581_BOM_FIELDS & GetFields() const
void onDistPNChange(wxCommandEvent &event) override
void onMfgPNChange(wxCommandEvent &event) override
DIALOG_EXPORT_2581_BOM(wxWindow *aParent, BOARD *aBoard, const IPC2581_BOM_FIELDS &aFields)
wxString choiceValue(const wxChoice *aChoice) const
Fields that supply the IPC-2581 BOM section.