KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_plot_params.h
Go to the documentation of this file.
1#ifndef PCB_PLOT_PARAMS_H_
2#define PCB_PLOT_PARAMS_H_
3/*
4 * This program source code file is part of KiCad, a free EDA CAD application.
5 *
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <plotters/plotter.h>
23#include <layer_ids.h>
24#include <plotprint_opts.h>
25#include <lseq.h>
26
27class COLOR_SETTINGS;
29
34{
35public:
37
38 void SetSkipPlotNPTH_Pads( bool aSkip ) { m_skipNPTH_Pads = aSkip; }
39 bool GetSkipPlotNPTH_Pads() const { return m_skipNPTH_Pads; }
40
41 void Format( OUTPUTFORMATTER* aFormatter ) const;
42 void Parse( PCB_PLOT_PARAMS_PARSER* aParser );
43
52 bool IsSameAs( const PCB_PLOT_PARAMS &aPcbPlotParams ) const;
53
54 void SetColorSettings( COLOR_SETTINGS* aSettings ) { m_colors = aSettings; }
55
57
59 {
60 m_textMode = aVal;
61 }
62
63 PLOT_TEXT_MODE GetTextMode() const override
64 {
65 return m_textMode;
66 }
67
68 void SetDXFPlotMode( DXF_OUTLINE_MODE aPlotMode ) { m_DXFPlotMode = aPlotMode; }
69 DXF_OUTLINE_MODE GetDXFPlotMode() const override { return m_DXFPlotMode; }
70
71 void SetPlotPadNumbers( bool aFlag ) { m_plotPadNumbers = aFlag; }
72 bool GetPlotPadNumbers() const { return m_plotPadNumbers; }
73
74 void SetDXFPlotPolygonMode( bool aFlag ) { m_DXFPolygonMode = aFlag; }
75 bool GetDXFPlotPolygonMode() const { return m_DXFPolygonMode; }
76
77 void SetDXFPlotUnits( DXF_UNITS aUnit ) { m_DXFUnits = aUnit; }
79
82
83 void SetScale( double aVal ) { m_scale = aVal; }
84 double GetScale() const { return m_scale; }
85
86 void SetFineScaleAdjustX( double aVal ) { m_fineScaleAdjustX = aVal; }
87 double GetFineScaleAdjustX() const { return m_fineScaleAdjustX; }
88 void SetFineScaleAdjustY( double aVal ) { m_fineScaleAdjustY = aVal; }
89 double GetFineScaleAdjustY() const { return m_fineScaleAdjustY; }
90 void SetWidthAdjust( int aVal ) { m_widthAdjust = aVal; }
91 int GetWidthAdjust() const { return m_widthAdjust; }
92
93 void SetAutoScale( bool aFlag ) { m_autoScale = aFlag; }
94 bool GetAutoScale() const { return m_autoScale; }
95
96 void SetMirror( bool aFlag ) { m_mirror = aFlag; }
97 bool GetMirror() const { return m_mirror; }
98
99 void SetSketchPadsOnFabLayers( bool aFlag ) { m_sketchPadsOnFabLayers = aFlag; }
101 void SetSketchPadLineWidth( int aWidth ) { m_sketchPadLineWidth = aWidth; }
103
104 void SetHideDNPFPsOnFabLayers( bool aFlag ) { m_hideDNPFPsOnFabLayers = aFlag; }
110
111 void SetPlotValue( bool aFlag ) { m_plotValue = aFlag; }
112 bool GetPlotValue() const { return m_plotValue; }
113 void SetPlotReference( bool aFlag ) { m_plotReference = aFlag; }
114 bool GetPlotReference() const { return m_plotReference; }
115 void SetPlotFPText( bool aFlag ) { m_plotFPText = aFlag; }
116 bool GetPlotFPText() const { return m_plotFPText; }
117
118 void SetNegative( bool aFlag ) { m_negative = aFlag; }
119 bool GetNegative() const { return m_negative; }
120
121 std::optional<bool> GetLegacyPlotViaOnMaskLayer() const { return m_plotViaOnMaskLayer; }
122
123 void SetPlotFrameRef( bool aFlag ) { m_plotDrawingSheet = aFlag; }
124 bool GetPlotFrameRef() const { return m_plotDrawingSheet; }
125
126 void SetFormat( PLOT_FORMAT aFormat ) { m_format = aFormat; }
127 PLOT_FORMAT GetFormat() const { return m_format; }
128
129 void SetOutputDirectory( const wxString& aDir ) { m_outputDirectory = aDir; }
130 wxString GetOutputDirectory() const { return m_outputDirectory; }
131
132 void SetDisableGerberMacros( bool aDisable ) { m_gerberDisableApertMacros = aDisable; }
134
135 void SetUseGerberX2format( bool aUse ) { m_useGerberX2format = aUse; }
137
140
141 void SetCreateGerberJobFile( bool aCreate ) { m_createGerberJobFile = aCreate; }
143
146
147 void SetGerberPrecision( int aPrecision );
148 int GetGerberPrecision() const { return m_gerberPrecision; }
149
150 void SetSvgPrecision( unsigned aPrecision );
151 unsigned GetSvgPrecision() const { return m_svgPrecision; }
152
153 void SetSvgFitPageToBoard( int aSvgFitPageToBoard ) { m_svgFitPageToBoard = aSvgFitPageToBoard; }
155
156 void SetPngDPI( int aDPI ) { m_pngDPI = aDPI; }
157 int GetPngDPI() const { return m_pngDPI; }
158 void SetPngAntialias( bool aFlag ) { m_pngAntialias = aFlag; }
159 bool GetPngAntialias() const { return m_pngAntialias; }
160
161 void SetBlackAndWhite( bool blackAndWhite ) { m_blackAndWhite = blackAndWhite; }
162 bool GetBlackAndWhite() const { return m_blackAndWhite; }
163
164 void SetSubtractMaskFromSilk( bool aSubtract ) { m_subtractMaskFromSilk = aSubtract; }
166
167 void SetLayerSelection( const LSET& aSelection ) { m_layerSelection = aSelection; }
169
172
173 void SetUseAuxOrigin( bool aAux ) { m_useAuxOrigin = aAux; }
174 bool GetUseAuxOrigin() const { return m_useAuxOrigin; }
175
176 void SetScaleSelection( int aSelection ) { m_scaleSelection = aSelection; }
177 int GetScaleSelection() const { return m_scaleSelection; }
178
179 void SetA4Output( int aForce ) { m_A4Output = aForce; }
180 bool GetA4Output() const { return m_A4Output; }
181
182 void SetDashedLineDashRatio( double aVal ) { m_dashedLineDashRatio = aVal; }
184
185 void SetDashedLineGapRatio( double aVal ) { m_dashedLineGapRatio = aVal; }
187
190
191 void SetLayersToExport( std::vector<std::pair<PCB_LAYER_ID, wxString>> & aVal ) { m_layersToExport = aVal; }
192 std::vector<std::pair<PCB_LAYER_ID, wxString>> GetLayersToExport() const { return m_layersToExport; }
193
197 PCB_LAYER_ID GetLayer() const { return m_layer; }
198 void SetLayer( PCB_LAYER_ID aLayer ) { m_layer = aLayer; }
199
200 void SetPDFBackgroundColor( const COLOR4D& aColor ) { m_PDFBackgroundColor = aColor; }
202
203public:
209
210private:
212
216
226
229 double m_scale;
230 bool m_mirror;
231
235
236 std::optional<bool> m_plotViaOnMaskLayer;
237
240
241
245
248
252
255
258
264
270
273
274
278
282
285
289
297
301
304
306
308 std::shared_ptr<COLOR_SETTINGS> m_default_colors;
309
311
312 std::vector<std::pair<PCB_LAYER_ID, wxString>> m_layersToExport;
313
315};
316
317
318#endif // PCB_PLOT_PARAMS_H_
Color settings are a bit different than most of the settings objects in that there can be more than o...
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
Definition lseq.h:47
LSET is a set of PCB_LAYER_IDs.
Definition lset.h:37
An interface used to output 8 bit text in a convenient way.
Definition richio.h:291
The parser for PCB_PLOT_PARAMS.
Parameters and options when plotting/printing a board.
bool GetNegative() const
PLOT_FORMAT GetFormat() const
bool m_sketchPadsOnFabLayers
Plots pads outlines on fab layers.
bool GetSkipPlotNPTH_Pads() const
std::optional< bool > m_plotViaOnMaskLayer
bool GetPngAntialias() const
void SetDrillMarksType(DRILL_MARKS aVal)
bool GetUseAuxOrigin() const
LSEQ GetPlotOnAllLayersSequence() const
bool GetHideDNPFPsOnFabLayers() const
void SetSkipPlotNPTH_Pads(bool aSkip)
void SetLayerSelection(const LSET &aSelection)
int m_gerberPrecision
Precision of coordinates in Gerber: accepted 5 or 6 when units are in mm, 6 or 7 in inches (but Pcbne...
void SetOutputDirectory(const wxString &aDir)
bool GetDXFMultiLayeredExportOption() const
void SetPlotReference(bool aFlag)
std::shared_ptr< COLOR_SETTINGS > m_default_colors
Pointer to color settings to be used for plotting.
int GetWidthAdjust() const
void SetSketchPadsOnFabLayers(bool aFlag)
void SetUseGerberX2format(bool aUse)
bool m_A4Output
In polygon mode, each item to plot is converted to a polygon and all polygons are merged.
bool GetMirror() const
DXF_UNITS GetDXFPlotUnits() const
bool GetAutoScale() const
int m_scaleSelection
Scale ratio index (UI only)
void SetA4Output(int aForce)
DXF_UNITS m_DXFUnits
FILLED or SKETCH for filled objects.
PLOT_TEXT_MODE m_textMode
Holes can be not plotted, have a small mark, or be plotted in actual size.
bool GetCrossoutDNPFPsOnFabLayers() const
bool GetSketchDNPFPsOnFabLayers() const
void SetPlotOnAllLayersSequence(LSEQ aSeq)
void SetPDFBackgroundColor(const COLOR4D &aColor)
bool m_plotValue
Enable plotting of part values.
void SetDXFPlotPolygonMode(bool aFlag)
void SetAutoScale(bool aFlag)
unsigned GetSvgPrecision() const
wxString m_outputDirectory
Output directory for plot files (usually relative to the board file)
void SetPlotFrameRef(bool aFlag)
void SetSketchDNPFPsOnFabLayers(bool aFlag)
bool m_PDFMetadata
Generate PDF metadata for SUBJECT and AUTHOR.
void SetDashedLineGapRatio(double aVal)
double GetScale() const
PLOT_TEXT_MODE GetTextMode() const override
PCB_LAYER_ID GetLayer() const
Return the layer this item is on.
bool m_autoScale
Autoscale the plot to fit an A4 (landscape?) sheet.
bool m_useGerberProtelExtensions
On gerbers 'scrape' away the solder mask from silkscreen (trim silks)
bool GetCreateGerberJobFile() const
void SetPlotPadNumbers(bool aFlag)
bool GetDXFPlotPolygonMode() const
bool m_useAuxOrigin
Plot gerbers using auxiliary (drill) origin instead of absolute coordinates.
void SetSketchPadLineWidth(int aWidth)
void SetLayersToExport(std::vector< std::pair< PCB_LAYER_ID, wxString > > &aVal)
bool GetSvgFitPagetoBoard() const
double m_scale
When true set the scale to fit the board in the page.
LSET GetLayerSelection() const
bool GetPlotReference() const
wxString GetOutputDirectory() const
int GetScaleSelection() const
int m_widthAdjust
Compensation for PS printers/plotters that do not strictly obey line width settings.
bool m_PDFFrontFPPropertyPopups
Generate PDF property popup menus for footprints.
void SetScale(double aVal)
void SetDisableGerberMacros(bool aDisable)
void SetDXFMultiLayeredExportOption(bool aFlag)
double m_fineScaleAdjustX
Compensation for printer scale errors (and therefore.
friend class PCB_PLOT_PARAMS_PARSER
void SetScaleSelection(int aSelection)
std::optional< bool > GetLegacyPlotViaOnMaskLayer() const
void SetFineScaleAdjustX(double aVal)
void SetMirror(bool aFlag)
void SetBlackAndWhite(bool blackAndWhite)
PCB_LAYER_ID m_layer
void SetPlotFPText(bool aFlag)
void SetGerberPrecision(int aPrecision)
bool m_blackAndWhite
Plot in negative color (supported only by some drivers)
DXF_OUTLINE_MODE GetDXFPlotMode() const override
void SetSubtractMaskFromSilk(bool aSubtract)
int GetSketchPadLineWidth() const
PLOT_FORMAT m_format
bool GetSketchPadsOnFabLayers() const
void SetHideDNPFPsOnFabLayers(bool aFlag)
bool m_createGerberJobFile
generate the auxiliary "job file" in gerber format
bool GetSubtractMaskFromSilk() const
void SetPlotValue(bool aFlag)
void SetPngDPI(int aDPI)
int GetGerberPrecision() const
COLOR4D m_PDFBackgroundColor
Background color to use if m_PDFUseBackgroundColor is true.
bool m_plotReference
Enable plotting of part references.
double m_fineScaleAdjustY
expected to be very near 1.0).
double GetFineScaleAdjustY() const
bool m_gerberDisableApertMacros
Disable aperture macros in Gerber format (only for broken Gerber readers).
void SetUseGerberProtelExtensions(bool aUse)
void SetDashedLineDashRatio(double aVal)
void Parse(PCB_PLOT_PARAMS_PARSER *aParser)
bool m_subtractMaskFromSilk
Deprecated; only used for reading legacy files.
COLOR_SETTINGS * m_colors
bool GetPlotPadNumbers() const
bool GetA4Output() const
DRILL_MARKS GetDrillMarksType() const
bool GetUseGerberX2format() const
bool m_mirror
Global scale factor, 1.0 plots a board at actual size.
void SetDXFPlotUnits(DXF_UNITS aUnit)
void SetPngAntialias(bool aFlag)
void SetColorSettings(COLOR_SETTINGS *aSettings)
bool IsSameAs(const PCB_PLOT_PARAMS &aPcbPlotParams) const
Compare current settings to aPcbPlotParams, including not saved parameters in brd file.
void SetIncludeGerberNetlistInfo(bool aUse)
bool m_includeGerberNetlistInfo
Include netlist info (only in Gerber X2 format) (chapter ? in revision ?)
bool GetPlotValue() const
DXF_OUTLINE_MODE m_DXFPlotMode
void SetCreateGerberJobFile(bool aCreate)
unsigned m_svgPrecision
Precision of coordinates in SVG: accepted 3 - 6; 6 is the internal resolution of Pcbnew.
bool GetIncludeGerberNetlistInfo() const
bool m_PDFSingle
Generate a single PDF file for all layers.
void SetNegative(bool aFlag)
int GetPngDPI() const
double GetFineScaleAdjustX() const
bool GetBlackAndWhite() const
std::vector< std::pair< PCB_LAYER_ID, wxString > > m_layersToExport
double GetDashedLineGapRatio() const
void SetUseAuxOrigin(bool aAux)
bool m_PDFBackFPPropertyPopups
on front and/or back of board
bool GetPlotFPText() const
void SetLayer(PCB_LAYER_ID aLayer)
void SetDXFPlotMode(DXF_OUTLINE_MODE aPlotMode)
void SetTextMode(PLOT_TEXT_MODE aVal)
void SetSvgFitPageToBoard(int aSvgFitPageToBoard)
bool GetUseGerberProtelExtensions() const
double GetDashedLineDashRatio() const
void SetSvgPrecision(unsigned aPrecision)
bool GetPlotFrameRef() const
COLOR4D GetPDFBackgroundColor() const
DRILL_MARKS m_drillMarks
Plot pad numbers when sketching pads on fab layers.
bool m_useGerberX2format
Include attributes from the Gerber X2 format (chapter 5 in revision J2)
bool m_negative
Mirror the plot around the X axis.
void SetCrossoutDNPFPsOnFabLayers(bool aFlag)
void SetFormat(PLOT_FORMAT aFormat)
bool m_plotDrawingSheet
Plot in black and white only.
bool GetDisableGerberMacros() const
void SetFineScaleAdjustY(double aVal)
std::vector< std::pair< PCB_LAYER_ID, wxString > > GetLayersToExport() const
void Format(OUTPUTFORMATTER *aFormatter) const
bool m_DXFExportAsMultiLayeredFile
LSET m_layerSelection
Plot format type (chooses the driver to be used)
bool m_plotPadNumbers
Used to disable NPTH pads plotting on copper layers.
void SetWidthAdjust(int aVal)
COLOR_SETTINGS * ColorSettings() const
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
DRILL_MARKS
Plots and prints can show holes in pads and vias 3 options are available:
DXF_UNITS
Definition plotter.h:48
PLOT_TEXT_MODE
Which kind of text to output with the PSLIKE plotters.
Definition plotter.h:96
DXF_OUTLINE_MODE
Options to draw items with thickness ( segments, arcs, circles, texts...)
Definition plotter.h:77
PLOT_FORMAT
The set of supported output plot formats.
Definition plotter.h:60