2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
2018-06-28 13:30:44 +00:00
// C++ code generated with wxFormBuilder (version Dec 30 2017)
2013-05-26 04:36:44 +00:00
// http://www.wxformbuilder.org/
//
2017-12-27 17:09:27 +00:00
// PLEASE DO *NOT* EDIT THIS FILE!
2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
# include "dialog_gendrill_base.h"
///////////////////////////////////////////////////////////////////////////
DIALOG_GENDRILL_BASE : : DIALOG_GENDRILL_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 ( wxDefaultSize , wxDefaultSize ) ;
wxBoxSizer * bMainSizer ;
bMainSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxBoxSizer * bupperSizer ;
2018-02-09 18:00:13 +00:00
bupperSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
staticTextOutputDir = new wxStaticText ( this , wxID_ANY , _ ( " Output Directory: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextOutputDir - > Wrap ( - 1 ) ;
bupperSizer - > Add ( staticTextOutputDir , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_outputDirectoryName = new wxTextCtrl ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_outputDirectoryName - > SetMinSize ( wxSize ( - 1 , 24 ) ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bupperSizer - > Add ( m_outputDirectoryName , 1 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxTOP , 0 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_browseButton = new wxBitmapButton ( this , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , wxBU_AUTODRAW ) ;
bupperSizer - > Add ( m_browseButton , 0 , wxRIGHT , 2 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bMainSizer - > Add ( bupperSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
wxBoxSizer * bmiddlerSizer ;
bmiddlerSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
wxBoxSizer * m_LeftBoxSizer ;
m_LeftBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2017-04-28 10:53:30 +00:00
wxString m_rbFileFormatChoices [ ] = { _ ( " Excellon " ) , _ ( " Gerber X2 (experimental) " ) } ;
int m_rbFileFormatNChoices = sizeof ( m_rbFileFormatChoices ) / sizeof ( wxString ) ;
m_rbFileFormat = new wxRadioBox ( this , wxID_ANY , _ ( " File Format: " ) , wxDefaultPosition , wxDefaultSize , m_rbFileFormatNChoices , m_rbFileFormatChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_rbFileFormat - > SetSelection ( 0 ) ;
m_LeftBoxSizer - > Add ( m_rbFileFormat , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
wxString m_Choice_UnitChoices [ ] = { _ ( " Millimeters " ) , _ ( " Inches " ) } ;
int m_Choice_UnitNChoices = sizeof ( m_Choice_UnitChoices ) / sizeof ( wxString ) ;
m_Choice_Unit = new wxRadioBox ( this , wxID_ANY , _ ( " Drill Units: " ) , wxDefaultPosition , wxDefaultSize , m_Choice_UnitNChoices , m_Choice_UnitChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_Choice_Unit - > SetSelection ( 1 ) ;
m_LeftBoxSizer - > Add ( m_Choice_Unit , 0 , wxALL | wxEXPAND , 5 ) ;
wxString m_Choice_Zeros_FormatChoices [ ] = { _ ( " Decimal format " ) , _ ( " Suppress leading zeros " ) , _ ( " Suppress trailing zeros " ) , _ ( " Keep zeros " ) } ;
int m_Choice_Zeros_FormatNChoices = sizeof ( m_Choice_Zeros_FormatChoices ) / sizeof ( wxString ) ;
2018-04-23 16:34:03 +00:00
m_Choice_Zeros_Format = new wxRadioBox ( this , wxID_ANY , _ ( " Zeros Format: " ) , wxDefaultPosition , wxDefaultSize , m_Choice_Zeros_FormatNChoices , m_Choice_Zeros_FormatChoices , 1 , wxRA_SPECIFY_COLS ) ;
2013-05-26 04:36:44 +00:00
m_Choice_Zeros_Format - > SetSelection ( 0 ) ;
m_Choice_Zeros_Format - > SetToolTip ( _ ( " Choose EXCELLON numbers notation " ) ) ;
m_LeftBoxSizer - > Add ( m_Choice_Zeros_Format , 0 , wxALL | wxEXPAND , 5 ) ;
2017-04-28 10:53:30 +00:00
wxFlexGridSizer * fgSizer1 ;
fgSizer1 = new wxFlexGridSizer ( 0 , 2 , 0 , 0 ) ;
fgSizer1 - > AddGrowableCol ( 1 ) ;
fgSizer1 - > SetFlexibleDirection ( wxBOTH ) ;
fgSizer1 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2018-04-23 16:34:03 +00:00
m_staticTextTitle = new wxStaticText ( this , wxID_ANY , _ ( " Precision: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-04-28 10:53:30 +00:00
m_staticTextTitle - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer1 - > Add ( m_staticTextTitle , 0 , wxALL , 10 ) ;
2013-05-26 04:36:44 +00:00
2017-04-28 10:53:30 +00:00
m_staticTextPrecision = new wxStaticText ( this , wxID_ANY , _ ( " Precision " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_staticTextPrecision - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer1 - > Add ( m_staticTextPrecision , 0 , wxALL , 10 ) ;
2013-05-26 04:36:44 +00:00
2017-04-28 10:53:30 +00:00
m_LeftBoxSizer - > Add ( fgSizer1 , 0 , wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
bmiddlerSizer - > Add ( m_LeftBoxSizer , 0 , wxEXPAND , 5 ) ;
wxBoxSizer * bMiddleBoxSizer ;
bMiddleBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxString m_Choice_Drill_MapChoices [ ] = { _ ( " HPGL " ) , _ ( " PostScript " ) , _ ( " Gerber " ) , _ ( " DXF " ) , _ ( " SVG " ) , _ ( " PDF " ) } ;
int m_Choice_Drill_MapNChoices = sizeof ( m_Choice_Drill_MapChoices ) / sizeof ( wxString ) ;
m_Choice_Drill_Map = new wxRadioBox ( this , wxID_ANY , _ ( " Drill Map File Format: " ) , wxDefaultPosition , wxDefaultSize , m_Choice_Drill_MapNChoices , m_Choice_Drill_MapChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_Choice_Drill_Map - > SetSelection ( 1 ) ;
m_Choice_Drill_Map - > SetToolTip ( _ ( " Creates a drill map in PS, HPGL or other formats " ) ) ;
bMiddleBoxSizer - > Add ( m_Choice_Drill_Map , 0 , wxALL | wxEXPAND , 5 ) ;
2017-04-28 10:53:30 +00:00
wxStaticBoxSizer * sbExcellonOptSizer ;
sbExcellonOptSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Excellon Drill File Options: " ) ) , wxVERTICAL ) ;
2013-05-26 04:36:44 +00:00
2017-12-27 17:09:27 +00:00
m_Check_Mirror = new wxCheckBox ( sbExcellonOptSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Mirror Y axis " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2016-02-05 19:34:23 +00:00
m_Check_Mirror - > SetToolTip ( _ ( " Not recommended. \n Used mostly by users who make the boards themselves. " ) ) ;
2015-11-16 18:42:58 +00:00
2017-04-28 10:53:30 +00:00
sbExcellonOptSizer - > Add ( m_Check_Mirror , 0 , wxRIGHT | wxLEFT , 5 ) ;
2013-05-26 04:36:44 +00:00
2017-04-28 10:53:30 +00:00
m_Check_Minimal = new wxCheckBox ( sbExcellonOptSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Minimal header " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_Check_Minimal - > SetToolTip ( _ ( " Not recommended. \n Only use it for board houses which do not accept fully featured headers. " ) ) ;
2015-11-16 18:42:58 +00:00
2018-02-09 18:00:13 +00:00
sbExcellonOptSizer - > Add ( m_Check_Minimal , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_Check_Merge_PTH_NPTH = new wxCheckBox ( sbExcellonOptSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " PTH and NPTH holes in single file " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-05-14 17:32:03 +00:00
m_Check_Merge_PTH_NPTH - > SetToolTip ( _ ( " Not recommended. \n Only use for board houses which ask for merged PTH and NPTH into a single file. " ) ) ;
2015-11-16 18:42:58 +00:00
2017-04-28 10:53:30 +00:00
sbExcellonOptSizer - > Add ( m_Check_Merge_PTH_NPTH , 0 , wxALL , 5 ) ;
2015-11-16 18:42:58 +00:00
2013-05-26 04:36:44 +00:00
2017-04-28 10:53:30 +00:00
bMiddleBoxSizer - > Add ( sbExcellonOptSizer , 0 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2013-05-26 04:36:44 +00:00
wxString m_Choice_Drill_OffsetChoices [ ] = { _ ( " Absolute " ) , _ ( " Auxiliary axis " ) } ;
int m_Choice_Drill_OffsetNChoices = sizeof ( m_Choice_Drill_OffsetChoices ) / sizeof ( wxString ) ;
m_Choice_Drill_Offset = new wxRadioBox ( this , wxID_ANY , _ ( " Drill Origin: " ) , wxDefaultPosition , wxDefaultSize , m_Choice_Drill_OffsetNChoices , m_Choice_Drill_OffsetChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_Choice_Drill_Offset - > SetSelection ( 0 ) ;
m_Choice_Drill_Offset - > SetToolTip ( _ ( " Choose the coordinate origin: absolute or relative to the auxiliray axis " ) ) ;
bMiddleBoxSizer - > Add ( m_Choice_Drill_Offset , 0 , wxALL | wxEXPAND , 5 ) ;
bmiddlerSizer - > Add ( bMiddleBoxSizer , 0 , wxEXPAND , 5 ) ;
wxBoxSizer * bRightBoxSizer ;
bRightBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2018-02-09 18:00:13 +00:00
m_DefaultViasDrillSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Default Via Drill: " ) ) , wxVERTICAL ) ;
2013-05-26 04:36:44 +00:00
2015-11-16 18:42:58 +00:00
m_ViaDrillValue = new wxStaticText ( m_DefaultViasDrillSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Via Drill Value " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_ViaDrillValue - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
m_DefaultViasDrillSizer - > Add ( m_ViaDrillValue , 0 , wxBOTTOM | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bRightBoxSizer - > Add ( m_DefaultViasDrillSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_MicroViasDrillSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Micro Vias Drill: " ) ) , wxVERTICAL ) ;
2013-05-26 04:36:44 +00:00
2017-12-27 17:09:27 +00:00
m_MicroViaDrillValue = new wxStaticText ( m_MicroViasDrillSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Micro via drill size " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_MicroViaDrillValue - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
m_MicroViasDrillSizer - > Add ( m_MicroViaDrillValue , 0 , wxBOTTOM | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bRightBoxSizer - > Add ( m_MicroViasDrillSizer , 0 , wxBOTTOM | wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * sbSizerHoles ;
2018-02-09 18:00:13 +00:00
sbSizerHoles = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Holes Count: " ) ) , wxVERTICAL ) ;
wxFlexGridSizer * fgSizer2 ;
fgSizer2 = new wxFlexGridSizer ( 0 , 2 , 0 , 0 ) ;
fgSizer2 - > SetFlexibleDirection ( wxBOTH ) ;
fgSizer2 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
staticTextPlatedPads = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " Plated pads: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextPlatedPads - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( staticTextPlatedPads , 0 , wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_PlatedPadsCountInfoMsg = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_PlatedPadsCountInfoMsg - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer2 - > Add ( m_PlatedPadsCountInfoMsg , 0 , wxALIGN_RIGHT | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
staticTextNonPlatedPads = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " Non-plated pads: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextNonPlatedPads - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( staticTextNonPlatedPads , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
m_NotPlatedPadsCountInfoMsg = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_NotPlatedPadsCountInfoMsg - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer2 - > Add ( m_NotPlatedPadsCountInfoMsg , 0 , wxALIGN_RIGHT | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
staticTextThroughVias = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " Through vias: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextThroughVias - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( staticTextThroughVias , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_ThroughViasInfoMsg = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_ThroughViasInfoMsg - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer2 - > Add ( m_ThroughViasInfoMsg , 0 , wxALIGN_RIGHT | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
staticTextMicroVias = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " Micro vias: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextMicroVias - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( staticTextMicroVias , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
m_MicroViasInfoMsg = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_MicroViasInfoMsg - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer2 - > Add ( m_MicroViasInfoMsg , 0 , wxALIGN_RIGHT | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
staticTextBuriedVias = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " Buried vias: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
staticTextBuriedVias - > Wrap ( - 1 ) ;
fgSizer2 - > Add ( staticTextBuriedVias , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_BuriedViasInfoMsg = new wxStaticText ( sbSizerHoles - > GetStaticBox ( ) , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_BuriedViasInfoMsg - > Wrap ( - 1 ) ;
2018-02-09 18:00:13 +00:00
fgSizer2 - > Add ( m_BuriedViasInfoMsg , 0 , wxALIGN_RIGHT | wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
sbSizerHoles - > Add ( fgSizer2 , 1 , wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bRightBoxSizer - > Add ( sbSizerHoles , 1 , wxBOTTOM | wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
bmiddlerSizer - > Add ( bRightBoxSizer , 0 , wxEXPAND , 5 ) ;
wxBoxSizer * bSizerButtons ;
bSizerButtons = new wxBoxSizer ( wxVERTICAL ) ;
2018-02-09 18:00:13 +00:00
bSizerButtons - > Add ( 0 , 0 , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_buttonDrill = new wxButton ( this , ID_GEN_DRILL_FILE , _ ( " Generate Drill File " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_buttonDrill - > SetDefault ( ) ;
2015-06-15 13:54:58 +00:00
bSizerButtons - > Add ( m_buttonDrill , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
m_buttonMap = new wxButton ( this , wxID_ANY , _ ( " Generate Map File " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
bSizerButtons - > Add ( m_buttonMap , 0 , wxALL | wxEXPAND , 5 ) ;
2018-02-09 18:00:13 +00:00
m_buttonReport = new wxButton ( this , wxID_ANY , _ ( " Generate Report File " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
bSizerButtons - > Add ( m_buttonReport , 0 , wxALL | wxEXPAND , 5 ) ;
m_CancelButton = new wxButton ( this , wxID_CANCEL , _ ( " Close " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2015-06-15 13:54:58 +00:00
bSizerButtons - > Add ( m_CancelButton , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bmiddlerSizer - > Add ( bSizerButtons , 1 , wxEXPAND | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
2018-02-09 18:00:13 +00:00
bMainSizer - > Add ( bmiddlerSizer , 0 , wxEXPAND | wxTOP , 2 ) ;
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * bmsgSizer ;
bmsgSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Messages: " ) ) , wxVERTICAL ) ;
2015-11-16 18:42:58 +00:00
m_messagesBox = new wxTextCtrl ( bmsgSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , wxTE_MULTILINE | wxTE_READONLY ) ;
2013-05-26 04:36:44 +00:00
m_messagesBox - > SetMinSize ( wxSize ( - 1 , 90 ) ) ;
bmsgSizer - > Add ( m_messagesBox , 1 , wxALL | wxEXPAND , 5 ) ;
bMainSizer - > Add ( bmsgSizer , 1 , wxEXPAND , 5 ) ;
this - > SetSizer ( bMainSizer ) ;
this - > Layout ( ) ;
2017-12-27 17:09:27 +00:00
bMainSizer - > Fit ( this ) ;
2013-05-26 04:36:44 +00:00
this - > Centre ( wxBOTH ) ;
// Connect Events
2018-02-09 18:00:13 +00:00
m_browseButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnOutputDirectoryBrowseClicked ) , NULL , this ) ;
2017-04-28 10:53:30 +00:00
m_rbFileFormat - > Connect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : onFileFormatSelection ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_Choice_Unit - > Connect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnSelDrillUnitsSelected ) , NULL , this ) ;
m_Choice_Zeros_Format - > Connect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnSelZerosFmtSelected ) , NULL , this ) ;
m_buttonDrill - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenDrillFile ) , NULL , this ) ;
m_buttonMap - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenMapFile ) , NULL , this ) ;
m_buttonReport - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenReportFile ) , NULL , this ) ;
m_CancelButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnCancelClick ) , NULL , this ) ;
}
DIALOG_GENDRILL_BASE : : ~ DIALOG_GENDRILL_BASE ( )
{
// Disconnect Events
2018-02-09 18:00:13 +00:00
m_browseButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnOutputDirectoryBrowseClicked ) , NULL , this ) ;
2017-04-28 10:53:30 +00:00
m_rbFileFormat - > Disconnect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : onFileFormatSelection ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_Choice_Unit - > Disconnect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnSelDrillUnitsSelected ) , NULL , this ) ;
m_Choice_Zeros_Format - > Disconnect ( wxEVT_COMMAND_RADIOBOX_SELECTED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnSelZerosFmtSelected ) , NULL , this ) ;
m_buttonDrill - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenDrillFile ) , NULL , this ) ;
m_buttonMap - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenMapFile ) , NULL , this ) ;
m_buttonReport - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnGenReportFile ) , NULL , this ) ;
m_CancelButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_GENDRILL_BASE : : OnCancelClick ) , NULL , this ) ;
}