2018-02-28 09:44:22 +00:00
///////////////////////////////////////////////////////////////////////////
2023-08-15 15:56:46 +00:00
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
2018-02-28 09:44:22 +00:00
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
2022-12-13 20:47:28 +00:00
# include "widgets/std_bitmap_button.h"
2022-09-03 18:29:02 +00:00
# include "widgets/wx_html_report_panel.h"
2018-02-28 09:44:22 +00:00
# include "dialog_plot_base.h"
///////////////////////////////////////////////////////////////////////////
DIALOG_PLOT_BASE : : DIALOG_PLOT_BASE ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & pos , const wxSize & size , long style ) : DIALOG_SHIM ( parent , id , title , pos , size , style )
{
this - > SetSizeHints ( wxSize ( - 1 , - 1 ) , wxDefaultSize ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_MainSizer = new wxBoxSizer ( wxVERTICAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxBoxSizer * bupperSizer ;
bupperSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_staticTextPlotFmt = new wxStaticText ( this , wxID_ANY , _ ( " Plot format: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextPlotFmt - > Wrap ( - 1 ) ;
2018-06-13 12:20:29 +00:00
bupperSizer - > Add ( m_staticTextPlotFmt , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxString m_plotFormatOptChoices [ ] = { _ ( " Gerber " ) , _ ( " Postscript " ) , _ ( " SVG " ) , _ ( " DXF " ) , _ ( " HPGL " ) , _ ( " PDF " ) } ;
int m_plotFormatOptNChoices = sizeof ( m_plotFormatOptChoices ) / sizeof ( wxString ) ;
m_plotFormatOpt = new wxChoice ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_plotFormatOptNChoices , m_plotFormatOptChoices , 0 ) ;
m_plotFormatOpt - > SetSelection ( 0 ) ;
2018-06-13 12:20:29 +00:00
bupperSizer - > Add ( m_plotFormatOpt , 0 , wxALL , 6 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
bupperSizer - > Add ( 0 , 0 , 0 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_staticTextDir = new wxStaticText ( this , wxID_ANY , _ ( " Output directory: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextDir - > Wrap ( - 1 ) ;
2018-06-13 12:20:29 +00:00
bupperSizer - > Add ( m_staticTextDir , 0 , wxALL | wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_outputDirectoryName = new wxTextCtrl ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_outputDirectoryName - > SetToolTip ( _ ( " Target directory for plot files. Can be absolute or relative to the board file location. " ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
bupperSizer - > Add ( m_outputDirectoryName , 1 , wxEXPAND | wxTOP | wxBOTTOM , 5 ) ;
2018-12-08 16:46:41 +00:00
2022-12-13 20:47:28 +00:00
m_browseButton = new STD_BITMAP_BUTTON ( this , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxSize ( - 1 , - 1 ) , wxBU_AUTODRAW | 0 ) ;
bupperSizer - > Add ( m_browseButton , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_MainSizer - > Add ( bupperSizer , 0 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
bmiddleSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2021-10-27 15:36:43 +00:00
m_LayersSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Include Layers " ) ) , wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxArrayString m_layerCheckListBoxChoices ;
m_layerCheckListBox = new wxCheckListBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_layerCheckListBoxChoices , 0 ) ;
m_layerCheckListBox - > SetMinSize ( wxSize ( 150 , - 1 ) ) ;
2018-12-08 16:46:41 +00:00
2023-11-06 19:56:20 +00:00
m_LayersSizer - > Add ( m_layerCheckListBox , 1 , wxALL | wxEXPAND , 3 ) ;
2018-12-08 16:46:41 +00:00
2023-11-06 19:56:20 +00:00
bmiddleSizer - > Add ( m_LayersSizer , 1 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_PlotOptionsSizer = new wxBoxSizer ( wxVERTICAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxStaticBoxSizer * sbOptionsSizer ;
sbOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " General Options " ) ) , wxVERTICAL ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
wxGridBagSizer * gbSizer1 ;
gbSizer1 = new wxGridBagSizer ( 3 , 0 ) ;
gbSizer1 - > SetFlexibleDirection ( wxHORIZONTAL ) ;
gbSizer1 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2018-12-08 16:46:41 +00:00
2023-01-11 20:29:16 +00:00
m_plotSheetRef = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Plot drawing sheet " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-06-13 12:20:29 +00:00
m_plotSheetRef - > SetMinSize ( wxSize ( 280 , - 1 ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer1 - > Add ( m_plotSheetRef , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
m_plotFootprintValues = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Plot footprint values " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_plotFootprintValues - > SetValue ( true ) ;
gbSizer1 - > Add ( m_plotFootprintValues , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
m_plotFootprintRefs = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , ID_PRINT_REF , _ ( " Plot reference designators " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_plotFootprintRefs - > SetValue ( true ) ;
gbSizer1 - > Add ( m_plotFootprintRefs , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
m_plotFootprintText = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Plot footprint text " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_plotFootprintText - > SetValue ( true ) ;
gbSizer1 - > Add ( m_plotFootprintText , wxGBPosition ( 3 , 0 ) , wxGBSpan ( 1 , 1 ) , 0 , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_plotInvisibleText = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Force plotting of invisible values / refs " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-03-17 16:08:29 +00:00
m_plotInvisibleText - > SetToolTip ( _ ( " Force plot invisible footprint values and reference designators " ) ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
gbSizer1 - > Add ( m_plotInvisibleText , wxGBPosition ( 4 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2021-10-27 15:36:43 +00:00
m_sketchPadsOnFabLayers = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , ID_ALLOW_PRINT_PAD_ON_SILKSCREEN , _ ( " Sketch pads on fabrication layers " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-05-27 01:14:08 +00:00
m_sketchPadsOnFabLayers - > SetToolTip ( _ ( " Include pad outlines on F.Fab and B.Fab layers when plotting " ) ) ;
2018-12-08 16:46:41 +00:00
2020-05-01 16:24:01 +00:00
gbSizer1 - > Add ( m_sketchPadsOnFabLayers , wxGBPosition ( 5 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
m_zoneFillCheck = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Check zone fills before plotting " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
gbSizer1 - > Add ( m_zoneFillCheck , wxGBPosition ( 6 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2023-08-04 16:28:36 +00:00
m_tentVias = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Tent vias " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_tentVias - > SetToolTip ( _ ( " Tented vias: not plotted on soldermask layer \n Not tented: vias are plotted on soldermask layer \n (Solder mask is a negative layer) " ) ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
gbSizer1 - > Add ( m_tentVias , wxGBPosition ( 6 , 1 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
drillMarksLabel = new wxStaticText ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Drill marks: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
drillMarksLabel - > Wrap ( - 1 ) ;
gbSizer1 - > Add ( drillMarksLabel , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxString m_drillShapeOptChoices [ ] = { _ ( " None " ) , _ ( " Small " ) , _ ( " Actual size " ) } ;
int m_drillShapeOptNChoices = sizeof ( m_drillShapeOptChoices ) / sizeof ( wxString ) ;
m_drillShapeOpt = new wxChoice ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_drillShapeOptNChoices , m_drillShapeOptChoices , 0 ) ;
m_drillShapeOpt - > SetSelection ( 0 ) ;
2018-06-13 12:20:29 +00:00
gbSizer1 - > Add ( m_drillShapeOpt , wxGBPosition ( 0 , 2 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
scalingLabel = new wxStaticText ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Scaling: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
scalingLabel - > Wrap ( - 1 ) ;
gbSizer1 - > Add ( scalingLabel , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxString m_scaleOptChoices [ ] = { _ ( " Auto " ) , _ ( " 1:1 " ) , _ ( " 3:2 " ) , _ ( " 2:1 " ) , _ ( " 3:1 " ) } ;
int m_scaleOptNChoices = sizeof ( m_scaleOptChoices ) / sizeof ( wxString ) ;
m_scaleOpt = new wxChoice ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_scaleOptNChoices , m_scaleOptChoices , 0 ) ;
m_scaleOpt - > SetSelection ( 1 ) ;
2018-06-13 12:20:29 +00:00
gbSizer1 - > Add ( m_scaleOpt , wxGBPosition ( 1 , 2 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
plotModeLabel = new wxStaticText ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Plot mode: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
plotModeLabel - > Wrap ( - 1 ) ;
gbSizer1 - > Add ( plotModeLabel , wxGBPosition ( 2 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxString m_plotModeOptChoices [ ] = { _ ( " Filled " ) , _ ( " Sketch " ) } ;
int m_plotModeOptNChoices = sizeof ( m_plotModeOptChoices ) / sizeof ( wxString ) ;
m_plotModeOpt = new wxChoice ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_plotModeOptNChoices , m_plotModeOptChoices , 0 ) ;
m_plotModeOpt - > SetSelection ( 0 ) ;
2018-06-13 12:20:29 +00:00
gbSizer1 - > Add ( m_plotModeOpt , wxGBPosition ( 2 , 2 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2023-08-15 15:56:46 +00:00
m_useAuxOriginCheckBox = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Use drill/place file origin " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_useAuxOriginCheckBox - > SetToolTip ( _ ( " Use the drill/place file origin as the coordinate origin for plotted files " ) ) ;
gbSizer1 - > Add ( m_useAuxOriginCheckBox , wxGBPosition ( 3 , 1 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-06-13 12:20:29 +00:00
m_plotMirrorOpt = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , ID_MIROR_OPT , _ ( " Mirrored plot " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2023-08-15 15:56:46 +00:00
gbSizer1 - > Add ( m_plotMirrorOpt , wxGBPosition ( 4 , 1 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_plotPSNegativeOpt = new wxCheckBox ( sbOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Negative plot " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2023-08-15 15:56:46 +00:00
gbSizer1 - > Add ( m_plotPSNegativeOpt , wxGBPosition ( 5 , 1 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
sbOptionsSizer - > Add ( gbSizer1 , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PlotOptionsSizer - > Add ( sbOptionsSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2020-06-05 14:06:03 +00:00
m_SizerSolderMaskAlert = new wxBoxSizer ( wxHORIZONTAL ) ;
m_bitmapAlert = new wxStaticBitmap ( this , wxID_ANY , wxArtProvider : : GetBitmap ( wxART_WARNING , wxART_CMN_DIALOG ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-10-09 06:40:21 +00:00
m_SizerSolderMaskAlert - > Add ( m_bitmapAlert , 0 , wxEXPAND | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2020-06-05 14:06:03 +00:00
2020-09-20 20:17:33 +00:00
wxBoxSizer * bSizerWarningText ;
bSizerWarningText = new wxBoxSizer ( wxVERTICAL ) ;
2021-10-27 15:36:43 +00:00
m_staticTextAlert = new wxStaticText ( this , wxID_ANY , _ ( " Global solder mask minimum width and/or margin are not set to 0. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-05 14:06:03 +00:00
m_staticTextAlert - > Wrap ( - 1 ) ;
2021-05-16 07:11:13 +00:00
bSizerWarningText - > Add ( m_staticTextAlert , 0 , wxTOP | wxLEFT , 5 ) ;
2021-10-27 15:36:43 +00:00
m_staticTextAlert1 = new wxStaticText ( this , wxID_ANY , _ ( " Most board manufacturers expect 0 and use their own constraints for solder mask minimum width. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2021-05-16 07:11:13 +00:00
m_staticTextAlert1 - > Wrap ( 580 ) ;
2022-04-18 21:55:44 +00:00
bSizerWarningText - > Add ( m_staticTextAlert1 , 0 , wxTOP | wxLEFT , 5 ) ;
2020-09-20 20:17:33 +00:00
wxBoxSizer * bSizerSecondLine ;
bSizerSecondLine = new wxBoxSizer ( wxHORIZONTAL ) ;
bSizerSecondLine - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2021-02-18 15:49:35 +00:00
m_boardSetup = new wxHyperlinkCtrl ( this , wxID_ANY , _ ( " Board setup " ) , wxEmptyString , wxDefaultPosition , wxDefaultSize , wxHL_DEFAULT_STYLE ) ;
m_boardSetup - > SetToolTip ( _ ( " File > Board Setup... " ) ) ;
2022-04-02 13:36:20 +00:00
bSizerSecondLine - > Add ( m_boardSetup , 0 , wxLEFT | wxRIGHT | wxTOP , 2 ) ;
2020-09-20 20:17:33 +00:00
bSizerWarningText - > Add ( bSizerSecondLine , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
m_SizerSolderMaskAlert - > Add ( bSizerWarningText , 1 , wxEXPAND , 5 ) ;
2020-06-05 14:06:03 +00:00
2020-09-20 20:17:33 +00:00
m_PlotOptionsSizer - > Add ( m_SizerSolderMaskAlert , 1 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2020-06-05 14:06:03 +00:00
2018-02-28 09:44:22 +00:00
m_GerberOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Gerber Options " ) ) , wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
wxGridBagSizer * gbSizer2 ;
gbSizer2 = new wxGridBagSizer ( 3 , 0 ) ;
gbSizer2 - > SetFlexibleDirection ( wxHORIZONTAL ) ;
gbSizer2 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_useGerberExtensions = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Use Protel filename extensions " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_useGerberExtensions - > SetToolTip ( _ ( " Use Protel Gerber extensions (.GBL, .GTL, etc...) \n No longer recommended. The official extension is .gbr " ) ) ;
2018-06-13 12:20:29 +00:00
m_useGerberExtensions - > SetMinSize ( wxSize ( 280 , - 1 ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer2 - > Add ( m_useGerberExtensions , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_generateGerberJobFile = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Generate Gerber job file " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-05 14:06:03 +00:00
m_generateGerberJobFile - > SetValue ( true ) ;
2018-02-28 09:44:22 +00:00
m_generateGerberJobFile - > SetToolTip ( _ ( " Generate a Gerber job file that contains info about the board, \n and the list of generated Gerber plot files " ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer2 - > Add ( m_generateGerberJobFile , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_subtractMaskFromSilk = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Subtract soldermask from silkscreen " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_subtractMaskFromSilk - > SetToolTip ( _ ( " Remove silkscreen from areas without soldermask " ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer2 - > Add ( m_subtractMaskFromSilk , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
coordFormatLabel = new wxStaticText ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Coordinate format: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
coordFormatLabel - > Wrap ( - 1 ) ;
gbSizer2 - > Add ( coordFormatLabel , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
wxString m_coordFormatCtrlChoices [ ] = { _ ( " 4.5, unit mm " ) , _ ( " 4.6, unit mm " ) } ;
int m_coordFormatCtrlNChoices = sizeof ( m_coordFormatCtrlChoices ) / sizeof ( wxString ) ;
m_coordFormatCtrl = new wxChoice ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_coordFormatCtrlNChoices , m_coordFormatCtrlChoices , 0 ) ;
2021-10-27 15:36:43 +00:00
m_coordFormatCtrl - > SetSelection ( 1 ) ;
2018-06-13 12:20:29 +00:00
gbSizer2 - > Add ( m_coordFormatCtrl , wxGBPosition ( 0 , 2 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2020-10-10 12:39:54 +00:00
m_useGerberX2Format = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Use extended X2 format (recommended) " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-12-08 16:46:41 +00:00
m_useGerberX2Format - > SetToolTip ( _ ( " Use X2 Gerber file format. \n Include mainly X2 attributes in Gerber headers. \n If not checked, use X1 format. \n In X1 format, these attributes are included as comments in files. " ) ) ;
gbSizer2 - > Add ( m_useGerberX2Format , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
m_useGerberNetAttributes = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Include netlist attributes " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2021-10-27 15:36:43 +00:00
m_useGerberNetAttributes - > SetToolTip ( _ ( " Include netlist metadata and aperture attributes in Gerber files. \n They are comments in the X1 format. \n Used to check connectivity in CAM tools and Gerber viewers. " ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer2 - > Add ( m_useGerberNetAttributes , wxGBPosition ( 2 , 1 ) , wxGBSpan ( 1 , 2 ) , wxLEFT | wxALIGN_CENTER_VERTICAL , 30 ) ;
2018-12-08 16:46:41 +00:00
2021-10-27 15:36:43 +00:00
m_disableApertMacros = new wxCheckBox ( m_GerberOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Disable aperture macros (not recommended) " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-10-10 12:39:54 +00:00
m_disableApertMacros - > SetToolTip ( _ ( " Disable aperture macros in Gerber files \n Use *only* for broken Gerber viewers. " ) ) ;
gbSizer2 - > Add ( m_disableApertMacros , wxGBPosition ( 3 , 1 ) , wxGBSpan ( 1 , 2 ) , wxLEFT | wxALIGN_CENTER_VERTICAL , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
gbSizer2 - > AddGrowableCol ( 2 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_GerberOptionsSizer - > Add ( gbSizer2 , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PlotOptionsSizer - > Add ( m_GerberOptionsSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_HPGLOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " HPGL Options " ) ) , wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_hpglPenLabel = new wxStaticText ( m_HPGLOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Default pen size: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_hpglPenLabel - > Wrap ( - 1 ) ;
m_HPGLOptionsSizer - > Add ( m_hpglPenLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_hpglPenCtrl = new wxTextCtrl ( m_HPGLOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_HPGLOptionsSizer - > Add ( m_hpglPenCtrl , 5 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_hpglPenUnits = new wxStaticText ( m_HPGLOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_hpglPenUnits - > Wrap ( - 1 ) ;
m_HPGLOptionsSizer - > Add ( m_hpglPenUnits , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_HPGLOptionsSizer - > Add ( 0 , 0 , 11 , wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PlotOptionsSizer - > Add ( m_HPGLOptionsSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PSOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Postscript Options " ) ) , wxVERTICAL ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
wxFlexGridSizer * fgSizer2 ;
2023-04-30 17:09:40 +00:00
fgSizer2 = new wxFlexGridSizer ( 0 , 6 , 5 , 0 ) ;
2018-06-13 12:20:29 +00:00
fgSizer2 - > AddGrowableCol ( 1 ) ;
fgSizer2 - > AddGrowableCol ( 4 ) ;
fgSizer2 - > SetFlexibleDirection ( wxBOTH ) ;
fgSizer2 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2018-12-08 16:46:41 +00:00
fgSizer2 - > SetMinSize ( wxSize ( 60 , - 1 ) ) ;
2018-06-13 12:20:29 +00:00
m_fineAdjustXLabel = new wxStaticText ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " X scale factor: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_fineAdjustXLabel - > Wrap ( - 1 ) ;
2023-10-19 11:35:10 +00:00
fgSizer2 - > Add ( m_fineAdjustXLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 1 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_fineAdjustXCtrl = new wxTextCtrl ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-10-20 20:09:13 +00:00
m_fineAdjustXCtrl - > SetToolTip ( _ ( " Set global X scale adjust for exact scale PostScript output. " ) ) ;
2018-12-08 16:46:41 +00:00
2023-04-30 17:09:40 +00:00
fgSizer2 - > Add ( m_fineAdjustXCtrl , 0 , wxEXPAND | wxRIGHT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
fgSizer2 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_fineAdjustYLabel = new wxStaticText ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Y scale factor: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_fineAdjustYLabel - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( m_fineAdjustYLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_fineAdjustYCtrl = new wxTextCtrl ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-10-20 20:09:13 +00:00
m_fineAdjustYCtrl - > SetToolTip ( _ ( " Set global Y scale adjust for exact scale PostScript output. " ) ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
fgSizer2 - > Add ( m_fineAdjustYCtrl , 0 , wxEXPAND | wxRIGHT | wxLEFT , 30 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
fgSizer2 - > Add ( 0 , 0 , 1 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_widthAdjustLabel = new wxStaticText ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Track width correction: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_widthAdjustLabel - > Wrap ( - 1 ) ;
2020-06-05 14:06:03 +00:00
fgSizer2 - > Add ( m_widthAdjustLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_widthAdjustCtrl = new wxTextCtrl ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-10-30 19:49:32 +00:00
m_widthAdjustCtrl - > SetToolTip ( _ ( " Set global width correction for exact width PostScript output. \n These width correction is intended to compensate tracks width and also pads and vias size errors. \n The reasonable width correction value must be in a range of [-(MinTrackWidth-1), +(MinClearanceValue-1)]. " ) ) ;
2018-12-08 16:46:41 +00:00
2023-04-30 17:09:40 +00:00
fgSizer2 - > Add ( m_widthAdjustCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_widthAdjustUnits = new wxStaticText ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_widthAdjustUnits - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( m_widthAdjustUnits , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM , 5 ) ;
2018-12-08 16:46:41 +00:00
2023-04-30 17:09:40 +00:00
m_PSOptionsSizer - > Add ( fgSizer2 , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_forcePSA4OutputOpt = new wxCheckBox ( m_PSOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Force A4 output " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2023-10-19 11:35:10 +00:00
m_PSOptionsSizer - > Add ( m_forcePSA4OutputOpt , 0 , wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PlotOptionsSizer - > Add ( m_PSOptionsSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2020-06-05 14:06:03 +00:00
m_SizerDXF_options = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " DXF Options " ) ) , wxHORIZONTAL ) ;
2023-04-30 17:09:40 +00:00
wxGridBagSizer * gbSizer5 ;
gbSizer5 = new wxGridBagSizer ( 5 , 5 ) ;
gbSizer5 - > SetFlexibleDirection ( wxBOTH ) ;
gbSizer5 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2018-12-08 16:46:41 +00:00
2019-06-13 00:17:47 +00:00
m_DXF_plotModeOpt = new wxCheckBox ( m_SizerDXF_options - > GetStaticBox ( ) , wxID_ANY , _ ( " Plot graphic items using their contours " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-12-08 16:46:41 +00:00
m_DXF_plotModeOpt - > SetValue ( true ) ;
2019-06-13 00:17:47 +00:00
m_DXF_plotModeOpt - > SetToolTip ( _ ( " Uncheck to plot graphic items using their center lines " ) ) ;
2018-12-08 16:46:41 +00:00
2023-04-30 17:09:40 +00:00
gbSizer5 - > Add ( m_DXF_plotModeOpt , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-06-13 00:17:47 +00:00
DXF_exportUnitsLabel = new wxStaticText ( m_SizerDXF_options - > GetStaticBox ( ) , wxID_ANY , _ ( " Export units: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
DXF_exportUnitsLabel - > Wrap ( - 1 ) ;
2023-04-30 17:09:40 +00:00
gbSizer5 - > Add ( DXF_exportUnitsLabel , wxGBPosition ( 0 , 2 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 40 ) ;
2019-06-13 00:17:47 +00:00
wxString m_DXF_plotUnitsChoices [ ] = { _ ( " Inches " ) , _ ( " Millimeters " ) } ;
int m_DXF_plotUnitsNChoices = sizeof ( m_DXF_plotUnitsChoices ) / sizeof ( wxString ) ;
m_DXF_plotUnits = new wxChoice ( m_SizerDXF_options - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_DXF_plotUnitsNChoices , m_DXF_plotUnitsChoices , 0 ) ;
m_DXF_plotUnits - > SetSelection ( 0 ) ;
m_DXF_plotUnits - > SetToolTip ( _ ( " The units to use for the exported DXF file " ) ) ;
2023-04-30 17:09:40 +00:00
gbSizer5 - > Add ( m_DXF_plotUnits , wxGBPosition ( 0 , 3 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
m_DXF_plotTextStrokeFontOpt = new wxCheckBox ( m_SizerDXF_options - > GetStaticBox ( ) , wxID_ANY , _ ( " Use KiCad font to plot text " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_DXF_plotTextStrokeFontOpt - > SetToolTip ( _ ( " Check to use KiCad stroke font \n Uncheck to plot single-line ASCII texts as editable text (using DXF font) " ) ) ;
gbSizer5 - > Add ( m_DXF_plotTextStrokeFontOpt , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 2 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-06-13 00:17:47 +00:00
2023-04-30 17:09:40 +00:00
m_SizerDXF_options - > Add ( gbSizer5 , 1 , wxEXPAND | wxBOTTOM , 5 ) ;
2019-06-13 00:17:47 +00:00
2018-12-08 16:46:41 +00:00
2018-06-13 12:20:29 +00:00
m_PlotOptionsSizer - > Add ( m_SizerDXF_options , 0 , wxEXPAND | wxALL , 5 ) ;
2018-12-08 16:46:41 +00:00
2020-04-20 22:02:03 +00:00
m_svgOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " SVG Options " ) ) , wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2022-10-25 02:45:24 +00:00
wxGridBagSizer * gbSizer3 ;
2023-04-30 17:09:40 +00:00
gbSizer3 = new wxGridBagSizer ( 5 , 0 ) ;
2022-10-25 02:45:24 +00:00
gbSizer3 - > SetFlexibleDirection ( wxBOTH ) ;
gbSizer3 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2020-04-20 22:02:03 +00:00
svgPrecisionLabel = new wxStaticText ( m_svgOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Precision: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
svgPrecisionLabel - > Wrap ( - 1 ) ;
2023-04-30 17:09:40 +00:00
gbSizer3 - > Add ( svgPrecisionLabel , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-04-20 22:02:03 +00:00
2022-01-28 17:06:47 +00:00
m_svgPrecsision = new wxSpinCtrl ( m_svgOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , wxSP_ARROW_KEYS , 3 , 6 , 4 ) ;
m_svgPrecsision - > SetToolTip ( _ ( " This number defines how many digits are exported that are below 1 mm. \n User unit is 10^-<N> mm \n Choose 4 if you are not sure. " ) ) ;
2020-04-20 22:02:03 +00:00
2023-04-30 17:09:40 +00:00
gbSizer3 - > Add ( m_svgPrecsision , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
m_staticText18 = new wxStaticText ( m_svgOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Output mode: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText18 - > Wrap ( - 1 ) ;
gbSizer3 - > Add ( m_staticText18 , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2022-10-25 02:45:24 +00:00
2023-01-11 20:29:16 +00:00
wxString m_SVGColorChoiceChoices [ ] = { _ ( " Color " ) , _ ( " Black and white " ) } ;
int m_SVGColorChoiceNChoices = sizeof ( m_SVGColorChoiceChoices ) / sizeof ( wxString ) ;
m_SVGColorChoice = new wxChoice ( m_svgOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_SVGColorChoiceNChoices , m_SVGColorChoiceChoices , 0 ) ;
m_SVGColorChoice - > SetSelection ( 0 ) ;
2023-04-30 17:09:40 +00:00
gbSizer3 - > Add ( m_SVGColorChoice , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2022-10-25 02:45:24 +00:00
2023-04-30 17:09:40 +00:00
m_svgOptionsSizer - > Add ( gbSizer3 , 1 , wxEXPAND | wxBOTTOM , 5 ) ;
2020-04-20 22:02:03 +00:00
2020-10-08 16:17:55 +00:00
m_PlotOptionsSizer - > Add ( m_svgOptionsSizer , 1 , wxEXPAND | wxALL , 5 ) ;
2020-04-20 22:02:03 +00:00
2023-01-11 20:29:16 +00:00
m_PDFOptionsSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " PDF Options " ) ) , wxHORIZONTAL ) ;
2022-10-25 23:06:05 +00:00
2023-01-11 20:29:16 +00:00
wxGridBagSizer * gbSizer4 ;
2023-04-30 17:09:40 +00:00
gbSizer4 = new wxGridBagSizer ( 5 , 0 ) ;
2023-01-11 20:29:16 +00:00
gbSizer4 - > SetFlexibleDirection ( wxBOTH ) ;
gbSizer4 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2022-10-25 23:06:05 +00:00
2023-04-30 17:09:40 +00:00
m_staticText19 = new wxStaticText ( m_PDFOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Output mode: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText19 - > Wrap ( - 1 ) ;
gbSizer4 - > Add ( m_staticText19 , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2023-01-11 20:29:16 +00:00
wxString m_PDFColorChoiceChoices [ ] = { _ ( " Color " ) , _ ( " Black and white " ) } ;
int m_PDFColorChoiceNChoices = sizeof ( m_PDFColorChoiceChoices ) / sizeof ( wxString ) ;
m_PDFColorChoice = new wxChoice ( m_PDFOptionsSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_PDFColorChoiceNChoices , m_PDFColorChoiceChoices , 0 ) ;
m_PDFColorChoice - > SetSelection ( 0 ) ;
2023-04-30 17:09:40 +00:00
gbSizer4 - > Add ( m_PDFColorChoice , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2023-01-11 20:29:16 +00:00
2023-04-30 17:09:40 +00:00
m_frontFPPropertyPopups = new wxCheckBox ( m_PDFOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Generate property popups for front footprints " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
gbSizer4 - > Add ( m_frontFPPropertyPopups , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 2 ) , wxRIGHT | wxLEFT , 5 ) ;
m_backFPPropertyPopups = new wxCheckBox ( m_PDFOptionsSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Generate property popups for back footprints " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
gbSizer4 - > Add ( m_backFPPropertyPopups , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 2 ) , wxRIGHT | wxLEFT , 5 ) ;
2023-01-11 20:29:16 +00:00
2023-04-30 17:09:40 +00:00
m_PDFOptionsSizer - > Add ( gbSizer4 , 1 , wxEXPAND | wxBOTTOM , 5 ) ;
2022-10-25 23:06:05 +00:00
m_PlotOptionsSizer - > Add ( m_PDFOptionsSizer , 1 , wxALL | wxEXPAND , 5 ) ;
2020-04-20 22:02:03 +00:00
bmiddleSizer - > Add ( m_PlotOptionsSizer , 0 , 0 , 6 ) ;
2018-12-08 16:46:41 +00:00
2018-08-15 13:29:53 +00:00
m_MainSizer - > Add ( bmiddleSizer , 0 , wxEXPAND | wxALL , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
wxBoxSizer * sbSizerMsg ;
sbSizerMsg = new wxBoxSizer ( wxVERTICAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_messagesPanel = new WX_HTML_REPORT_PANEL ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
m_messagesPanel - > SetMinSize ( wxSize ( - 300 , 150 ) ) ;
2018-12-08 16:46:41 +00:00
2018-08-15 13:29:53 +00:00
sbSizerMsg - > Add ( m_messagesPanel , 1 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_MainSizer - > Add ( sbSizerMsg , 1 , wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_sizerButtons = new wxBoxSizer ( wxHORIZONTAL ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_buttonDRC = new wxButton ( this , wxID_ANY , _ ( " Run DRC... " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_sizerButtons - > Add ( m_buttonDRC , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 10 ) ;
2018-12-08 16:46:41 +00:00
2020-03-06 12:04:47 +00:00
m_DRCExclusionsWarning = new wxStaticText ( this , wxID_ANY , _ ( " (%d known DRC violations; %d exclusions) " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_DRCExclusionsWarning - > Wrap ( - 1 ) ;
m_sizerButtons - > Add ( m_DRCExclusionsWarning , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2018-02-28 09:44:22 +00:00
m_sdbSizer1 = new wxStdDialogButtonSizer ( ) ;
m_sdbSizer1OK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1OK ) ;
m_sdbSizer1Apply = new wxButton ( this , wxID_APPLY ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1Apply ) ;
m_sdbSizer1Cancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1Cancel ) ;
m_sdbSizer1 - > Realize ( ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
m_sizerButtons - > Add ( m_sdbSizer1 , 1 , wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-10-29 16:33:59 +00:00
m_MainSizer - > Add ( m_sizerButtons , 0 , wxALL | wxEXPAND , 5 ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
this - > SetSizer ( m_MainSizer ) ;
this - > Layout ( ) ;
2020-10-23 01:59:37 +00:00
m_MainSizer - > Fit ( this ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
this - > Centre ( wxBOTH ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
// Connect Events
this - > Connect ( wxEVT_INIT_DIALOG , wxInitDialogEventHandler ( DIALOG_PLOT_BASE : : OnInitDialog ) ) ;
m_plotFormatOpt - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : SetPlotFormat ) , NULL , this ) ;
m_browseButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnOutputDirectoryBrowseClicked ) , NULL , this ) ;
2023-08-15 15:56:46 +00:00
m_plotFootprintValues - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPValues ) , NULL , this ) ;
m_plotFootprintRefs - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPRefs ) , NULL , this ) ;
m_plotFootprintText - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPText ) , NULL , this ) ;
2018-02-28 09:44:22 +00:00
m_scaleOpt - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnSetScaleOpt ) , NULL , this ) ;
2020-09-20 20:17:33 +00:00
m_boardSetup - > Connect ( wxEVT_COMMAND_HYPERLINK , wxHyperlinkEventHandler ( DIALOG_PLOT_BASE : : onBoardSetup ) , NULL , this ) ;
2018-12-08 16:46:41 +00:00
m_useGerberX2Format - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnGerberX2Checked ) , NULL , this ) ;
2018-02-28 09:44:22 +00:00
m_DXF_plotModeOpt - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnChangeDXFPlotMode ) , NULL , this ) ;
m_buttonDRC - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onRunDRC ) , NULL , this ) ;
m_sdbSizer1Apply - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : CreateDrillFile ) , NULL , this ) ;
m_sdbSizer1OK - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : Plot ) , NULL , this ) ;
}
DIALOG_PLOT_BASE : : ~ DIALOG_PLOT_BASE ( )
{
// Disconnect Events
this - > Disconnect ( wxEVT_INIT_DIALOG , wxInitDialogEventHandler ( DIALOG_PLOT_BASE : : OnInitDialog ) ) ;
m_plotFormatOpt - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : SetPlotFormat ) , NULL , this ) ;
m_browseButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnOutputDirectoryBrowseClicked ) , NULL , this ) ;
2023-08-15 15:56:46 +00:00
m_plotFootprintValues - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPValues ) , NULL , this ) ;
m_plotFootprintRefs - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPRefs ) , NULL , this ) ;
m_plotFootprintText - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onPlotFPText ) , NULL , this ) ;
2018-02-28 09:44:22 +00:00
m_scaleOpt - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnSetScaleOpt ) , NULL , this ) ;
2020-09-20 20:17:33 +00:00
m_boardSetup - > Disconnect ( wxEVT_COMMAND_HYPERLINK , wxHyperlinkEventHandler ( DIALOG_PLOT_BASE : : onBoardSetup ) , NULL , this ) ;
2018-12-08 16:46:41 +00:00
m_useGerberX2Format - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnGerberX2Checked ) , NULL , this ) ;
2018-02-28 09:44:22 +00:00
m_DXF_plotModeOpt - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : OnChangeDXFPlotMode ) , NULL , this ) ;
m_buttonDRC - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : onRunDRC ) , NULL , this ) ;
m_sdbSizer1Apply - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : CreateDrillFile ) , NULL , this ) ;
m_sdbSizer1OK - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PLOT_BASE : : Plot ) , NULL , this ) ;
2018-12-08 16:46:41 +00:00
2018-02-28 09:44:22 +00:00
}