KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcbplot.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, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef PCBPLOT_H_
21#define PCBPLOT_H_
22
23#include <lset.h>
24#include <padstack.h> // for PAD_DRILL_SHAPE
25#include <pcb_plot_params.h>
28#include <board.h>
30#include <board_item.h>
31
32class EDA_TEXT;
33class PLOTTER;
34class PCB_TEXT;
35class PCB_BARCODE;
36class PAD;
37class PCB_SHAPE;
38class PCB_TABLE;
40class FOOTPRINT;
41class PCB_TARGET;
42class ZONE;
43class REPORTER;
44class wxFileName;
45
46namespace KIFONT
47{
48class FONT;
49class METRICS;
50}
51
52
53// Define min and max reasonable values for plot/print scale
54#define PLOT_MIN_SCALE 0.01
55#define PLOT_MAX_SCALE 100.0
56
57
58
59// A helper class to plot board items
61{
62public:
63 BRDITEMS_PLOTTER( PLOTTER* aPlotter, BOARD* aBoard, const PCB_PLOT_PARAMS& aPlotOpts ) :
64 PCB_PLOT_PARAMS( aPlotOpts ),
65 m_plotter( aPlotter ),
66 m_board( aBoard )
67 { }
68
74 int getFineWidthAdj() const
75 {
77 return GetWidthAdjust();
78 else
79 return 0;
80 }
81
82 // Basic functions to plot a board item
83 void SetLayerSet( const LSET& aLayerMask ) { m_layerMask = aLayerMask; }
84 void PlotFootprintGraphicItems( const FOOTPRINT* aFootprint );
85 void PlotFootprintTextItems( const FOOTPRINT* aFootprint );
86
87 void PlotDimension( const PCB_DIMENSION_BASE* aDim );
88 void PlotPcbTarget( const PCB_TARGET* aMire );
89 void PlotZone( const ZONE* aZone, PCB_LAYER_ID aLayer, const SHAPE_POLY_SET& aPolysList );
90 void PlotText( const EDA_TEXT* aText, PCB_LAYER_ID aLayer, bool aIsKnockout,
91 const KIFONT::METRICS& aFontMetrics, bool aStrikeout = false );
92 void PlotShape( const PCB_SHAPE* aShape );
93 void PlotTableBorders( const PCB_TABLE* aTable );
94 void PlotBarCode( const PCB_BARCODE* aBarCode );
95
102 void PlotPad( const PAD* aPad, PCB_LAYER_ID aLayer, const COLOR4D& aColor,
103 bool aSketchMode );
104
105 void PlotPadNumber( const PAD* aPad, const COLOR4D& aColor );
106
110 void PlotBoardGraphicItem( const BOARD_ITEM* item );
111
118 void PlotDrillMarks();
119
128 COLOR4D getColor( int aLayer ) const;
129
130private:
132 {
133 return GetHideDNPFPsOnFabLayers() && ( aLayer == F_Fab || aLayer == B_Fab );
134 }
135
137 {
138 return GetCrossoutDNPFPsOnFabLayers() && ( aLayer == F_Fab || aLayer == B_Fab );
139 }
140
146 void plotOneDrillMark( PAD_DRILL_SHAPE aDrillShape, const VECTOR2I& aDrillPos,
147 const VECTOR2I& aDrillSize, const VECTOR2I& aPadSize,
148 const EDA_ANGLE& aOrientation, int aSmallDrill );
149
153};
154
155
156PLOTTER* StartPlotBoard( BOARD* aBoard, const PCB_PLOT_PARAMS* aPlotOpts, int aLayer,
157 const wxString& aLayerName, const wxString& aFullFileName,
158 const wxString& aSheetName, const wxString& aSheetPath,
159 const wxString& aPageName = wxT( "1" ),
160 const wxString& aPageNumber = wxEmptyString,
161 const int aPageCount = 1);
162
163void setupPlotterNewPDFPage( PLOTTER* aPlotter, BOARD* aBoard, PCB_PLOT_PARAMS* aPlotOpts,
164 const wxString& aLayerName, const wxString& aSheetName,
165 const wxString& aSheetPath, const wxString& aPageNumber,
166 int aPageCount );
175void PlotBoardLayers( BOARD* aBoard, PLOTTER* aPlotter, const LSEQ& aLayerSequence,
176 const PCB_PLOT_PARAMS& aPlotOptions );
177
181void PlotInteractiveLayer( BOARD* aBoard, PLOTTER* aPlotter, const PCB_PLOT_PARAMS& aPlotOpt );
182
193void PlotOneBoardLayer( BOARD* aBoard, PLOTTER* aPlotter, PCB_LAYER_ID aLayer,
194 const PCB_PLOT_PARAMS& aPlotOpt, bool isPrimaryLayer );
195
216void PlotStandardLayer( BOARD* aBoard, PLOTTER* aPlotter, const LSET& aLayerMask,
217 const PCB_PLOT_PARAMS& aPlotOpt );
218
227void PlotLayerOutlines( BOARD* aBoard, PLOTTER* aPlotter, const LSET& aLayerMask,
228 const PCB_PLOT_PARAMS& aPlotOpt );
229
230
234const wxString GetGerberProtelExtension( int aLayer );
235
246const wxString GetGerberFileFunctionAttribute( const BOARD* aBoard, int aLayer );
247
263void AddGerberX2Header( PLOTTER* aPlotter, const BOARD* aBoard,
264 bool aUseX1CompatibilityMode = false );
265
283void AddGerberX2Attribute( PLOTTER* aPlotter, const BOARD* aBoard, int aLayer,
284 bool aUseX1CompatibilityMode );
285
286#endif // PCBPLOT_H_
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:81
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
void SetLayerSet(const LSET &aLayerMask)
Definition pcbplot.h:83
void PlotDrillMarks()
Draw a drill mark for pads and vias.
void PlotZone(const ZONE *aZone, PCB_LAYER_ID aLayer, const SHAPE_POLY_SET &aPolysList)
void PlotPadNumber(const PAD *aPad, const COLOR4D &aColor)
void PlotBoardGraphicItem(const BOARD_ITEM *item)
Plot items like text and graphics but not tracks and footprints.
void PlotPad(const PAD *aPad, PCB_LAYER_ID aLayer, const COLOR4D &aColor, bool aSketchMode)
Plot a pad.
void PlotDimension(const PCB_DIMENSION_BASE *aDim)
void PlotText(const EDA_TEXT *aText, PCB_LAYER_ID aLayer, bool aIsKnockout, const KIFONT::METRICS &aFontMetrics, bool aStrikeout=false)
BOARD * m_board
Definition pcbplot.h:151
void PlotShape(const PCB_SHAPE *aShape)
PLOTTER * m_plotter
Definition pcbplot.h:150
bool crossoutDNPItems(PCB_LAYER_ID aLayer)
Definition pcbplot.h:136
void PlotBarCode(const PCB_BARCODE *aBarCode)
COLOR4D getColor(int aLayer) const
White color is special because it cannot be seen on a white paper in B&W mode.
void PlotPcbTarget(const PCB_TARGET *aMire)
void PlotTableBorders(const PCB_TABLE *aTable)
void PlotFootprintTextItems(const FOOTPRINT *aFootprint)
int getFineWidthAdj() const
Definition pcbplot.h:74
void plotOneDrillMark(PAD_DRILL_SHAPE aDrillShape, const VECTOR2I &aDrillPos, const VECTOR2I &aDrillSize, const VECTOR2I &aPadSize, const EDA_ANGLE &aOrientation, int aSmallDrill)
Helper function to plot a single drill mark.
bool hideDNPItems(PCB_LAYER_ID aLayer)
Definition pcbplot.h:131
BRDITEMS_PLOTTER(PLOTTER *aPlotter, BOARD *aBoard, const PCB_PLOT_PARAMS &aPlotOpts)
Definition pcbplot.h:63
void PlotFootprintGraphicItems(const FOOTPRINT *aFootprint)
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition eda_text.h:89
FONT is an abstract base class for both outline and stroke fonts.
Definition font.h:94
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
Definition pad.h:61
Abstract dimension API.
Parameters and options when plotting/printing a board.
PLOT_FORMAT GetFormat() const
bool GetHideDNPFPsOnFabLayers() const
int GetWidthAdjust() const
bool GetCrossoutDNPFPsOnFabLayers() const
Base plotter engine class.
Definition plotter.h:133
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:71
Represent a set of closed polygons.
Handle a list of polygons defining a copper zone.
Definition zone.h:70
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
@ F_Fab
Definition layer_ids.h:115
@ B_Fab
Definition layer_ids.h:114
PAD_DRILL_SHAPE
The set of pad drill shapes, used with PAD::{Set,Get}DrillShape()
Definition padstack.h:69
void PlotStandardLayer(BOARD *aBoard, PLOTTER *aPlotter, const LSET &aLayerMask, const PCB_PLOT_PARAMS &aPlotOpt)
Plot copper or technical layers.
const wxString GetGerberProtelExtension(int aLayer)
Definition pcbplot.cpp:39
PLOTTER * StartPlotBoard(BOARD *aBoard, const PCB_PLOT_PARAMS *aPlotOpts, int aLayer, const wxString &aLayerName, const wxString &aFullFileName, const wxString &aSheetName, const wxString &aSheetPath, const wxString &aPageName=wxT("1"), const wxString &aPageNumber=wxEmptyString, const int aPageCount=1)
Open a new plotfile using the options (and especially the format) specified in the options and prepar...
void AddGerberX2Header(PLOTTER *aPlotter, const BOARD *aBoard, bool aUseX1CompatibilityMode=false)
Calculate some X2 attributes as defined in the Gerber file format specification J4 (chapter 5) and ad...
Definition pcbplot.cpp:290
const wxString GetGerberFileFunctionAttribute(const BOARD *aBoard, int aLayer)
Return the "file function" attribute for aLayer, as defined in the Gerber file format specification J...
Definition pcbplot.cpp:78
void setupPlotterNewPDFPage(PLOTTER *aPlotter, BOARD *aBoard, PCB_PLOT_PARAMS *aPlotOpts, const wxString &aLayerName, const wxString &aSheetName, const wxString &aSheetPath, const wxString &aPageNumber, int aPageCount)
void PlotBoardLayers(BOARD *aBoard, PLOTTER *aPlotter, const LSEQ &aLayerSequence, const PCB_PLOT_PARAMS &aPlotOptions)
Plot a sequence of board layer IDs.
void PlotInteractiveLayer(BOARD *aBoard, PLOTTER *aPlotter, const PCB_PLOT_PARAMS &aPlotOpt)
Plot interactive items (hypertext links, properties, etc.).
void AddGerberX2Attribute(PLOTTER *aPlotter, const BOARD *aBoard, int aLayer, bool aUseX1CompatibilityMode)
Calculate some X2 attributes as defined in the Gerber file format specification and add them to the g...
Definition pcbplot.cpp:356
void PlotOneBoardLayer(BOARD *aBoard, PLOTTER *aPlotter, PCB_LAYER_ID aLayer, const PCB_PLOT_PARAMS &aPlotOpt, bool isPrimaryLayer)
Plot one copper or technical layer.
void PlotLayerOutlines(BOARD *aBoard, PLOTTER *aPlotter, const LSET &aLayerMask, const PCB_PLOT_PARAMS &aPlotOpt)
Plot copper outline of a copper layer.
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683