2024-07-15 18:20:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
#include <jobs/job_export_pcb_plot.h>
|
|
|
|
|
|
|
|
JOB_EXPORT_PCB_PLOT::JOB_EXPORT_PCB_PLOT( PLOT_FORMAT aFormat, const std::string& aType,
|
2024-11-04 20:51:15 -05:00
|
|
|
bool aOutputIsDirectory )
|
2024-12-28 18:49:01 -05:00
|
|
|
: JOB( aType, aOutputIsDirectory ),
|
2024-07-15 18:20:13 -04:00
|
|
|
m_plotFormat( aFormat ),
|
2024-12-28 18:49:01 -05:00
|
|
|
m_filename(),
|
|
|
|
m_colorTheme(),
|
|
|
|
m_drawingSheet(),
|
|
|
|
m_mirror( false ),
|
|
|
|
m_blackAndWhite( false ),
|
|
|
|
m_negative( false ),
|
|
|
|
m_sketchPadsOnFabLayers( false ),
|
|
|
|
m_hideDNPFPsOnFabLayers( false ),
|
|
|
|
m_sketchDNPFPsOnFabLayers( true ),
|
|
|
|
m_crossoutDNPFPsOnFabLayers( true ),
|
|
|
|
m_plotFootprintValues( true ),
|
|
|
|
m_plotRefDes( true ),
|
|
|
|
m_plotDrawingSheet( true ),
|
|
|
|
m_plotPadNumbers( false ),
|
|
|
|
m_plotInvisibleText( false ),
|
|
|
|
m_printMaskLayer(),
|
2024-12-08 20:54:49 -05:00
|
|
|
m_printMaskLayersToIncludeOnAllLayers(),
|
2024-12-28 18:49:01 -05:00
|
|
|
m_drillShapeOption( DRILL_MARKS::FULL_DRILL_SHAPE ),
|
|
|
|
m_useDrillOrigin( false )
|
2024-07-15 18:20:13 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|