28#define ARG_MODE_SEPARATE "--mode-separate"
29#define ARG_MODE_MULTIPAGE "--mode-multipage"
30#define ARG_MODE_SINGLE "--mode-single"
31#define ARG_NO_PROPERTY_POPUPS "--no-property-popups"
44 .help(
UTF8STDSTR(
_(
"Mirror the board (useful for trying to show bottom layers)" ) ) )
48 .help(
UTF8STDSTR(
_(
"Exclude the reference designator text" ) ) )
52 .help(
UTF8STDSTR(
_(
"Exclude the value text" ) ) )
56 .help(
UTF8STDSTR(
_(
"Include the border and title block" ) ) )
60 .help(
UTF8STDSTR(
_(
"Subtract soldermask from silkscreen" ) ) )
92 .default_value( std::string() )
93 .help(
UTF8STDSTR(
_(
"Color theme to use (will default to PCB Editor settings)" ) ) )
94 .metavar(
"THEME_NAME" );
103 _(
"Generates a single file with the output arg path acting as the complete "
104 "directory and filename path. COMMON_LAYER_LIST does not function in this "
105 "mode. Instead LAYER_LIST controls all layers plotted." ) ) )
109 .help(
UTF8STDSTR(
_(
"Plot the layers to individual PDF files" ) ) )
113 .help(
UTF8STDSTR(
_(
"Plot the layers to a single PDF file with multiple pages" ) ) )
119 .default_value( 1.0 )
123 .default_value( std::string() )
132 .help(
UTF8STDSTR(
_(
"Suppress footprint property popups" ) ) )
151 if( !wxFile::Exists( pdfJob->m_filename ) )
153 wxFprintf( stderr,
_(
"Board file does not exist or is not accessible\n" ) );
172 pdfJob->m_pdfFrontFPPropertyPopups =
false;
173 pdfJob->m_pdfBackFPPropertyPopups =
false;
183 if( bgColor != wxEmptyString )
184 pdfJob->m_pdfBackgroundColor = bgColor;
187 pdfJob->m_drillShapeOption =
static_cast<DRILL_MARKS>( drillShape );
193 if( argModeMulti && argModeSeparate )
195 wxFprintf( stderr,
_(
"Cannot use more than one mode flag\n" ) );
205 pdfJob->m_pdfSingle =
true;
207 else if( argModeSeparate )
209 else if( argModeSingle )
std::map< wxString, wxString > m_argDefineVars
Value of the drawing sheet arg if configured.
void addVariantsArg()
Set up the list of variants to output arguement.
argparse::ArgumentParser m_argParser
void addDefineArg()
Set up the drawing sheet arg used by many of the export commands.
wxString m_argDrawingSheet
Value of the drawing sheet arg if configured.
wxString m_argOutput
Value of the output arg if configured.
wxString m_argInput
Value of the common input arg if configured.
std::vector< wxString > m_argVariantNames
The list of variant names to output.
void addDrawingSheetArg()
Set up the drawing sheet arg used by many of the export commands.
int doPerform(KIWAY &aKiway) override
The internal handler that should be overloaded to implement command specific processing and work.
@ ALL_LAYERS_SEPARATE_FILE
@ ALL_LAYERS_ONE_FILE
DEPRECATED MODE.
@ ONE_PAGE_PER_LAYER_ONE_FILE
The most traditional output mode KiCad has had.
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
int ProcessJob(KIWAY::FACE_T aFace, JOB *aJob, REPORTER *aReporter=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr)
#define ARG_SKETCH_PADS_ON_FAB_LAYERS_DESC
#define ARG_INCLUDE_BORDER_TITLE
#define ARG_CROSSOUT_DNP_FPS_ON_FAB_LAYERS_DESC
#define ARG_CHECK_ZONES_DESC
#define ARG_SKETCH_PADS_ON_FAB_LAYERS
#define ARG_COMMON_LAYERS
#define ARG_SKETCH_DNP_FPS_ON_FAB_LAYERS_DESC
#define ARG_EXCLUDE_REFDES
#define ARG_BLACKANDWHITE_DESC
#define ARG_NEGATIVE_SHORT
#define ARG_SKETCH_PAD_NUMBERS
#define ARG_EXCLUDE_VALUE
#define ARG_BACKGROUND_COLOR
#define ARG_BLACKANDWHITE
#define ARG_CROSSOUT_DNP_FPS_ON_FAB_LAYERS
#define ARG_HIDE_DNP_FPS_ON_FAB_LAYERS
#define ARG_SUBTRACT_SOLDERMASK
#define ARG_BACKGROUND_COLOR_DESC
#define ARG_DRILL_SHAPE_OPTION_DESC
#define ARG_SKETCH_PAD_NUMBERS_DESC
#define ARG_HIDE_DNP_FPS_ON_FAB_LAYERS_DESC
#define ARG_SKETCH_DNP_FPS_ON_FAB_LAYERS
#define ARG_DRILL_SHAPE_OPTION
#define ARG_NEGATIVE_DESC
#define ARG_MODE_MULTIPAGE
#define ARG_MODE_SEPARATE
#define ARG_NO_PROPERTY_POPUPS
static const int ERR_ARGS
static const int ERR_INVALID_INPUT_FILE
DRILL_MARKS
Plots and prints can show holes in pads and vias 3 options are available:
wxString From_UTF8(const char *cstring)
PCB_EXPORT_BASE_COMMAND(const std::string &aName, IO_TYPE aInputType=IO_TYPE::FILE, IO_TYPE aOutputType=IO_TYPE::FILE)
void addCommonLayersArg()