KiCad PCB EDA Suite
Loading...
Searching...
No Matches
plotter.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 (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef PLOT_COMMON_H_
26#define PLOT_COMMON_H_
27
28#include <eda_shape.h>
29#include <vector>
30#include <math/box2.h>
31#include <gr_text.h>
32#include <page_info.h>
33#include <gal/color4d.h>
34#include <stroke_params.h>
35#include <render_settings.h>
36#include <font/font.h>
37
38
39class COLOR_SETTINGS;
40class SHAPE_ARC;
41class SHAPE_POLY_SET;
44class PROJECT;
45
47
48
49// Must be in the same order as the drop-down list in the plot dialog inside pcbnew
50// Units (inch/mm for DXF plotter
51enum class DXF_UNITS
52{
53 INCH = 0, // Do not use MM: it conficts with a Windows header
54 MM = 1
55};
56
57
76
81{
82 SKETCH = 0, // sketch mode: draw segments outlines only
83 FILLED = 1 // normal mode: solid segments
84};
85
106
108{
109public:
110 virtual DXF_OUTLINE_MODE GetDXFPlotMode() const { wxFAIL; return DXF_OUTLINE_MODE::FILLED; }
112};
113
114
129
137{
138public:
139 // These values are used as flag for pen or aperture selection
140 static const int DO_NOT_SET_LINE_WIDTH = -2; // Skip selection
141 static const int USE_DEFAULT_LINE_WIDTH = -1; // use the default pen
142
143 PLOTTER( const PROJECT* aProject = nullptr );
144
145 virtual ~PLOTTER();
146
152 virtual PLOT_FORMAT GetPlotterType() const = 0;
153
154 virtual bool StartPlot( const wxString& aPageNumber ) = 0;
155 virtual bool EndPlot() = 0;
156
157 virtual void SetNegative( bool aNegative ) { m_negativeMode = aNegative; }
158
164 virtual void SetColorMode( bool aColorMode ) { m_colorMode = aColorMode; }
165 bool GetColorMode() const { return m_colorMode; }
166
167 void SetRenderSettings( RENDER_SETTINGS* aSettings ) { m_renderSettings = aSettings; }
169
170 virtual void SetPageSettings( const PAGE_INFO& aPageSettings ) { m_pageInfo = aPageSettings; }
172
173 void SetPlotMirrored( bool aMirror ) { m_plotMirror = aMirror; };
174 bool GetPlotMirrored() const { return m_plotMirror; }
175
182 virtual void SetCurrentLineWidth( int width, void* aData = nullptr ) = 0;
183 virtual int GetCurrentLineWidth() const { return m_currentPenWidth; }
184
185 virtual void SetColor( const COLOR4D& color ) = 0;
186
187 virtual void SetDash( int aLineWidth, LINE_STYLE aLineStyle ) = 0;
188
189 virtual void SetCreator( const wxString& aCreator ) { m_creator = aCreator; }
190 virtual void SetTitle( const wxString& aTitle ) { m_title = aTitle; }
191 virtual void SetAuthor( const wxString& aAuthor ) { m_author = aAuthor; }
192 virtual void SetSubject( const wxString& aSubject ) { m_subject = aSubject; }
193
199 void AddLineToHeader( const wxString& aExtraString )
200 {
201 m_headerExtraLines.Add( aExtraString );
202 }
203
208 {
209 m_headerExtraLines.Clear();
210 }
211
222 virtual void SetViewport( const VECTOR2I& aOffset, double aIusPerDecimil,
223 double aScale, bool aMirror ) = 0;
224
235 void SetLayersToExport( const std::vector<std::pair<PCB_LAYER_ID, wxString>>& aLayersToExport ) { m_layersToExport = aLayersToExport; }
236
244 PCB_LAYER_ID GetLayer() const { return m_layer; }
245
253 void SetLayer( PCB_LAYER_ID aLayer ) { m_layer = aLayer; }
254
265 virtual bool OpenFile( const wxString& aFullFilename );
266
272 double GetIUsPerDecimil() const { return m_IUsPerDecimil; }
273
274 int GetPlotterArcLowDef() const { return m_IUsPerDecimil * 8; }
275 int GetPlotterArcHighDef() const { return m_IUsPerDecimil * 2; }
276
277 // Low level primitives
278 virtual void Rect( const VECTOR2I& p1, const VECTOR2I& p2, FILL_T fill, int width,
279 int aCornerRadius = 0 ) = 0;
280 virtual void Circle( const VECTOR2I& pos, int diametre, FILL_T fill, int width ) = 0;
281
282 virtual void Arc( const VECTOR2D& aStart, const VECTOR2D& aMid, const VECTOR2D& aEnd,
283 FILL_T aFill, int aWidth );
284
285 virtual void Arc( const VECTOR2D& aCenter, const EDA_ANGLE& aStartAngle,
286 const EDA_ANGLE& aAngle, double aRadius, FILL_T aFill,
287 int aWidth );
288
294 virtual void BezierCurve( const VECTOR2I& aStart, const VECTOR2I& aControl1,
295 const VECTOR2I& aControl2, const VECTOR2I& aEnd,
296 int aTolerance, int aLineThickness );
297
306 virtual void PenTo( const VECTOR2I& pos, char plume ) = 0;
307
308 // Convenience functions for PenTo
309 void MoveTo( const VECTOR2I& pos )
310 {
311 PenTo( pos, 'U' );
312 }
313
314 void LineTo( const VECTOR2I& pos )
315 {
316 PenTo( pos, 'D' );
317 }
318
319 void FinishTo( const VECTOR2I& pos )
320 {
321 PenTo( pos, 'D' );
322 PenTo( pos, 'Z' );
323 }
324
326 {
327 // The point is not important with Z motion
328 PenTo( VECTOR2I( 0, 0 ), 'Z' );
329 }
330
339 virtual void PlotPoly( const std::vector<VECTOR2I>& aCornerList, FILL_T aFill, int aWidth,
340 void* aData ) = 0;
341
351 virtual void PlotPoly( const SHAPE_LINE_CHAIN& aLineChain, FILL_T aFill, int aWidth, void* aData );
352
363 virtual void PlotImage( const wxImage& aImage, const VECTOR2I& aPos, double aScaleFactor );
364
365 // Higher level primitives -- can be drawn as line, sketch or 'filled'
366 virtual void ThickSegment( const VECTOR2I& start, const VECTOR2I& end, int width, void* aData );
367
368 virtual void ThickArc( const EDA_SHAPE& aArcShape, void* aData, int aWidth );
369
370 virtual void ThickArc( const VECTOR2D& aCentre, const EDA_ANGLE& aStAngle,
371 const EDA_ANGLE& aAngle, double aRadius, int aWidth, void* aData );
372
373 virtual void ThickRect( const VECTOR2I& p1, const VECTOR2I& p2, int width, void* aData );
374
375 virtual void ThickCircle( const VECTOR2I& pos, int diametre, int width, void* aData );
376
377 virtual void FilledCircle( const VECTOR2I& pos, int diametre, void* aData );
378
379 virtual void ThickOval( const VECTOR2I& aPos, const VECTOR2I& aSize, const EDA_ANGLE& aOrient,
380 int aWidth, void* aData );
381
382 virtual void ThickPoly( const SHAPE_POLY_SET& aPoly, int aWidth, void* aData );
383
384 // Flash primitives
385
391 virtual void FlashPadCircle( const VECTOR2I& aPadPos, int aDiameter, void* aData ) = 0;
392
399 virtual void FlashPadOval( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
400 const EDA_ANGLE& aPadOrient, void* aData ) = 0;
401
408 virtual void FlashPadRect( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
409 const EDA_ANGLE& aPadOrient, void* aData ) = 0;
410
418 virtual void FlashPadRoundRect( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
419 int aCornerRadius, const EDA_ANGLE& aOrient,
420 void* aData ) = 0;
421
429 virtual void FlashPadCustom( const VECTOR2I& aPadPos, const VECTOR2I& aSize,
430 const EDA_ANGLE& aPadOrient, SHAPE_POLY_SET* aPolygons,
431 void* aData ) = 0;
432
442 virtual void FlashPadTrapez( const VECTOR2I& aPadPos, const VECTOR2I* aCorners,
443 const EDA_ANGLE& aPadOrient, void* aData ) = 0;
444
455 virtual void FlashRegularPolygon( const VECTOR2I& aShapePos, int aDiameter, int aCornerCount,
456 const EDA_ANGLE& aOrient, void* aData ) = 0;
457
479 virtual void Text( const VECTOR2I& aPos,
480 const COLOR4D& aColor,
481 const wxString& aText,
482 const EDA_ANGLE& aOrient,
483 const VECTOR2I& aSize,
484 enum GR_TEXT_H_ALIGN_T aH_justify,
485 enum GR_TEXT_V_ALIGN_T aV_justify,
486 int aPenWidth,
487 bool aItalic,
488 bool aBold,
489 bool aMultilineAllowed,
490 KIFONT::FONT* aFont,
491 const KIFONT::METRICS& aFontMetrics,
492 void* aData = nullptr );
493
494 virtual void PlotText( const VECTOR2I& aPos,
495 const COLOR4D& aColor,
496 const wxString& aText,
497 const TEXT_ATTRIBUTES& aAttributes,
498 KIFONT::FONT* aFont = nullptr,
499 const KIFONT::METRICS& aFontMetrics = KIFONT::METRICS::Default(),
500 void* aData = nullptr );
507 virtual void HyperlinkBox( const BOX2I& aBox, const wxString& aDestinationURL )
508 {
509 // NOP for most plotters.
510 }
511
518 virtual void HyperlinkMenu( const BOX2I& aBox, const std::vector<wxString>& aDestURLs )
519 {
520 // NOP for most plotters.
521 }
522
529 virtual void Bookmark( const BOX2I& aBox, const wxString& aName,
530 const wxString& aGroupName = wxEmptyString )
531 {
532 // NOP for most plotters.
533 }
534
538 static const unsigned MARKER_COUNT = 58;
539
547 void Marker( const VECTOR2I& position, int diametre, unsigned aShapeId );
548
558 virtual void SetLayerPolarity( bool aPositive )
559 {
560 // NOP for most plotters
561 }
562
568 virtual void SetTextMode( PLOT_TEXT_MODE mode )
569 {
570 // NOP for most plotters.
571 }
572
573 virtual void SetGerberCoordinatesFormat( int aResolution, bool aUseInches = false )
574 {
575 // NOP for most plotters. Only for Gerber plotter
576 }
577
579 virtual void SetSvgCoordinatesFormat( unsigned aPrecision )
580 {
581 // NOP for most plotters. Only for SVG plotter
582 }
583
591 virtual void StartBlock( void* aData ) {}
592
600 virtual void EndBlock( void* aData ) {}
601
606
607
608protected:
619 virtual void polyArc( const VECTOR2D& aCentre, const EDA_ANGLE& aStartAngle,
620 const EDA_ANGLE& aAngle, double aRadius, FILL_T aFill, int aWidth );
621
622 // These are marker subcomponents
626 void markerCircle( const VECTOR2I& pos, int radius );
627
631 void markerHBar( const VECTOR2I& pos, int radius );
632
636 void markerSlash( const VECTOR2I& pos, int radius );
637
641 void markerBackSlash( const VECTOR2I& pos, int radius );
642
646 void markerVBar( const VECTOR2I& pos, int radius );
647
651 void markerSquare( const VECTOR2I& position, int radius );
652
656 void markerLozenge( const VECTOR2I& position, int radius );
657
658 // Helper function for sketched filler segment
659
660
661 // Coordinate and scaling conversion functions
662
668 virtual VECTOR2D userToDeviceCoordinates( const VECTOR2I& aCoordinate );
669
673 virtual VECTOR2D userToDeviceSize( const VECTOR2I& size );
674
678 virtual double userToDeviceSize( double size ) const;
679
680 double GetDotMarkLenIU( int aLineWidth ) const;
681
682 double GetDashMarkLenIU( int aLineWidth ) const;
683
684 double GetDashGapLenIU( int aLineWidth ) const;
685
686
687protected: // variables used in most of plotters:
688
691
692 /* Caller scale (how many IUs in a decimil - always); it's a double
693 * because in Eeschema there are 0.1 IUs in a decimil (Eeschema
694 * always works in mils internally) while PcbNew can work in decimil
695 * or nanometers, so this value would be >= 1 */
697
698 double m_iuPerDeviceUnit; // Device scale (from IUs to plotter device units;
699 // usually decimils)
700 VECTOR2I m_plotOffset; // Plot offset (in IUs)
701 bool m_plotMirror; // X axis orientation (SVG)
702 // and plot mirrored (only for PS, PDF and SVG)
703 bool m_mirrorIsHorizontal; // true to mirror horizontally (else vertically)
704 bool m_yaxisReversed; // true if the Y axis is top to bottom (SVG)
705
708
709 // Pen handling
710 bool m_colorMode; // true to plot in color, otherwise black & white
711 bool m_negativeMode; // true to generate a negative image (PS mode mainly)
713 char m_penState; // current pen state: 'U', 'D' or 'Z' (see PenTo)
714 VECTOR2I m_penLastpos; // last pen position; -1,-1 when pen is at rest
715
716 wxString m_creator;
717 wxString m_filename;
718 wxString m_title;
719 wxString m_author;
720 wxString m_subject;
722 VECTOR2I m_paperSize; // Paper size in IU - not in mils
723
724 wxArrayString m_headerExtraLines; // a set of string to print in header file
725
727
729 std::vector<std::pair<PCB_LAYER_ID, wxString>> m_layersToExport;
730
732};
733
734
735class TITLE_BLOCK;
736
737void PlotDrawingSheet( PLOTTER* plotter, const PROJECT* aProject, const TITLE_BLOCK& aTitleBlock,
738 const PAGE_INFO& aPageInfo, const std::map<wxString, wxString>* aProperties,
739 const wxString& aSheetNumber, int aSheetCount, const wxString& aSheetName,
740 const wxString& aSheetPath, const wxString& aFilename, COLOR4D aColor = COLOR4D::UNSPECIFIED,
741 bool aIsFirstPage = true, const wxString& aVariantName = wxEmptyString,
742 const wxString& aVariantDesc = wxEmptyString );
743
747wxString GetDefaultPlotExtension( PLOT_FORMAT aFormat );
748
749
750#endif // PLOT_COMMON_H_
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
Definition color4d.h:402
Color settings are a bit different than most of the settings objects in that there can be more than o...
Information which can be added in a gerber file as attribute of an object.
FONT is an abstract base class for both outline and stroke fonts.
Definition font.h:98
static const METRICS & Default()
Definition font.cpp:52
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:105
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition page_info.h:79
Base plotter engine class.
Definition plotter.h:137
double GetDotMarkLenIU(int aLineWidth) const
Definition plotter.cpp:134
PCB_LAYER_ID GetLayer() const
Gets the ID of the current layer.
Definition plotter.h:244
virtual void PlotImage(const wxImage &aImage, const VECTOR2I &aPos, double aScaleFactor)
Only PostScript plotters can plot bitmaps.
Definition plotter.cpp:260
virtual void FlashPadRoundRect(const VECTOR2I &aPadPos, const VECTOR2I &aSize, int aCornerRadius, const EDA_ANGLE &aOrient, void *aData)=0
wxArrayString m_headerExtraLines
Definition plotter.h:724
static const unsigned MARKER_COUNT
Draw a marker (used for the drill map).
Definition plotter.h:538
double GetDashGapLenIU(int aLineWidth) const
Definition plotter.cpp:146
const PROJECT * m_project
Definition plotter.h:728
virtual void Circle(const VECTOR2I &pos, int diametre, FILL_T fill, int width)=0
std::vector< std::pair< PCB_LAYER_ID, wxString > > m_layersToExport
Definition plotter.h:729
virtual bool OpenFile(const wxString &aFullFilename)
Open or create the plot file aFullFilename.
Definition plotter.cpp:77
wxString m_subject
Definition plotter.h:720
virtual void SetAuthor(const wxString &aAuthor)
Definition plotter.h:191
bool m_mirrorIsHorizontal
Definition plotter.h:703
virtual void SetNegative(bool aNegative)
Definition plotter.h:157
virtual void SetSvgCoordinatesFormat(unsigned aPrecision)
Set the number of digits for mantissa in coordinates in mm for SVG plotter.
Definition plotter.h:579
virtual void ThickPoly(const SHAPE_POLY_SET &aPoly, int aWidth, void *aData)
Definition plotter.cpp:625
virtual void SetPageSettings(const PAGE_INFO &aPageSettings)
Definition plotter.h:170
void SetLayer(PCB_LAYER_ID aLayer)
Sets the ID of the current layer.
Definition plotter.h:253
void SetRenderSettings(RENDER_SETTINGS *aSettings)
Definition plotter.h:167
PAGE_INFO m_pageInfo
Definition plotter.h:721
bool m_plotMirror
Definition plotter.h:701
static const int USE_DEFAULT_LINE_WIDTH
Definition plotter.h:141
virtual void SetTitle(const wxString &aTitle)
Definition plotter.h:190
virtual void FilledCircle(const VECTOR2I &pos, int diametre, void *aData)
Definition plotter.cpp:619
virtual bool EndPlot()=0
virtual void FlashPadOval(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aPadOrient, void *aData)=0
void MoveTo(const VECTOR2I &pos)
Definition plotter.h:309
virtual void FlashPadRect(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aPadOrient, void *aData)=0
virtual void ThickOval(const VECTOR2I &aPos, const VECTOR2I &aSize, const EDA_ANGLE &aOrient, int aWidth, void *aData)
Definition plotter.cpp:487
virtual void SetDash(int aLineWidth, LINE_STYLE aLineStyle)=0
void markerSlash(const VECTOR2I &pos, int radius)
Plot a / bar centered on the position.
Definition plotter.cpp:344
void FinishTo(const VECTOR2I &pos)
Definition plotter.h:319
wxString m_author
Definition plotter.h:719
bool m_yaxisReversed
Definition plotter.h:704
virtual bool StartPlot(const wxString &aPageNumber)=0
virtual void polyArc(const VECTOR2D &aCentre, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aRadius, FILL_T aFill, int aWidth)
Generic fallback: arc rendered as a polyline.
Definition plotter.cpp:183
void SetLayersToExport(const std::vector< std::pair< PCB_LAYER_ID, wxString > > &aLayersToExport)
Sets the list of layers to export to the specified vector.
Definition plotter.h:235
double m_iuPerDeviceUnit
Definition plotter.h:698
PCB_LAYER_ID m_layer
Definition plotter.h:731
RENDER_SETTINGS * RenderSettings()
Definition plotter.h:168
VECTOR2I m_plotOffset
Definition plotter.h:700
VECTOR2I m_penLastpos
Definition plotter.h:714
virtual VECTOR2D userToDeviceCoordinates(const VECTOR2I &aCoordinate)
Modify coordinates according to the orientation, scale factor, and offsets trace.
Definition plotter.cpp:93
virtual ~PLOTTER()
Definition plotter.cpp:69
double GetIUsPerDecimil() const
The IUs per decimil are an essential scaling factor when plotting; they are set and saved when establ...
Definition plotter.h:272
virtual void SetGerberCoordinatesFormat(int aResolution, bool aUseInches=false)
Definition plotter.h:573
bool GetPlotMirrored() const
Definition plotter.h:174
VECTOR2I m_paperSize
Definition plotter.h:722
virtual void FlashRegularPolygon(const VECTOR2I &aShapePos, int aDiameter, int aCornerCount, const EDA_ANGLE &aOrient, void *aData)=0
Flash a regular polygon.
virtual VECTOR2D userToDeviceSize(const VECTOR2I &size)
Modify size according to the plotter scale factors (VECTOR2I version, returns a VECTOR2D).
Definition plotter.cpp:118
virtual void Bookmark(const BOX2I &aBox, const wxString &aName, const wxString &aGroupName=wxEmptyString)
Create a bookmark to a symbol.
Definition plotter.h:529
virtual PLOT_FORMAT GetPlotterType() const =0
Return the effective plot engine in use.
virtual void ThickArc(const EDA_SHAPE &aArcShape, void *aData, int aWidth)
Definition plotter.cpp:582
virtual void SetTextMode(PLOT_TEXT_MODE mode)
Change the current text mode.
Definition plotter.h:568
virtual void Rect(const VECTOR2I &p1, const VECTOR2I &p2, FILL_T fill, int width, int aCornerRadius=0)=0
int GetPlotterArcHighDef() const
Definition plotter.h:275
char m_penState
Definition plotter.h:713
void Marker(const VECTOR2I &position, int diametre, unsigned aShapeId)
Draw a pattern shape number aShapeId, to coord position.
Definition plotter.cpp:365
virtual void BezierCurve(const VECTOR2I &aStart, const VECTOR2I &aControl1, const VECTOR2I &aControl2, const VECTOR2I &aEnd, int aTolerance, int aLineThickness)
Generic fallback: Cubic Bezier curve rendered as a polyline.
Definition plotter.cpp:232
wxString m_creator
Definition plotter.h:716
virtual void SetCreator(const wxString &aCreator)
Definition plotter.h:189
void markerHBar(const VECTOR2I &pos, int radius)
Plot a - bar centered on the position.
Definition plotter.cpp:337
int m_currentPenWidth
Definition plotter.h:712
virtual void HyperlinkBox(const BOX2I &aBox, const wxString &aDestinationURL)
Create a clickable hyperlink with a rectangular click area.
Definition plotter.h:507
double m_plotScale
Plot scale - chosen by the user (even implicitly with 'fit in a4')
Definition plotter.h:690
VECTOR2I GetPlotOffsetUserUnits()
Definition plotter.h:605
void ClearHeaderLinesList()
Remove all lines from the list of free lines to print at the beginning of the file.
Definition plotter.h:207
void markerCircle(const VECTOR2I &pos, int radius)
Plot a circle centered on the position.
Definition plotter.cpp:304
virtual void FlashPadTrapez(const VECTOR2I &aPadPos, const VECTOR2I *aCorners, const EDA_ANGLE &aPadOrient, void *aData)=0
Flash a trapezoidal pad.
bool GetColorMode() const
Definition plotter.h:165
PLOTTER(const PROJECT *aProject=nullptr)
Definition plotter.cpp:48
PAGE_INFO & PageSettings()
Definition plotter.h:171
virtual void SetViewport(const VECTOR2I &aOffset, double aIusPerDecimil, double aScale, bool aMirror)=0
Set the plot offset and scaling for the current plot.
void AddLineToHeader(const wxString &aExtraString)
Add a line to the list of free lines to print at the beginning of the file.
Definition plotter.h:199
FILE * m_outputFile
Output file.
Definition plotter.h:707
virtual void SetColorMode(bool aColorMode)
Plot in B/W or color.
Definition plotter.h:164
virtual void SetCurrentLineWidth(int width, void *aData=nullptr)=0
Set the line width for the next drawing.
void LineTo(const VECTOR2I &pos)
Definition plotter.h:314
virtual void StartBlock(void *aData)
calling this function allows one to define the beginning of a group of drawing items,...
Definition plotter.h:591
virtual void PenTo(const VECTOR2I &pos, char plume)=0
Moveto/lineto primitive, moves the 'pen' to the specified direction.
virtual void FlashPadCustom(const VECTOR2I &aPadPos, const VECTOR2I &aSize, const EDA_ANGLE &aPadOrient, SHAPE_POLY_SET *aPolygons, void *aData)=0
void PenFinish()
Definition plotter.h:325
static const int DO_NOT_SET_LINE_WIDTH
Definition plotter.h:140
virtual void ThickSegment(const VECTOR2I &start, const VECTOR2I &end, int width, void *aData)
Definition plotter.cpp:540
virtual void PlotText(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const TEXT_ATTRIBUTES &aAttributes, KIFONT::FONT *aFont=nullptr, const KIFONT::METRICS &aFontMetrics=KIFONT::METRICS::Default(), void *aData=nullptr)
Definition plotter.cpp:716
void markerLozenge(const VECTOR2I &position, int radius)
Plot a lozenge centered on the position.
Definition plotter.cpp:310
virtual void PlotPoly(const std::vector< VECTOR2I > &aCornerList, FILL_T aFill, int aWidth, void *aData)=0
Draw a polygon ( filled or not ).
virtual void ThickRect(const VECTOR2I &p1, const VECTOR2I &p2, int width, void *aData)
Definition plotter.cpp:607
virtual void FlashPadCircle(const VECTOR2I &aPadPos, int aDiameter, void *aData)=0
RENDER_SETTINGS * m_renderSettings
Definition plotter.h:726
virtual void Text(const VECTOR2I &aPos, const COLOR4D &aColor, const wxString &aText, const EDA_ANGLE &aOrient, const VECTOR2I &aSize, enum GR_TEXT_H_ALIGN_T aH_justify, enum GR_TEXT_V_ALIGN_T aV_justify, int aPenWidth, bool aItalic, bool aBold, bool aMultilineAllowed, KIFONT::FONT *aFont, const KIFONT::METRICS &aFontMetrics, void *aData=nullptr)
Draw text with the plotter.
Definition plotter.cpp:646
void markerBackSlash(const VECTOR2I &pos, int radius)
Plot a \ bar centered on the position.
Definition plotter.cpp:351
virtual void SetSubject(const wxString &aSubject)
Definition plotter.h:192
int GetPlotterArcLowDef() const
Definition plotter.h:274
bool m_negativeMode
Definition plotter.h:711
void SetPlotMirrored(bool aMirror)
Definition plotter.h:173
virtual void HyperlinkMenu(const BOX2I &aBox, const std::vector< wxString > &aDestURLs)
Create a clickable hyperlink menu with a rectangular click area.
Definition plotter.h:518
virtual void SetLayerPolarity(bool aPositive)
Set the current Gerber layer polarity to positive or negative by writing %LPD*% or %LPC*% to the Gerb...
Definition plotter.h:558
double m_IUsPerDecimil
Definition plotter.h:696
void markerVBar(const VECTOR2I &pos, int radius)
Plot a | bar centered on the position.
Definition plotter.cpp:358
wxString m_title
Definition plotter.h:718
void markerSquare(const VECTOR2I &position, int radius)
Plot a square centered on the position.
Definition plotter.cpp:276
virtual void ThickCircle(const VECTOR2I &pos, int diametre, int width, void *aData)
Definition plotter.cpp:613
virtual int GetCurrentLineWidth() const
Definition plotter.h:183
bool m_colorMode
Definition plotter.h:710
double GetDashMarkLenIU(int aLineWidth) const
Definition plotter.cpp:140
virtual void SetColor(const COLOR4D &color)=0
wxString m_filename
Definition plotter.h:717
virtual void Arc(const VECTOR2D &aStart, const VECTOR2D &aMid, const VECTOR2D &aEnd, FILL_T aFill, int aWidth)
Definition plotter.cpp:152
virtual void EndBlock(void *aData)
calling this function allows one to define the end of a group of drawing items for instance in SVG or...
Definition plotter.h:600
virtual DXF_OUTLINE_MODE GetDXFPlotMode() const
Definition plotter.h:110
virtual PLOT_TEXT_MODE GetTextMode() const
Definition plotter.h:111
Container for project specific data.
Definition project.h:66
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition title_block.h:41
FILL_T
Definition eda_shape.h:63
static const bool FILLED
Definition gr_basic.cpp:30
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:60
DXF_UNITS
Definition plotter.h:52
PLOT_TEXT_MODE
Which kind of text to output with the PSLIKE plotters.
Definition plotter.h:100
wxString GetDefaultPlotExtension(PLOT_FORMAT aFormat)
Return the default plot extension for a format.
DXF_LAYER_OUTPUT_MODE
Specifies the output mode for the DXF layer.
Definition plotter.h:123
DXF_OUTLINE_MODE
Options to draw items with thickness ( segments, arcs, circles, texts...)
Definition plotter.h:81
@ SKETCH
Definition plotter.h:82
@ FILLED
Definition plotter.h:83
PLOT_FORMAT
The set of supported output plot formats.
Definition plotter.h:64
@ LAST_FORMAT
Definition plotter.h:74
@ FIRST_FORMAT
Definition plotter.h:66
void PlotDrawingSheet(PLOTTER *plotter, const PROJECT *aProject, const TITLE_BLOCK &aTitleBlock, const PAGE_INFO &aPageInfo, const std::map< wxString, wxString > *aProperties, const wxString &aSheetNumber, int aSheetCount, const wxString &aSheetName, const wxString &aSheetPath, const wxString &aFilename, COLOR4D aColor=COLOR4D::UNSPECIFIED, bool aIsFirstPage=true, const wxString &aVariantName=wxEmptyString, const wxString &aVariantDesc=wxEmptyString)
@ INCH
Definition rs274x.cpp:62
LINE_STYLE
Dashed line types.
static const long long MM
int radius
VECTOR2I end
GR_TEXT_H_ALIGN_T
This is API surface mapped to common.types.HorizontalAlignment.
GR_TEXT_V_ALIGN_T
This is API surface mapped to common.types.VertialAlignment.
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:687
VECTOR2< double > VECTOR2D
Definition vector2d.h:686