KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_plot_params.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) 1992-2022 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
25#include <charconv>
26#include <layer_ids.h>
27#include <string_utils.h>
28#include <math/util.h> // for KiROUND
29#include <pcb_plot_params.h>
31#include <plotters/plotter.h>
34
35
36#define PLOT_LINEWIDTH_DEFAULT ( DEFAULT_TEXT_WIDTH * IU_PER_MM )
37
38#define HPGL_PEN_DIAMETER_MIN 0
39#define HPGL_PEN_DIAMETER_MAX 100.0 // Unit = mil
40#define HPGL_PEN_SPEED_MIN 1 // this param is always in cm/s
41#define HPGL_PEN_SPEED_MAX 99 // this param is always in cm/s
42#define HPGL_PEN_NUMBER_MIN 1
43#define HPGL_PEN_NUMBER_MAX 16
44
45#define SVG_PRECISION_MIN 3U
46#define SVG_PRECISION_MAX 6U
47#define SVG_PRECISION_DEFAULT 4
48
49
50// default trailing digits in Gerber coordinates, when units are mm
51// This is also the max usable precision (i.e. internal Pcbnew Units)
52static const int gbrDefaultPrecision = 6;
53
54
55using namespace PCBPLOTPARAMS_T;
56
57
58static const char* getTokenName( T aTok )
59{
60 return PCB_PLOT_PARAMS_LEXER::TokenName( aTok );
61}
62
63
64static bool setInt( int* aTarget, int aValue, int aMin, int aMax )
65{
66 int temp = aValue;
67
68 if( aValue < aMin )
69 temp = aMin;
70 else if( aValue > aMax )
71 temp = aMax;
72
73 *aTarget = temp;
74 return ( temp == aValue );
75}
76
77
78static bool setDouble( double* aTarget, double aValue, double aMin, double aMax )
79{
80 double temp = aValue;
81
82 if( aValue < aMin )
83 temp = aMin;
84 else if( aValue > aMax )
85 temp = aMax;
86
87 *aTarget = temp;
88 return ( temp == aValue );
89}
90
91
93{
100 m_dashedLineDashRatio = 12.0; // From ISO 128-2
101 m_dashedLineGapRatio = 3.0; // From ISO 128-2
102
103 // we used 0.1mils for SVG step before, but nm precision is more accurate, so we use nm
105 m_plotDrawingSheet = false;
106 m_plotViaOnMaskLayer = false;
108 m_DXFPolygonMode = true;
109 m_DXFUnits = DXF_UNITS::INCHES;
110 m_useAuxOrigin = false;
111 m_HPGLPenNum = 1;
112 m_HPGLPenSpeed = 20; // this param is always in cm/s
113 m_HPGLPenDiam = 15; // in mils
114 m_negative = false;
115 m_A4Output = false;
116 m_plotReference = true;
117 m_plotValue = true;
118 m_plotFPText = true;
119 m_plotInvisibleText = false;
122 m_format = PLOT_FORMAT::GERBER;
123 m_mirror = false;
124 m_drillMarks = DRILL_MARKS::SMALL_DRILL_SHAPE;
125 m_autoScale = false;
126 m_scale = 1.0;
128 m_fineScaleAdjustX = 1.0;
129 m_fineScaleAdjustY = 1.0;
130 m_widthAdjust = 0.;
131 m_textMode = PLOT_TEXT_MODE::DEFAULT;
132 m_outputDirectory.clear();
135 | LSET::AllCuMask();
136
139 m_PDFMetadata = true;
140
141 // This parameter controls if the NPTH pads will be plotted or not
142 // it is a "local" parameter
143 m_skipNPTH_Pads = false;
144
145 // line width to plot items in outline mode.
147
148 m_default_colors = std::make_shared<COLOR_SETTINGS>();
150
151 m_blackAndWhite = true;
152}
153
154
156{
157 // Currently Gerber files use mm.
158 // accepted precision is only 6 (max value, this is the resolution of Pcbnew)
159 // or 5, min value for professional boards, when 6 creates problems
160 // to board makers.
161
164}
165
166
167void PCB_PLOT_PARAMS::SetSvgPrecision( unsigned aPrecision )
168{
170}
171
172
174 int aNestLevel, int aControl ) const
175{
176 aFormatter->Print( aNestLevel, "(pcbplotparams\n" );
177
178 aFormatter->Print( aNestLevel+1, "(layerselection 0x%s)\n",
179 m_layerSelection.FmtHex().c_str() );
180
181 aFormatter->Print( aNestLevel+1, "(plot_on_all_layers_selection 0x%s)\n",
183
184 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "disableapertmacros",
186
187 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberextensions",
189
190 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberattributes",
192
193 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "usegerberadvancedattributes",
195
196 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "creategerberjobfile",
198
199 // save this option only if it is not the default value,
200 // to avoid incompatibility with older Pcbnew version
202 aFormatter->Print( aNestLevel+1, "(gerberprecision %d)\n", m_gerberPrecision );
203
204 aFormatter->Print( aNestLevel+1, "(dashed_line_dash_ratio %f)\n", GetDashedLineDashRatio() );
205 aFormatter->Print( aNestLevel+1, "(dashed_line_gap_ratio %f)\n", GetDashedLineGapRatio() );
206
207 // SVG options
208 aFormatter->Print( aNestLevel+1, "(svgprecision %d)\n", m_svgPrecision );
209
210 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotframeref", m_plotDrawingSheet );
211 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "viasonmask", m_plotViaOnMaskLayer );
212 aFormatter->Print( aNestLevel+1, "(mode %d)\n", GetPlotMode() == SKETCH ? 2 : 1 );
213 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "useauxorigin", m_useAuxOrigin );
214
215 // HPGL options
216 aFormatter->Print( aNestLevel+1, "(hpglpennumber %d)\n", m_HPGLPenNum );
217 aFormatter->Print( aNestLevel+1, "(hpglpenspeed %d)\n", m_HPGLPenSpeed );
218 aFormatter->Print( aNestLevel+1, "(hpglpendiameter %f)\n", m_HPGLPenDiam );
219
220 // PDF options
221 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
222 getTokenName( T_pdf_front_fp_property_popups ),
224 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
225 getTokenName( T_pdf_back_fp_property_popups ),
227 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1,
228 getTokenName( T_pdf_metadata ),
230
231 // DXF options
232 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfpolygonmode ),
234 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfimperialunits ),
235 m_DXFUnits == DXF_UNITS::INCHES );
236 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_dxfusepcbnewfont ),
237 m_textMode != PLOT_TEXT_MODE::NATIVE );
238
239 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_psnegative ),
240 m_negative );
241 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, getTokenName( T_psa4output ),
242 m_A4Output );
243
244 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotreference", m_plotReference );
245 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotvalue", m_plotValue );
246 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotfptext", m_plotFPText );
247 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "plotinvisibletext",
249 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "sketchpadsonfab",
251 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "subtractmaskfromsilk",
253 aFormatter->Print( aNestLevel+1, "(outputformat %d)\n", static_cast<int>( m_format ) );
254 KICAD_FORMAT::FormatBool( aFormatter, aNestLevel + 1, "mirror", m_mirror );
255 aFormatter->Print( aNestLevel+1, "(drillshape %d)\n", (int)m_drillMarks );
256 aFormatter->Print( aNestLevel+1, "(scaleselection %d)\n", m_scaleSelection );
257 aFormatter->Print( aNestLevel+1, "(outputdirectory \"%s\")",
258 (const char*) m_outputDirectory.utf8_str() );
259 aFormatter->Print( 0, "\n" );
260 aFormatter->Print( aNestLevel, ")\n" );
261}
262
263
265{
266 aParser->Parse( this );
267}
268
269
270bool PCB_PLOT_PARAMS::IsSameAs( const PCB_PLOT_PARAMS &aPcbPlotParams ) const
271{
272 if( m_layerSelection != aPcbPlotParams.m_layerSelection )
273 return false;
274
276 return false;
277
279 return false;
280
282 return false;
283
284 if( m_useGerberX2format != aPcbPlotParams.m_useGerberX2format )
285 return false;
286
288 return false;
289
290 if( m_createGerberJobFile != aPcbPlotParams.m_createGerberJobFile )
291 return false;
292
293 if( m_gerberPrecision != aPcbPlotParams.m_gerberPrecision )
294 return false;
295
296 if( m_dashedLineDashRatio != aPcbPlotParams.m_dashedLineDashRatio )
297 return false;
298
299 if( m_dashedLineGapRatio != aPcbPlotParams.m_dashedLineGapRatio )
300 return false;
301
302 if( m_plotDrawingSheet != aPcbPlotParams.m_plotDrawingSheet )
303 return false;
304
305 if( m_plotViaOnMaskLayer != aPcbPlotParams.m_plotViaOnMaskLayer )
306 return false;
307
308 if( m_plotMode != aPcbPlotParams.m_plotMode )
309 return false;
310
311 if( m_DXFPolygonMode != aPcbPlotParams.m_DXFPolygonMode )
312 return false;
313
314 if( m_DXFUnits != aPcbPlotParams.m_DXFUnits )
315 return false;
316
317 if( m_svgPrecision != aPcbPlotParams.m_svgPrecision )
318 return false;
319
320 if( m_useAuxOrigin != aPcbPlotParams.m_useAuxOrigin )
321 return false;
322
323 if( m_HPGLPenNum != aPcbPlotParams.m_HPGLPenNum )
324 return false;
325
326 if( m_HPGLPenSpeed != aPcbPlotParams.m_HPGLPenSpeed )
327 return false;
328
329 if( m_HPGLPenDiam != aPcbPlotParams.m_HPGLPenDiam )
330 return false;
331
332 if( m_negative != aPcbPlotParams.m_negative )
333 return false;
334
336 return false;
337
339 return false;
340
341 if( m_PDFMetadata != aPcbPlotParams.m_PDFMetadata )
342 return false;
343
344 if( m_A4Output != aPcbPlotParams.m_A4Output )
345 return false;
346
347 if( m_plotReference != aPcbPlotParams.m_plotReference )
348 return false;
349
350 if( m_plotValue != aPcbPlotParams.m_plotValue )
351 return false;
352
353 if( m_plotFPText != aPcbPlotParams.m_plotFPText )
354 return false;
355
356 if( m_plotInvisibleText != aPcbPlotParams.m_plotInvisibleText )
357 return false;
358
360 return false;
361
362 if( m_subtractMaskFromSilk != aPcbPlotParams.m_subtractMaskFromSilk )
363 return false;
364
365 if( m_format != aPcbPlotParams.m_format )
366 return false;
367
368 if( m_mirror != aPcbPlotParams.m_mirror )
369 return false;
370
371 if( m_drillMarks != aPcbPlotParams.m_drillMarks )
372 return false;
373
374 if( m_scaleSelection != aPcbPlotParams.m_scaleSelection )
375 return false;
376
377 if( m_autoScale != aPcbPlotParams.m_autoScale )
378 return false;
379
380 if( m_scale != aPcbPlotParams.m_scale )
381 return false;
382
383 if( m_fineScaleAdjustX != aPcbPlotParams.m_fineScaleAdjustX )
384 return false;
385
386 if( m_fineScaleAdjustY != aPcbPlotParams.m_fineScaleAdjustY )
387 return false;
388
389 if( m_widthAdjust != aPcbPlotParams.m_widthAdjust )
390 return false;
391
392 if( m_textMode != aPcbPlotParams.m_textMode )
393 return false;
394
395 if( m_blackAndWhite != aPcbPlotParams.m_blackAndWhite )
396 return false;
397
398 if( !m_outputDirectory.IsSameAs( aPcbPlotParams.m_outputDirectory ) )
399 return false;
400
401 return true;
402}
403
404
406{
408}
409
410
412{
414}
415
416
418 PCB_PLOT_PARAMS_LEXER( aReader )
419{
420}
421
422
423PCB_PLOT_PARAMS_PARSER::PCB_PLOT_PARAMS_PARSER( char* aLine, const wxString& aSource ) :
424 PCB_PLOT_PARAMS_LEXER( aLine, aSource )
425{
426}
427
428
430{
431 T token;
432
433 while( ( token = NextTok() ) != T_RIGHT )
434 {
435 if( token == T_EOF)
436 Unexpected( T_EOF );
437
438 if( token == T_LEFT )
439 token = NextTok();
440
441 if( token == T_pcbplotparams )
442 continue;
443
444 bool skip_right = false;
445
446 switch( token )
447 {
448 case T_layerselection:
449 {
450 token = NeedSYMBOLorNUMBER();
451
452 const std::string& cur = CurStr();
453
454 if( token == T_NUMBER ) // pretty 3 format had legacy Cu stack.
455 {
456 // It's not possible to convert a legacy Cu layer number to a new Cu layer
457 // number without knowing the number or total Cu layers in the legacy board.
458 // We do not have that information here, so simply set all layers ON. User
459 // can turn them off in the UI.
460 aPcbPlotParams->m_layerSelection = LSET( 2, F_SilkS, B_SilkS ) | LSET::AllCuMask();
461 }
462 else if( cur.find_first_of( "0x" ) == 0 ) // pretty ver. 4.
463 {
464 // skip the leading 2 0x bytes.
465 aPcbPlotParams->m_layerSelection.ParseHex( cur.c_str() + 2, cur.size() - 2 );
466 }
467 else
468 {
469 Expecting( "integer or hex layerSelection" );
470 }
471
472 break;
473 }
474
475 case T_plot_on_all_layers_selection:
476 {
477 token = NeedSYMBOLorNUMBER();
478
479 const std::string& cur = CurStr();
480
481 if( cur.find_first_of( "0x" ) == 0 )
482 {
483 // skip the leading 2 0x bytes.
484 aPcbPlotParams->m_plotOnAllLayersSelection.ParseHex( cur.c_str() + 2,
485 cur.size() - 2 );
486 }
487 else
488 {
489 Expecting( "hex plot_on_all_layers_selection" );
490 }
491
492 break;
493 }
494
495 case T_disableapertmacros:
496 aPcbPlotParams->m_gerberDisableApertMacros = parseBool();
497 break;
498
499 case T_usegerberextensions:
500 aPcbPlotParams->m_useGerberProtelExtensions = parseBool();
501 break;
502
503 case T_usegerberattributes:
504 aPcbPlotParams->m_useGerberX2format = parseBool();
505 break;
506
507 case T_usegerberadvancedattributes:
508 aPcbPlotParams->m_includeGerberNetlistInfo = parseBool();
509 break;
510
511 case T_creategerberjobfile:
512 aPcbPlotParams->m_createGerberJobFile = parseBool();
513 break;
514
515 case T_gerberprecision:
516 aPcbPlotParams->m_gerberPrecision = parseInt( gbrDefaultPrecision - 1,
518 break;
519
520 case T_dashed_line_dash_ratio:
521 aPcbPlotParams->m_dashedLineDashRatio = parseDouble();
522 break;
523
524 case T_dashed_line_gap_ratio:
525 aPcbPlotParams->m_dashedLineGapRatio = parseDouble();
526 break;
527
528 case T_svgprecision:
530 break;
531
532 case T_svguseinch:
533 parseBool(); // Unused. For compatibility
534 break;
535
536 case T_psa4output:
537 aPcbPlotParams->m_A4Output = parseBool();
538 break;
539
540 case T_excludeedgelayer:
541 if( !parseBool() )
542 aPcbPlotParams->m_plotOnAllLayersSelection.set( Edge_Cuts );
543
544 break;
545
546 case T_plotframeref:
547 aPcbPlotParams->m_plotDrawingSheet = parseBool();
548 break;
549
550 case T_viasonmask:
551 aPcbPlotParams->m_plotViaOnMaskLayer = parseBool();
552 break;
553
554 case T_mode:
555 aPcbPlotParams->SetPlotMode( parseInt( 0, 2 ) > 1 ? SKETCH : FILLED );
556 break;
557
558 case T_useauxorigin:
559 aPcbPlotParams->m_useAuxOrigin = parseBool();
560 break;
561
562 case T_hpglpennumber:
564 break;
565
566 case T_hpglpenspeed:
568 break;
569
570 case T_hpglpendiameter:
571 aPcbPlotParams->m_HPGLPenDiam = parseDouble();
572 break;
573
574 case T_hpglpenoverlay:
575 // No more used. just here for compatibility with old versions
577 break;
578
579 case T_pdf_front_fp_property_popups:
580 aPcbPlotParams->m_PDFFrontFPPropertyPopups = parseBool();
581 break;
582
583 case T_pdf_back_fp_property_popups:
584 aPcbPlotParams->m_PDFFrontFPPropertyPopups = parseBool();
585 break;
586
587 case T_pdf_metadata:
588 aPcbPlotParams->m_PDFMetadata = parseBool();
589 break;
590
591 case T_dxfpolygonmode:
592 aPcbPlotParams->m_DXFPolygonMode = parseBool();
593 break;
594
595 case T_dxfimperialunits:
596 aPcbPlotParams->m_DXFUnits = parseBool() ? DXF_UNITS::INCHES
597 : DXF_UNITS::MILLIMETERS;
598 break;
599
600 case T_dxfusepcbnewfont:
601 aPcbPlotParams->m_textMode = parseBool() ? PLOT_TEXT_MODE::DEFAULT
602 : PLOT_TEXT_MODE::NATIVE;
603 break;
604
605 case T_pscolor:
606 NeedSYMBOL(); // This actually was never used...
607 break;
608
609 case T_psnegative:
610 aPcbPlotParams->m_negative = parseBool();
611 break;
612
613 case T_plotreference:
614 aPcbPlotParams->m_plotReference = parseBool();
615 break;
616
617 case T_plotfptext:
618 aPcbPlotParams->m_plotFPText = parseBool();
619 break;
620
621 case T_plotvalue:
622 aPcbPlotParams->m_plotValue = parseBool();
623 break;
624
625 case T_plotinvisibletext:
626 aPcbPlotParams->m_plotInvisibleText = parseBool();
627 break;
628
629 case T_sketchpadsonfab:
630 aPcbPlotParams->m_sketchPadsOnFabLayers= parseBool();
631 break;
632
633 case T_subtractmaskfromsilk:
634 aPcbPlotParams->m_subtractMaskFromSilk = parseBool();
635 break;
636
637 case T_outputformat:
638 aPcbPlotParams->m_format = static_cast<PLOT_FORMAT>(
639 parseInt( static_cast<int>( PLOT_FORMAT::FIRST_FORMAT ),
640 static_cast<int>( PLOT_FORMAT::LAST_FORMAT ) ) );
641 break;
642
643 case T_mirror:
644 aPcbPlotParams->m_mirror = parseBool();
645 break;
646
647 case T_drillshape:
648 aPcbPlotParams->m_drillMarks = static_cast<DRILL_MARKS> ( parseInt( 0, 2 ) );
649 break;
650
651 case T_scaleselection:
652 aPcbPlotParams->m_scaleSelection = parseInt( 0, 4 );
653 break;
654
655 case T_outputdirectory:
656 NeedSYMBOLorNUMBER(); // a dir name can be like a number
657 aPcbPlotParams->m_outputDirectory = From_UTF8( CurText() );
658 break;
659
660 default:
661 skipCurrent(); // skip unknown or outdated plot parameter
662 skip_right = true; // the closing right token is already read.
663 break;
664 }
665
666 if( ! skip_right )
667 NeedRIGHT();
668 }
669}
670
671
673{
674 T token = NeedSYMBOL();
675
676 switch( token )
677 {
678 case T_false:
679 case T_no:
680 return false;
681
682 case T_true:
683 case T_yes:
684 return true;
685
686 default:
687 Expecting( "true, false, yes, or no" );
688 return false;
689 }
690}
691
692
693int PCB_PLOT_PARAMS_PARSER::parseInt( int aMin, int aMax )
694{
695 T token = NextTok();
696
697 if( token != T_NUMBER )
698 Expecting( T_NUMBER );
699
700 int val = atoi( CurText() );
701
702 if( val < aMin )
703 val = aMin;
704 else if( val > aMax )
705 val = aMax;
706
707 return val;
708}
709
710
712{
713 T token = NextTok();
714
715 if( token != T_NUMBER )
716 Expecting( T_NUMBER );
717
718 return DSNLEXER::parseDouble();
719}
720
721
723{
724 int curr_level = 0;
725 T token;
726
727 while( ( token = NextTok() ) != T_EOF )
728 {
729 if( token == T_LEFT )
730 curr_level--;
731
732 if( token == T_RIGHT )
733 {
734 curr_level++;
735
736 if( curr_level > 0 )
737 return;
738 }
739 }
740}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
double parseDouble()
Parse the current token as an ASCII numeric string with possible leading whitespace into a double pre...
Definition: dsnlexer.cpp:824
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
Definition: richio.h:93
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:574
int ParseHex(const char *aStart, int aCount)
Convert the output of FmtHex() and replaces this set's values with those given in the input string.
Definition: lset.cpp:366
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
Definition: lset.cpp:863
std::string FmtHex() const
Return a hex string showing contents of this LSEQ.
Definition: lset.cpp:328
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
int PRINTF_FUNC Print(int nestLevel, const char *fmt,...)
Format and write text to the output stream.
Definition: richio.cpp:458
The parser for PCB_PLOT_PARAMS.
void skipCurrent()
Skip the current token level.
int parseInt(int aMin, int aMax)
Parse an integer and constrains it between two values.
PCB_PLOT_PARAMS_PARSER(LINE_READER *aReader)
double parseDouble()
Parse a double precision floating point number.
void Parse(PCB_PLOT_PARAMS *aPcbPlotParams)
Parameters and options when plotting/printing a board.
bool m_sketchPadsOnFabLayers
Plots pads outlines on fab layers.
int m_HPGLPenNum
HPGL only: pen number selection(1 to 9)
double m_dashedLineGapRatio
int m_gerberPrecision
Precision of coordinates in Gerber: accepted 5 or 6 when units are in mm, 6 or 7 in inches (but Pcbne...
std::shared_ptr< COLOR_SETTINGS > m_default_colors
Pointer to color settings to be used for plotting.
OUTLINE_MODE m_plotMode
Used to disable NPTH pads plotting on copper layers.
bool m_A4Output
In polygon mode, each item to plot is converted to a polygon and all polygons are merged.
int m_scaleSelection
Scale ratio index (UI only)
DXF_UNITS m_DXFUnits
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.
wxString m_outputDirectory
Output directory for plot files (usually relative to the board file)
bool m_PDFMetadata
Generate PDF metadata for SUBJECT and AUTHOR.
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 m_useAuxOrigin
Plot gerbers using auxiliary (drill) origin instead of absolute coordinates.
double m_scale
When true set the scale to fit the board in the page.
int m_widthAdjust
Compensation for PS printers/plotters that do not strictly obey line width settings.
bool SetHPGLPenDiameter(double aValue)
bool m_PDFFrontFPPropertyPopups
Generate PDF property popup menus for footprints.
double m_fineScaleAdjustX
Compensation for printer scale errors (and therefore.
LSET m_plotOnAllLayersSelection
double m_dashedLineDashRatio
void Format(OUTPUTFORMATTER *aFormatter, int aNestLevel, int aControl=0) const
void SetGerberPrecision(int aPrecision)
bool m_blackAndWhite
Plot in negative color (supported only by some drivers)
bool SetHPGLPenSpeed(int aValue)
bool m_plotInvisibleText
Force plotting of fields marked invisible.
PLOT_FORMAT m_format
bool m_createGerberJobFile
generate the auxiliary "job file" in gerber format
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.
bool m_gerberDisableApertMacros
Disable aperture macros in Gerber format (only for broken Gerber readers).
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 GetUseGerberX2format() const
bool m_mirror
Global scale factor, 1.0 plots a board at actual size.
bool IsSameAs(const PCB_PLOT_PARAMS &aPcbPlotParams) const
Compare current settings to aPcbPlotParams, including not saved parameters in brd file.
bool m_includeGerberNetlistInfo
Include netlist info (only in Gerber X2 format) (chapter ? in revision ?)
unsigned m_svgPrecision
Precision of coordinates in SVG: accepted 3 - 6; 6 is the internal resolution of Pcbnew.
bool GetIncludeGerberNetlistInfo() const
void SetPlotMode(OUTLINE_MODE aPlotMode)
double GetDashedLineGapRatio() const
bool m_PDFBackFPPropertyPopups
on front and/or back of board
double GetDashedLineDashRatio() const
void SetSvgPrecision(unsigned aPrecision)
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.
bool m_plotDrawingSheet
Plot in black and white only.
OUTLINE_MODE GetPlotMode() const
LSET m_layerSelection
Plot format type (chooses the driver to be used)
static bool setDouble(double *aResult, double aValue, double aMin, double aMax)
static bool setInt(int *aResult, int aValue, int aMin, int aMax)
static const char * getTokenName(T aTok)
static const bool FILLED
Definition: gr_basic.cpp:30
@ Edge_Cuts
Definition: layer_ids.h:113
@ F_Paste
Definition: layer_ids.h:101
@ B_Mask
Definition: layer_ids.h:106
@ F_Mask
Definition: layer_ids.h:107
@ B_Paste
Definition: layer_ids.h:100
@ F_SilkS
Definition: layer_ids.h:104
@ B_SilkS
Definition: layer_ids.h:103
void FormatBool(OUTPUTFORMATTER *aOut, int aNestLevel, const wxString &aKey, bool aValue, char aSuffix)
Writes a boolean to the formatter, in the style (aKey [yes|no])
@ SKETCH
Definition: outline_mode.h:26
#define HPGL_PEN_NUMBER_MAX
static bool setDouble(double *aTarget, double aValue, double aMin, double aMax)
#define SVG_PRECISION_MIN
#define HPGL_PEN_SPEED_MAX
static bool setInt(int *aTarget, int aValue, int aMin, int aMax)
#define HPGL_PEN_DIAMETER_MIN
static const char * getTokenName(T aTok)
#define HPGL_PEN_DIAMETER_MAX
static const int gbrDefaultPrecision
#define HPGL_PEN_SPEED_MIN
#define HPGL_PEN_NUMBER_MIN
#define SVG_PRECISION_MAX
#define SVG_PRECISION_DEFAULT
DRILL_MARKS
Plots and prints can show holes in pads and vias 3 options are available:
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:64
wxString From_UTF8(const char *cstring)
constexpr int mmToIU(double mm) const
Definition: base_units.h:88
constexpr T Clamp(const T &lower, const T &value, const T &upper)
Limit value within the range lower <= value <= upper.
Definition: util.h:64