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 (C) 1992-2022 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, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#include <plotters/plotter.h>
27#include <layer_ids.h>
28#include <plotprint_opts.h>
29
30class COLOR_SETTINGS;
32
37{
38public:
40
41 void SetSkipPlotNPTH_Pads( bool aSkip ) { m_skipNPTH_Pads = aSkip; }
42 bool GetSkipPlotNPTH_Pads() const { return m_skipNPTH_Pads; }
43
44 void Format( OUTPUTFORMATTER* aFormatter, int aNestLevel, int aControl=0 ) const;
45 void Parse( PCB_PLOT_PARAMS_PARSER* aParser );
46
55 bool IsSameAs( const PCB_PLOT_PARAMS &aPcbPlotParams ) const;
56
57 void SetColorSettings( COLOR_SETTINGS* aSettings ) { m_colors = aSettings; }
58
60
62 {
63 m_textMode = aVal;
64 }
65
67 {
68 return m_textMode;
69 }
70
71 void SetPlotMode( OUTLINE_MODE aPlotMode ) { m_plotMode = aPlotMode; }
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 SetPlotInvisibleText( bool aFlag ) { m_plotInvisibleText = aFlag; }
106 void SetPlotValue( bool aFlag ) { m_plotValue = aFlag; }
107 bool GetPlotValue() const { return m_plotValue; }
108 void SetPlotReference( bool aFlag ) { m_plotReference = aFlag; }
109 bool GetPlotReference() const { return m_plotReference; }
110 void SetPlotFPText( bool aFlag ) { m_plotFPText = aFlag; }
111 bool GetPlotFPText() const { return m_plotFPText; }
112
113 void SetNegative( bool aFlag ) { m_negative = aFlag; }
114 bool GetNegative() const { return m_negative; }
115
116 void SetPlotViaOnMaskLayer( bool aFlag ) { m_plotViaOnMaskLayer = aFlag; }
118
119 void SetPlotFrameRef( bool aFlag ) { m_plotDrawingSheet = aFlag; }
120 bool GetPlotFrameRef() const { return m_plotDrawingSheet; }
121
122 void SetFormat( PLOT_FORMAT aFormat ) { m_format = aFormat; }
123 PLOT_FORMAT GetFormat() const { return m_format; }
124
125 void SetOutputDirectory( const wxString& aDir ) { m_outputDirectory = aDir; }
126 wxString GetOutputDirectory() const { return m_outputDirectory; }
127
128 void SetDisableGerberMacros( bool aDisable ) { m_gerberDisableApertMacros = aDisable; }
130
131 void SetUseGerberX2format( bool aUse ) { m_useGerberX2format = aUse; }
133
136
137 void SetCreateGerberJobFile( bool aCreate ) { m_createGerberJobFile = aCreate; }
139
142
143 void SetGerberPrecision( int aPrecision );
144 int GetGerberPrecision() const { return m_gerberPrecision; }
145
146 void SetSvgPrecision( unsigned aPrecision );
147 unsigned GetSvgPrecision() const { return m_svgPrecision; }
148
149 void SetBlackAndWhite( bool blackAndWhite ) { m_blackAndWhite = blackAndWhite; }
150 unsigned GetBlackAndWhite() const { return m_blackAndWhite; }
151
152 void SetSubtractMaskFromSilk( bool aSubtract ) { m_subtractMaskFromSilk = aSubtract; }
154
155 void SetLayerSelection( LSET aSelection ) { m_layerSelection = aSelection; }
157
159 {
160 m_plotOnAllLayersSelection = aSelection;
161 }
162
164
165 void SetUseAuxOrigin( bool aAux ) { m_useAuxOrigin = aAux; }
166 bool GetUseAuxOrigin() const { return m_useAuxOrigin; }
167
168 void SetScaleSelection( int aSelection ) { m_scaleSelection = aSelection; }
169 int GetScaleSelection() const { return m_scaleSelection; }
170
171 void SetA4Output( int aForce ) { m_A4Output = aForce; }
172 bool GetA4Output() const { return m_A4Output; }
173
174 // For historical reasons, this parameter is stored in mils
175 // (but is in mm in hpgl files...)
176 double GetHPGLPenDiameter() const { return m_HPGLPenDiam; }
177 bool SetHPGLPenDiameter( double aValue );
178
179 // This parameter is always in cm, due to hpgl file format constraint
180 int GetHPGLPenSpeed() const { return m_HPGLPenSpeed; }
181 bool SetHPGLPenSpeed( int aValue );
182
183 void SetHPGLPenNum( int aVal ) { m_HPGLPenNum = aVal; }
184 int GetHPGLPenNum() const { return m_HPGLPenNum; }
185
186 void SetDashedLineDashRatio( double aVal ) { m_dashedLineDashRatio = aVal; }
188
189 void SetDashedLineGapRatio( double aVal ) { m_dashedLineGapRatio = aVal; }
191
192public:
196
197private:
199
203
209
213
216 double m_scale;
217 bool m_mirror;
218
222
223
228
229
233
236
240
243
246
252
255
258
259
263
268
271
279
283
288
291
293
295 std::shared_ptr<COLOR_SETTINGS> m_default_colors;
296};
297
298
299#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...
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:575
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
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.
int m_HPGLPenNum
HPGL only: pen number selection(1 to 9)
bool GetSkipPlotNPTH_Pads() const
double m_dashedLineGapRatio
void SetDrillMarksType(DRILL_MARKS aVal)
bool GetUseAuxOrigin() const
void SetSkipPlotNPTH_Pads(bool aSkip)
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 SetLayerSelection(LSET aSelection)
void SetOutputDirectory(const wxString &aDir)
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)
OUTLINE_MODE m_plotMode
Used to disable NPTH pads plotting on copper layers.
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)
bool GetPlotInvisibleText() const
void SetA4Output(int aForce)
DXF_UNITS m_DXFUnits
PLOT_TEXT_MODE GetTextMode() const
void SetHPGLPenNum(int aVal)
PLOT_TEXT_MODE m_textMode
Holes can be not plotted, have a small mark, or be plotted in actual size.
bool m_plotValue
Enable plotting of part values.
void SetDXFPlotPolygonMode(bool aFlag)
void SetAutoScale(bool aFlag)
double GetHPGLPenDiameter() const
unsigned GetSvgPrecision() const
wxString m_outputDirectory
Output directory for plot files (usually relative to the board file)
void SetPlotFrameRef(bool aFlag)
bool m_PDFMetadata
Generate PDF metadata for SUBJECT and AUTHOR.
void SetDashedLineGapRatio(double aVal)
unsigned GetBlackAndWhite() const
double GetScale() const
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)
int m_HPGLPenSpeed
HPGL only: pen speed, always in cm/s (1 to 99 cm/s)
bool GetCreateGerberJobFile() const
bool GetDXFPlotPolygonMode() const
bool m_useAuxOrigin
Plot gerbers using auxiliary (drill) origin instead of absolute coordinates.
void SetSketchPadLineWidth(int aWidth)
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
void SetPlotOnAllLayersSelection(LSET aSelection)
int m_widthAdjust
Compensation for PS printers/plotters that do not strictly obey line width settings.
LSET GetPlotOnAllLayersSelection() const
bool SetHPGLPenDiameter(double aValue)
bool m_PDFFrontFPPropertyPopups
Generate PDF property popup menus for footprints.
void SetScale(double aVal)
void SetDisableGerberMacros(bool aDisable)
double m_fineScaleAdjustX
Compensation for printer scale errors (and therefore.
LSET m_plotOnAllLayersSelection
void SetScaleSelection(int aSelection)
double m_dashedLineDashRatio
void SetFineScaleAdjustX(double aVal)
void Format(OUTPUTFORMATTER *aFormatter, int aNestLevel, int aControl=0) const
void SetMirror(bool aFlag)
void SetBlackAndWhite(bool blackAndWhite)
void SetPlotViaOnMaskLayer(bool aFlag)
void SetPlotFPText(bool aFlag)
void SetGerberPrecision(int aPrecision)
bool m_blackAndWhite
Plot in negative color (supported only by some drivers)
void SetSubtractMaskFromSilk(bool aSubtract)
bool SetHPGLPenSpeed(int aValue)
bool m_plotInvisibleText
Force plotting of fields marked invisible.
int GetSketchPadLineWidth() const
PLOT_FORMAT m_format
bool GetSketchPadsOnFabLayers() const
bool m_createGerberJobFile
generate the auxiliary "job file" in gerber format
bool GetSubtractMaskFromSilk() const
void SetPlotValue(bool aFlag)
int GetGerberPrecision() const
bool m_plotReference
Enable plotting of part references.
double m_fineScaleAdjustY
expected to be very near 1.0).
double m_HPGLPenDiam
HPGL only: pen diameter in MILS, useful to fill areas However, it is in mm in hpgl files.
int GetHPGLPenSpeed() const
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
True if vias are drawn on Mask layer (ie untented, exposed by mask)
COLOR_SETTINGS * m_colors
bool GetA4Output() const
int GetHPGLPenNum() 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 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
void SetPlotInvisibleText(bool aFlag)
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
void SetNegative(bool aFlag)
double GetFineScaleAdjustX() const
void SetPlotMode(OUTLINE_MODE aPlotMode)
double GetDashedLineGapRatio() const
void SetUseAuxOrigin(bool aAux)
bool m_PDFBackFPPropertyPopups
on front and/or back of board
bool GetPlotFPText() const
void SetTextMode(PLOT_TEXT_MODE aVal)
bool GetUseGerberProtelExtensions() const
double GetDashedLineDashRatio() const
void SetSvgPrecision(unsigned aPrecision)
bool GetPlotFrameRef() const
DRILL_MARKS m_drillMarks
FILLED or SKETCH for filled objects.
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 SetFormat(PLOT_FORMAT aFormat)
bool GetPlotViaOnMaskLayer() const
bool m_plotDrawingSheet
Plot in black and white only.
bool GetDisableGerberMacros() const
void SetFineScaleAdjustY(double aVal)
OUTLINE_MODE GetPlotMode() const
LSET m_layerSelection
Plot format type (chooses the driver to be used)
void SetWidthAdjust(int aVal)
COLOR_SETTINGS * ColorSettings() const
OUTLINE_MODE
Definition: outline_mode.h:25
DRILL_MARKS
Plots and prints can show holes in pads and vias 3 options are available:
DXF_UNITS
Definition: plotter.h:52
PLOT_TEXT_MODE
Which kind of text to output with the PSLIKE plotters.
Definition: plotter.h:90
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:64