KiCad PCB EDA Suite
Loading...
Searching...
No Matches
place_file_exporter.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
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#ifndef EXPORT_FOOTPRINTS_PLACEFILE_H
25#define EXPORT_FOOTPRINTS_PLACEFILE_H
26
27
28#include <board.h>
29
48
49
51{
52public:
53
68 PLACE_FILE_EXPORTER( BOARD* aBoard, bool aUnitsMM, bool aOnlySMD, bool aExcludeAllTH,
69 bool aExcludeDNP, bool aExcludeBOM, bool aTopSide, bool aBottomSide,
70 bool aFormatCSV, bool aUseAuxOrigin, bool aNegateBottomX );
71
75 std::string GenPositionData();
76
83 std::string GenReportData();
84
88 int GetFootprintCount() { return m_fpCount; }
89
94 void SetVariant( const wxString& aVariant ) { m_variant = aVariant; }
95
96 // Use standard board side name. do not translate them,
97 // they are keywords in place file
98 static std::string GetFrontSideName() { return std::string( "top" ); }
99 static std::string GetBackSideName() { return std::string( "bottom" ); }
100
101 static wxString DecorateFilename( const wxString& aBaseName, bool aFront, bool aBack );
102
103private:
105 bool m_unitsMM; // true for mm, false for inches
106 bool m_onlySMD; // Include only SMD components
107 bool m_excludeDNP; // Exclude DNP components
108 bool m_excludeBOM; // Exclude components flagged exclude from BOM
109 bool m_excludeAllTH; // Exclude any footprints with through-hole pads
110 int m_side; // PCB_BACK_SIDE, PCB_FRONT_SIDE, PCB_BOTH_SIDES
111 bool m_formatCSV; // true for csv format, false for ascii (utf8) format
112 bool m_negateBottomX; // true to negate X coordinate on bottom side
113 int m_fpCount; // Number of footprints in list, for info
114 VECTOR2I m_place_Offset; // Offset for coordinates in generated data.
115 wxString m_variant; // Variant name for variant-aware DNP filtering
116};
117
118#endif // #ifndef EXPORT_FOOTPRINTS_PLACEFILE_H
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
PLACE_FILE_EXPORTER(BOARD *aBoard, bool aUnitsMM, bool aOnlySMD, bool aExcludeAllTH, bool aExcludeDNP, bool aExcludeBOM, bool aTopSide, bool aBottomSide, bool aFormatCSV, bool aUseAuxOrigin, bool aNegateBottomX)
Create a PLACE_FILE_EXPORTER.
static std::string GetFrontSideName()
static wxString DecorateFilename(const wxString &aBaseName, bool aFront, bool aBack)
std::string GenPositionData()
build a string filled with the position data
void SetVariant(const wxString &aVariant)
Set the variant name for variant-aware DNP filtering.
static std::string GetBackSideName()
std::string GenReportData()
build a string filled with the pad report data This report does not used options aForceSmdItems,...
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695