2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
2021-10-31 16:32:24 +00:00
// C++ code generated with wxFormBuilder (version Oct 26 2018)
2013-05-26 04:36:44 +00:00
// http://www.wxformbuilder.org/
//
2018-05-04 16:20:41 +00:00
// PLEASE DO *NOT* EDIT THIS FILE!
2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
2017-11-23 13:05:26 +00:00
# include "widgets/text_ctrl_eval.h"
2018-08-19 16:10:14 +00:00
# include "widgets/wx_grid.h"
2017-11-23 13:05:26 +00:00
2013-05-26 04:36:44 +00:00
# include "dialog_pad_properties_base.h"
///////////////////////////////////////////////////////////////////////////
DIALOG_PAD_PROPERTIES_BASE : : DIALOG_PAD_PROPERTIES_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 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
m_MainSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
wxBoxSizer * bSizerUpper ;
bSizerUpper = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
m_notebook = new wxNotebook ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_panelGeneral = new wxPanel ( m_notebook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * bGeneralSizer ;
bGeneralSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
m_LeftBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
wxGridBagSizer * gbSizerCommon ;
2020-06-04 15:07:23 +00:00
gbSizerCommon = new wxGridBagSizer ( 4 , 0 ) ;
2020-06-01 16:05:40 +00:00
gbSizerCommon - > SetFlexibleDirection ( wxBOTH ) ;
gbSizerCommon - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_padTypeLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Pad type: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_padTypeLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_padTypeLabel , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-22 18:55:06 +00:00
wxString m_padTypeChoices [ ] = { _ ( " Through-hole " ) , _ ( " SMD " ) , _ ( " Edge Connector " ) , _ ( " NPTH, Mechanical " ) , _ ( " SMD Aperture " ) } ;
int m_padTypeNChoices = sizeof ( m_padTypeChoices ) / sizeof ( wxString ) ;
m_padType = new wxChoice ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_padTypeNChoices , m_padTypeChoices , 0 ) ;
m_padType - > SetSelection ( 0 ) ;
gbSizerCommon - > Add ( m_padType , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 5 ) , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-22 18:55:06 +00:00
m_padNumLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Pad number: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_padNumLabel - > Wrap ( - 1 ) ;
gbSizerCommon - > Add ( m_padNumLabel , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-22 18:55:06 +00:00
m_padNumCtrl = new wxTextCtrl ( m_panelGeneral , wxID_PADNUMCTRL , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
gbSizerCommon - > Add ( m_padNumCtrl , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 5 ) , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-22 18:55:06 +00:00
m_padNetLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Net name: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_padNetLabel - > Wrap ( - 1 ) ;
gbSizerCommon - > Add ( m_padNetLabel , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-22 18:55:06 +00:00
m_padNetSelector = new NET_SELECTOR ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
gbSizerCommon - > Add ( m_padNetSelector , wxGBPosition ( 2 , 1 ) , wxGBSpan ( 1 , 5 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_posXLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Position X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_posXLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posXLabel , wxGBPosition ( 3 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_posXCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posXCtrl , wxGBPosition ( 3 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_posXUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_posXUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posXUnits , wxGBPosition ( 3 , 2 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_posYLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_posYLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posYLabel , wxGBPosition ( 3 , 3 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_posYCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posYCtrl , wxGBPosition ( 3 , 4 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_posYUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_posYUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerCommon - > Add ( m_posYUnits , wxGBPosition ( 3 , 5 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2021-01-08 16:32:28 +00:00
m_locked = new wxCheckBox ( m_panelGeneral , wxID_ANY , _ ( " Locked " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_locked - > SetToolTip ( _ ( " Do not allow position of pad relative to parent footprint to be changed " ) ) ;
2021-10-31 16:32:24 +00:00
gbSizerCommon - > Add ( m_locked , wxGBPosition ( 4 , 0 ) , wxGBSpan ( 1 , 1 ) , wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
gbSizerCommon - > AddGrowableCol ( 1 ) ;
gbSizerCommon - > AddGrowableCol ( 4 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_LeftBoxSizer - > Add ( gbSizerCommon , 0 , wxEXPAND | wxBOTTOM , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-08-23 17:11:47 +00:00
m_LeftBoxSizer - > Add ( 0 , 5 , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_staticline5 = new wxStaticLine ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
m_LeftBoxSizer - > Add ( m_staticline5 , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_LeftBoxSizer - > Add ( 0 , 0 , 0 , wxEXPAND | wxBOTTOM , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
wxBoxSizer * bSizerShape ;
bSizerShape = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_shapeLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Pad shape: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_shapeLabel - > Wrap ( - 1 ) ;
bSizerShape - > Add ( m_shapeLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-12 19:13:28 +00:00
wxString m_PadShapeSelectorChoices [ ] = { _ ( " Circular " ) , _ ( " Oval " ) , _ ( " Rectangular " ) , _ ( " Trapezoidal " ) , _ ( " Rounded rectangle " ) , _ ( " Chamfered rectangle " ) , _ ( " Chamfered with other corners rounded " ) , _ ( " Custom (circular base) " ) , _ ( " Custom (rectangular base) " ) } ;
int m_PadShapeSelectorNChoices = sizeof ( m_PadShapeSelectorChoices ) / sizeof ( wxString ) ;
m_PadShapeSelector = new wxChoice ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_PadShapeSelectorNChoices , m_PadShapeSelectorChoices , 0 ) ;
2021-10-29 19:29:49 +00:00
m_PadShapeSelector - > SetSelection ( 2 ) ;
2020-11-12 19:13:28 +00:00
bSizerShape - > Add ( m_PadShapeSelector , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_LeftBoxSizer - > Add ( bSizerShape , 0 , wxEXPAND | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_shapePropsBook = new wxSimplebook ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-04 15:07:23 +00:00
m_emptyProps = new wxPanel ( m_shapePropsBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
m_shapePropsBook - > AddPage ( m_emptyProps , _ ( " a page " ) , false ) ;
m_trapProps = new wxPanel ( m_shapePropsBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
fgSizerTrapProps = new wxFlexGridSizer ( 0 , 3 , 4 , 0 ) ;
2020-06-01 16:05:40 +00:00
fgSizerTrapProps - > AddGrowableCol ( 1 ) ;
fgSizerTrapProps - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerTrapProps - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2020-06-04 15:07:23 +00:00
m_trapDeltaLabel = new wxStaticText ( m_trapProps , wxID_ANY , _ ( " Trapezoid delta: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_trapDeltaLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
fgSizerTrapProps - > Add ( m_trapDeltaLabel , 0 , wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_trapDeltaCtrl = new wxTextCtrl ( m_trapProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerTrapProps - > Add ( m_trapDeltaCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_trapDeltaUnits = new wxStaticText ( m_trapProps , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_trapDeltaUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
fgSizerTrapProps - > Add ( m_trapDeltaUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_trapAxisLabel = new wxStaticText ( m_trapProps , wxID_ANY , _ ( " Trapezoid axis: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_trapAxisLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
fgSizerTrapProps - > Add ( m_trapAxisLabel , 0 , wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxString m_trapAxisCtrlChoices [ ] = { _ ( " Horizontal " ) , _ ( " Vertical " ) } ;
int m_trapAxisCtrlNChoices = sizeof ( m_trapAxisCtrlChoices ) / sizeof ( wxString ) ;
2020-06-04 15:07:23 +00:00
m_trapAxisCtrl = new wxChoice ( m_trapProps , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_trapAxisCtrlNChoices , m_trapAxisCtrlChoices , 0 ) ;
2018-05-23 06:11:47 +00:00
m_trapAxisCtrl - > SetSelection ( 0 ) ;
2020-06-04 15:07:23 +00:00
fgSizerTrapProps - > Add ( m_trapAxisCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_trapProps - > SetSizer ( fgSizerTrapProps ) ;
m_trapProps - > Layout ( ) ;
fgSizerTrapProps - > Fit ( m_trapProps ) ;
m_shapePropsBook - > AddPage ( m_trapProps , _ ( " a page " ) , false ) ;
m_roudingProps = new wxPanel ( m_shapePropsBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
fgSizerRoundingProps = new wxFlexGridSizer ( 0 , 3 , 4 , 0 ) ;
2020-06-01 16:05:40 +00:00
fgSizerRoundingProps - > AddGrowableCol ( 1 ) ;
fgSizerRoundingProps - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerRoundingProps - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_cornerRatioLabel = new wxStaticText ( m_roudingProps , wxID_ANY , _ ( " Corner size: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_cornerRatioLabel - > Wrap ( - 1 ) ;
m_cornerRatioLabel - > SetToolTip ( _ ( " Corner radius in percent of the pad width. \n The width is the smaller value between size X and size Y. \n The max value is 50 percent. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
fgSizerRoundingProps - > Add ( m_cornerRatioLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_cornerRatioCtrl = new TEXT_CTRL_EVAL ( m_roudingProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerRoundingProps - > Add ( m_cornerRatioCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_cornerRatioUnits = new wxStaticText ( m_roudingProps , wxID_ANY , _ ( " % " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_cornerRatioUnits - > Wrap ( - 1 ) ;
fgSizerRoundingProps - > Add ( m_cornerRatioUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cornerRadiusLabel = new wxStaticText ( m_roudingProps , wxID_ANY , _ ( " Corner radius: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_cornerRadiusLabel - > Wrap ( - 1 ) ;
m_cornerRadiusLabel - > SetToolTip ( _ ( " Corner radius. \n Can be no more than half pad width. \n The width is the smaller value between size X and size Y. \n Note: IPC norm gives a max value = 0.25mm. " ) ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
fgSizerRoundingProps - > Add ( m_cornerRadiusLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_cornerRadiusCtrl = new wxTextCtrl ( m_roudingProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerRoundingProps - > Add ( m_cornerRadiusCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cornerRadiusUnits = new wxStaticText ( m_roudingProps , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_cornerRadiusUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
fgSizerRoundingProps - > Add ( m_cornerRadiusUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
2020-06-04 15:07:23 +00:00
m_roudingProps - > SetSizer ( fgSizerRoundingProps ) ;
m_roudingProps - > Layout ( ) ;
fgSizerRoundingProps - > Fit ( m_roudingProps ) ;
m_shapePropsBook - > AddPage ( m_roudingProps , _ ( " a page " ) , false ) ;
m_chamferProps = new wxPanel ( m_shapePropsBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
2020-06-01 16:05:40 +00:00
wxFlexGridSizer * fgSizerChamferProps ;
2020-06-04 15:07:23 +00:00
fgSizerChamferProps = new wxFlexGridSizer ( 0 , 3 , 4 , 0 ) ;
2020-06-01 16:05:40 +00:00
fgSizerChamferProps - > AddGrowableCol ( 1 ) ;
fgSizerChamferProps - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerChamferProps - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2021-08-06 14:26:08 +00:00
m_chamferRatioLabel = new wxStaticText ( m_chamferProps , wxID_ANY , _ ( " Chamfer size: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_chamferRatioLabel - > Wrap ( - 1 ) ;
m_chamferRatioLabel - > SetToolTip ( _ ( " Chamfer size in percent of the pad width. \n The width is the smaller value between size X and size Y. \n The max value is 50 percent. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
fgSizerChamferProps - > Add ( m_chamferRatioLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_chamferRatioCtrl = new TEXT_CTRL_EVAL ( m_chamferProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerChamferProps - > Add ( m_chamferRatioCtrl , 1 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_chamferRatioUnits = new wxStaticText ( m_chamferProps , wxID_ANY , _ ( " % " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_chamferRatioUnits - > Wrap ( - 1 ) ;
fgSizerChamferProps - > Add ( m_chamferRatioUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_staticTextChamferCorner = new wxStaticText ( m_chamferProps , wxID_ANY , _ ( " Chamfer corners: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-08-29 07:13:07 +00:00
m_staticTextChamferCorner - > Wrap ( - 1 ) ;
m_staticTextChamferCorner - > SetToolTip ( _ ( " Chamfered corners. The position is relative to a pad orientation 0 degree. " ) ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
fgSizerChamferProps - > Add ( m_staticTextChamferCorner , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
wxGridSizer * gCornersSizer ;
2020-06-04 15:07:23 +00:00
gCornersSizer = new wxGridSizer ( 0 , 2 , 2 , 6 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cbTopLeft = new wxCheckBox ( m_chamferProps , wxID_ANY , _ ( " Top left " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-08-21 14:31:52 +00:00
m_cbTopLeft - > SetValue ( true ) ;
2020-06-01 16:05:40 +00:00
gCornersSizer - > Add ( m_cbTopLeft , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cbTopRight = new wxCheckBox ( m_chamferProps , wxID_ANY , _ ( " Top right " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-01 16:05:40 +00:00
gCornersSizer - > Add ( m_cbTopRight , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cbBottomLeft = new wxCheckBox ( m_chamferProps , wxID_ANY , _ ( " Bottom left " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-01 16:05:40 +00:00
gCornersSizer - > Add ( m_cbBottomLeft , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
m_cbBottomRight = new wxCheckBox ( m_chamferProps , wxID_ANY , _ ( " Bottom right " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-01 16:05:40 +00:00
gCornersSizer - > Add ( m_cbBottomRight , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-04 15:07:23 +00:00
fgSizerChamferProps - > Add ( gCornersSizer , 1 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
m_chamferProps - > SetSizer ( fgSizerChamferProps ) ;
m_chamferProps - > Layout ( ) ;
fgSizerChamferProps - > Fit ( m_chamferProps ) ;
m_shapePropsBook - > AddPage ( m_chamferProps , _ ( " a page " ) , false ) ;
m_mixedProps = new wxPanel ( m_shapePropsBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxFlexGridSizer * fgMixedProps ;
fgMixedProps = new wxFlexGridSizer ( 0 , 3 , 4 , 0 ) ;
fgMixedProps - > AddGrowableCol ( 1 ) ;
fgMixedProps - > SetFlexibleDirection ( wxBOTH ) ;
fgMixedProps - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2021-08-06 14:26:08 +00:00
m_mixedChamferRatioLabel = new wxStaticText ( m_mixedProps , wxID_ANY , _ ( " Chamfer size: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_mixedChamferRatioLabel - > Wrap ( - 1 ) ;
m_mixedChamferRatioLabel - > SetToolTip ( _ ( " Chamfer size in percent of the pad width. \n The width is the smaller value between size X and size Y. \n The max value is 50 percent. " ) ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
fgMixedProps - > Add ( m_mixedChamferRatioLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
m_mixedChamferRatioCtrl = new TEXT_CTRL_EVAL ( m_mixedProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgMixedProps - > Add ( m_mixedChamferRatioCtrl , 1 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
m_mixedChamferRatioUnits = new wxStaticText ( m_mixedProps , wxID_ANY , _ ( " % " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_mixedChamferRatioUnits - > Wrap ( - 1 ) ;
fgMixedProps - > Add ( m_mixedChamferRatioUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-04 15:07:23 +00:00
m_staticTextChamferCorner1 = new wxStaticText ( m_mixedProps , wxID_ANY , _ ( " Chamfer corners: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextChamferCorner1 - > Wrap ( - 1 ) ;
m_staticTextChamferCorner1 - > SetToolTip ( _ ( " Chamfered corners. The position is relative to a pad orientation 0 degree. " ) ) ;
fgMixedProps - > Add ( m_staticTextChamferCorner1 , 0 , 0 , 5 ) ;
2020-11-12 19:13:28 +00:00
wxGridSizer * gMixedCornersSizer ;
gMixedCornersSizer = new wxGridSizer ( 0 , 2 , 2 , 6 ) ;
2020-06-04 15:07:23 +00:00
m_cbTopLeft1 = new wxCheckBox ( m_mixedProps , wxID_ANY , _ ( " Top left " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_cbTopLeft1 - > SetValue ( true ) ;
2020-11-12 19:13:28 +00:00
gMixedCornersSizer - > Add ( m_cbTopLeft1 , 0 , 0 , 5 ) ;
2020-06-04 15:07:23 +00:00
m_cbTopRight1 = new wxCheckBox ( m_mixedProps , wxID_ANY , _ ( " Top right " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-12 19:13:28 +00:00
gMixedCornersSizer - > Add ( m_cbTopRight1 , 0 , 0 , 5 ) ;
2020-06-04 15:07:23 +00:00
m_cbBottomLeft1 = new wxCheckBox ( m_mixedProps , wxID_ANY , _ ( " Bottom left " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-12 19:13:28 +00:00
gMixedCornersSizer - > Add ( m_cbBottomLeft1 , 0 , 0 , 5 ) ;
2020-06-04 15:07:23 +00:00
m_cbBottomRight1 = new wxCheckBox ( m_mixedProps , wxID_ANY , _ ( " Bottom right " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-12 19:13:28 +00:00
gMixedCornersSizer - > Add ( m_cbBottomRight1 , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-12 19:13:28 +00:00
fgMixedProps - > Add ( gMixedCornersSizer , 1 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2020-06-04 15:07:23 +00:00
fgMixedProps - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2021-08-06 14:26:08 +00:00
m_mixedCornerRatioLabel = new wxStaticText ( m_mixedProps , wxID_ANY , _ ( " Corner size: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_mixedCornerRatioLabel - > Wrap ( - 1 ) ;
m_mixedCornerRatioLabel - > SetToolTip ( _ ( " Corner radius in percent of the pad width. \n The width is the smaller value between size X and size Y. \n The max value is 50 percent. " ) ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
fgMixedProps - > Add ( m_mixedCornerRatioLabel , 0 , wxBOTTOM | wxRIGHT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
m_mixedCornerRatioCtrl = new TEXT_CTRL_EVAL ( m_mixedProps , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgMixedProps - > Add ( m_mixedCornerRatioCtrl , 0 , wxEXPAND | wxBOTTOM | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2020-06-04 15:07:23 +00:00
2021-08-06 14:26:08 +00:00
m_mixedCornerRatioUnits = new wxStaticText ( m_mixedProps , wxID_ANY , _ ( " % " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_mixedCornerRatioUnits - > Wrap ( - 1 ) ;
fgMixedProps - > Add ( m_mixedCornerRatioUnits , 0 , wxBOTTOM | wxRIGHT | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2020-06-04 15:07:23 +00:00
m_mixedProps - > SetSizer ( fgMixedProps ) ;
m_mixedProps - > Layout ( ) ;
fgMixedProps - > Fit ( m_mixedProps ) ;
m_shapePropsBook - > AddPage ( m_mixedProps , _ ( " a page " ) , false ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_LeftBoxSizer - > Add ( m_shapePropsBook , 0 , wxEXPAND | wxLEFT , 20 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
wxGridBagSizer * gbSizerPadOrientation ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation = new wxGridBagSizer ( 3 , 0 ) ;
2020-06-01 16:05:40 +00:00
gbSizerPadOrientation - > SetFlexibleDirection ( wxBOTH ) ;
gbSizerPadOrientation - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_sizeXLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Pad size X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_sizeXLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeXLabel , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_sizeXCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxSize ( - 1 , - 1 ) , 0 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeXCtrl , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND , 5 ) ;
2020-06-01 16:05:40 +00:00
m_sizeXUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_sizeXUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeXUnits , wxGBPosition ( 0 , 2 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_sizeYLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_sizeYLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeYLabel , wxGBPosition ( 0 , 3 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_sizeYCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeYCtrl , wxGBPosition ( 0 , 4 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND , 5 ) ;
2020-06-01 16:05:40 +00:00
m_sizeYUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_sizeYUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerPadOrientation - > Add ( m_sizeYUnits , wxGBPosition ( 0 , 5 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_PadOrientText = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Angle: " ) , wxDefaultPosition , wxSize ( - 1 , - 1 ) , 0 ) ;
m_PadOrientText - > Wrap ( - 1 ) ;
gbSizerPadOrientation - > Add ( m_PadOrientText , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2021-10-30 09:56:24 +00:00
m_cb_padrotation = new wxComboBox ( m_panelGeneral , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxSize ( 100 , - 1 ) , 0 , NULL , 0 ) ;
m_cb_padrotation - > Append ( _ ( " 0 " ) ) ;
m_cb_padrotation - > Append ( _ ( " 90 " ) ) ;
m_cb_padrotation - > Append ( _ ( " -90 " ) ) ;
m_cb_padrotation - > Append ( _ ( " 180 " ) ) ;
m_cb_padrotation - > SetSelection ( 0 ) ;
gbSizerPadOrientation - > Add ( m_cb_padrotation , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxEXPAND , 5 ) ;
2020-06-01 16:05:40 +00:00
m_orientationUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " deg " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_orientationUnits - > Wrap ( - 1 ) ;
2020-06-11 17:26:08 +00:00
gbSizerPadOrientation - > Add ( m_orientationUnits , wxGBPosition ( 1 , 2 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
2020-06-04 15:07:23 +00:00
m_LeftBoxSizer - > Add ( gbSizerPadOrientation , 0 , wxEXPAND | wxTOP , 5 ) ;
2020-06-01 16:05:40 +00:00
m_LeftBoxSizer - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
m_staticline6 = new wxStaticLine ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
2021-10-29 19:29:49 +00:00
m_LeftBoxSizer - > Add ( m_staticline6 , 0 , wxBOTTOM | wxEXPAND | wxTOP , 5 ) ;
2020-06-01 16:05:40 +00:00
wxGridBagSizer * gbSizerHole ;
2020-06-04 15:07:23 +00:00
gbSizerHole = new wxGridBagSizer ( 4 , 0 ) ;
2020-06-01 16:05:40 +00:00
gbSizerHole - > SetFlexibleDirection ( wxBOTH ) ;
gbSizerHole - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_holeShapeLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Hole shape: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_holeShapeLabel - > Wrap ( - 1 ) ;
2020-11-10 20:44:23 +00:00
gbSizerHole - > Add ( m_holeShapeLabel , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxString m_holeShapeCtrlChoices [ ] = { _ ( " Circular " ) , _ ( " Oval " ) } ;
int m_holeShapeCtrlNChoices = sizeof ( m_holeShapeCtrlChoices ) / sizeof ( wxString ) ;
m_holeShapeCtrl = new wxChoice ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_holeShapeCtrlNChoices , m_holeShapeCtrlChoices , 0 ) ;
2021-10-30 09:56:24 +00:00
m_holeShapeCtrl - > SetSelection ( 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerHole - > Add ( m_holeShapeCtrl , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 5 ) , wxEXPAND | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_holeXLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Hole size X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_holeXLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerHole - > Add ( m_holeXLabel , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_holeXCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-01 16:05:40 +00:00
gbSizerHole - > Add ( m_holeXCtrl , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_holeXUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_holeXUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerHole - > Add ( m_holeXUnits , wxGBPosition ( 1 , 2 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_holeYLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_holeYLabel - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerHole - > Add ( m_holeYLabel , wxGBPosition ( 1 , 3 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_holeYCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-01 16:05:40 +00:00
gbSizerHole - > Add ( m_holeYCtrl , wxGBPosition ( 1 , 4 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_holeYUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_holeYUnits - > Wrap ( - 1 ) ;
2020-06-04 15:07:23 +00:00
gbSizerHole - > Add ( m_holeYUnits , wxGBPosition ( 1 , 5 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
2020-06-04 15:07:23 +00:00
m_LeftBoxSizer - > Add ( gbSizerHole , 0 , wxEXPAND | wxTOP | wxBOTTOM , 5 ) ;
2020-06-01 16:05:40 +00:00
2020-08-23 17:11:47 +00:00
m_LeftBoxSizer - > Add ( 0 , 5 , 0 , wxEXPAND , 5 ) ;
2020-06-01 16:05:40 +00:00
m_staticline7 = new wxStaticLine ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
2020-06-04 15:07:23 +00:00
m_LeftBoxSizer - > Add ( m_staticline7 , 0 , wxEXPAND | wxBOTTOM , 5 ) ;
2019-09-11 21:20:31 +00:00
2020-06-01 16:05:40 +00:00
wxBoxSizer * bSizer35 ;
bSizer35 = new wxBoxSizer ( wxHORIZONTAL ) ;
m_offsetShapeOpt = new wxCheckBox ( m_panelGeneral , wxID_ANY , _ ( " Offset shape from hole " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bSizer35 - > Add ( m_offsetShapeOpt , 0 , wxLEFT , 5 ) ;
m_offsetShapeOptLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " : " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_offsetShapeOptLabel - > Wrap ( - 1 ) ;
bSizer35 - > Add ( m_offsetShapeOptLabel , 0 , wxRIGHT , 5 ) ;
2020-06-04 15:07:23 +00:00
m_LeftBoxSizer - > Add ( bSizer35 , 0 , wxEXPAND | wxTOP , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetCtrls = new wxFlexGridSizer ( 0 , 6 , 0 , 0 ) ;
m_offsetCtrls - > AddGrowableCol ( 1 ) ;
m_offsetCtrls - > AddGrowableCol ( 4 ) ;
m_offsetCtrls - > SetFlexibleDirection ( wxBOTH ) ;
m_offsetCtrls - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
m_offsetXLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_offsetXLabel - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
m_offsetCtrls - > Add ( m_offsetXLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN | wxRIGHT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetXCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-11 10:52:05 +00:00
m_offsetCtrls - > Add ( m_offsetXCtrl , 0 , wxBOTTOM | wxEXPAND | wxRESERVE_SPACE_EVEN_IF_HIDDEN , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetXUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_offsetXUnits - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
m_offsetCtrls - > Add ( m_offsetXUnits , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN | wxRIGHT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetYLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_offsetYLabel - > Wrap ( - 1 ) ;
2020-06-03 15:34:09 +00:00
m_offsetCtrls - > Add ( m_offsetYLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetYCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-06-11 10:52:05 +00:00
m_offsetCtrls - > Add ( m_offsetYCtrl , 0 , wxBOTTOM | wxEXPAND | wxRESERVE_SPACE_EVEN_IF_HIDDEN , 5 ) ;
2020-06-01 16:05:40 +00:00
m_offsetYUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_offsetYUnits - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
m_offsetCtrls - > Add ( m_offsetYUnits , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN | wxRIGHT , 5 ) ;
2020-06-01 16:05:40 +00:00
2020-06-11 10:52:05 +00:00
m_LeftBoxSizer - > Add ( m_offsetCtrls , 0 , wxEXPAND | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN , 25 ) ;
2020-06-01 16:05:40 +00:00
wxFlexGridSizer * fgSizerPadToDie ;
fgSizerPadToDie = new wxFlexGridSizer ( 14 , 3 , 0 , 0 ) ;
fgSizerPadToDie - > AddGrowableCol ( 1 ) ;
fgSizerPadToDie - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerPadToDie - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
wxBoxSizer * bSizer34 ;
bSizer34 = new wxBoxSizer ( wxHORIZONTAL ) ;
m_padToDieOpt = new wxCheckBox ( m_panelGeneral , wxID_ANY , _ ( " Specify pad to die length " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-10 20:44:23 +00:00
bSizer34 - > Add ( m_padToDieOpt , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_padToDieLabel = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " : " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-09-11 21:20:31 +00:00
m_padToDieLabel - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
bSizer34 - > Add ( m_padToDieLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRESERVE_SPACE_EVEN_IF_HIDDEN | wxRIGHT | wxTOP , 5 ) ;
2020-06-01 16:05:40 +00:00
2019-09-11 21:20:31 +00:00
2020-06-01 16:05:40 +00:00
fgSizerPadToDie - > Add ( bSizer34 , 0 , wxEXPAND | wxRIGHT , 5 ) ;
2019-09-11 21:20:31 +00:00
m_padToDieCtrl = new wxTextCtrl ( m_panelGeneral , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-10 20:44:23 +00:00
fgSizerPadToDie - > Add ( m_padToDieCtrl , 0 , wxEXPAND | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN , 5 ) ;
2019-09-11 21:20:31 +00:00
2020-06-01 16:05:40 +00:00
m_padToDieUnits = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " mm " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-09-11 21:20:31 +00:00
m_padToDieUnits - > Wrap ( - 1 ) ;
2020-11-10 20:44:23 +00:00
fgSizerPadToDie - > Add ( m_padToDieUnits , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxRESERVE_SPACE_EVEN_IF_HIDDEN | wxRIGHT , 5 ) ;
2020-06-01 16:05:40 +00:00
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_LeftBoxSizer - > Add ( fgSizerPadToDie , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
bGeneralSizer - > Add ( m_LeftBoxSizer , 0 , wxEXPAND | wxALL , 5 ) ;
m_middleBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * m_LayersSizer ;
2018-05-23 06:11:47 +00:00
m_LayersSizer = new wxStaticBoxSizer ( new wxStaticBox ( m_panelGeneral , wxID_ANY , wxEmptyString ) , wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-02-03 23:22:45 +00:00
m_FlippedWarningSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2018-02-03 23:22:45 +00:00
m_FlippedWarningIcon = new wxStaticBitmap ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxSize ( 48 , 48 ) , 0 ) ;
m_FlippedWarningIcon - > SetMinSize ( wxSize ( 48 , 48 ) ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_FlippedWarningSizer - > Add ( m_FlippedWarningIcon , 0 , wxALIGN_TOP | wxBOTTOM | wxTOP , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_staticText86 = new wxStaticText ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Parent footprint on board is flipped. \n Layers will be reversed. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText86 - > Wrap ( 150 ) ;
m_FlippedWarningSizer - > Add ( m_staticText86 , 1 , wxALIGN_TOP | wxBOTTOM | wxLEFT | wxRIGHT , 8 ) ;
2019-08-21 14:31:52 +00:00
2019-09-11 21:20:31 +00:00
m_LayersSizer - > Add ( m_FlippedWarningSizer , 0 , wxEXPAND | wxBOTTOM , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-08-23 17:11:47 +00:00
m_copperLayersLabel = new wxStaticText ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Copper layers: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_copperLayersLabel - > Wrap ( - 1 ) ;
2020-08-29 19:13:14 +00:00
m_LayersSizer - > Add ( m_copperLayersLabel , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2020-08-23 17:11:47 +00:00
wxArrayString m_rbCopperLayersSelChoices ;
m_rbCopperLayersSel = new wxChoice ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_rbCopperLayersSelChoices , 0 ) ;
2013-05-26 04:36:44 +00:00
m_rbCopperLayersSel - > SetSelection ( 0 ) ;
2020-08-23 17:11:47 +00:00
m_LayersSizer - > Add ( m_rbCopperLayersSel , 1 , wxALL | wxEXPAND | wxTOP , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-07-18 16:59:05 +00:00
m_techLayersLabel = new wxStaticText ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Technical layers: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_techLayersLabel - > Wrap ( - 1 ) ;
m_LayersSizer - > Add ( m_techLayersLabel , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerAdhCmp = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Front adhesive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerAdhCmp , 0 , wxLEFT | wxRIGHT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerAdhCu = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Back adhesive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerAdhCu , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerPateCmp = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Front solder paste " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerPateCmp , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerPateCu = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Back solder paste " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerPateCu , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerSilkCmp = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Front silk screen " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerSilkCmp , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerSilkCu = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Back silk screen " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerSilkCu , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerMaskCmp = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Front solder mask " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerMaskCmp , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerMaskCu = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Back solder mask " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerMaskCu , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerDraft = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Drafting notes " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerDraft , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerECO1 = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " E.C.O.1 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerECO1 , 0 , wxTOP | wxRIGHT | wxLEFT , 4 ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
m_PadLayerECO2 = new wxCheckBox ( m_LayersSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " E.C.O.2 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_LayersSizer - > Add ( m_PadLayerECO2 , 0 , wxALL , 4 ) ;
2019-08-21 14:31:52 +00:00
2019-12-11 10:36:45 +00:00
m_middleBoxSizer - > Add ( m_LayersSizer , 0 , wxLEFT | wxRIGHT | wxTOP | wxEXPAND , 5 ) ;
m_staticTextFabProperty = new wxStaticText ( m_panelGeneral , wxID_ANY , _ ( " Fabrication Property: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextFabProperty - > Wrap ( - 1 ) ;
2020-07-23 12:33:24 +00:00
m_staticTextFabProperty - > SetToolTip ( _ ( " Optional property to specify a special purpose or constraint in fabrication files: \n BGA attribute is for pads in BGA footprints \n Fiducial local is a fiducial for the parent footprint \n Fiducial global is a fiducial for the whole board \n Test Point pad is useful to specify test points in Gerber files \n Heatsink pad specify a thermal pad \n Castellated specify castellated through hole pads on a board edge \n These properties are specified in Gerber X2 files. " ) ) ;
2019-12-11 10:36:45 +00:00
m_middleBoxSizer - > Add ( m_staticTextFabProperty , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2020-06-01 16:05:40 +00:00
m_middleBoxSizer - > Add ( 0 , 2 , 0 , wxEXPAND , 5 ) ;
2020-09-05 16:00:29 +00:00
wxString m_choiceFabPropertyChoices [ ] = { _ ( " None " ) , _ ( " BGA pad " ) , _ ( " Fiducial, local to footprint " ) , _ ( " Fiducial, global to board " ) , _ ( " Test point pad " ) , _ ( " Heatsink pad " ) , _ ( " Castellated pad (through hole only) " ) } ;
2019-12-11 10:36:45 +00:00
int m_choiceFabPropertyNChoices = sizeof ( m_choiceFabPropertyChoices ) / sizeof ( wxString ) ;
m_choiceFabProperty = new wxChoice ( m_panelGeneral , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_choiceFabPropertyNChoices , m_choiceFabPropertyChoices , 0 ) ;
m_choiceFabProperty - > SetSelection ( 0 ) ;
m_middleBoxSizer - > Add ( m_choiceFabProperty , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-09-11 21:20:31 +00:00
bGeneralSizer - > Add ( m_middleBoxSizer , 0 , wxEXPAND | wxALL , 3 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
m_panelGeneral - > SetSizer ( bGeneralSizer ) ;
m_panelGeneral - > Layout ( ) ;
bGeneralSizer - > Fit ( m_panelGeneral ) ;
m_notebook - > AddPage ( m_panelGeneral , _ ( " General " ) , true ) ;
m_localSettingsPanel = new wxPanel ( m_notebook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * bSizerPanelClearance ;
bSizerPanelClearance = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
wxBoxSizer * bSizerClearance ;
bSizerClearance = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-03-28 17:14:04 +00:00
wxStaticBoxSizer * sbClearancesSizer ;
sbClearancesSizer = new wxStaticBoxSizer ( new wxStaticBox ( m_localSettingsPanel , wxID_ANY , _ ( " Clearances " ) ) , wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
wxStaticText * m_staticTextHint ;
2018-03-28 17:14:04 +00:00
m_staticTextHint = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Set values to 0 to use parent footprint or netclass values. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-04 16:20:41 +00:00
m_staticTextHint - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
sbClearancesSizer - > Add ( m_staticTextHint , 0 , wxLEFT | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-03-28 17:14:04 +00:00
m_staticTextInfoPosValue = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Positive clearance means area bigger than the pad (usual for mask clearance). " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-02-14 16:46:35 +00:00
m_staticTextInfoPosValue - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
sbClearancesSizer - > Add ( m_staticTextInfoPosValue , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-03-28 17:14:04 +00:00
m_staticTextInfoNegVal = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Negative clearance means area smaller than the pad (usual for paste clearance). " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-02-14 16:46:35 +00:00
m_staticTextInfoNegVal - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
sbClearancesSizer - > Add ( m_staticTextInfoNegVal , 0 , wxBOTTOM | wxLEFT | wxRIGHT , 5 ) ;
2021-10-22 18:55:06 +00:00
2013-05-26 04:36:44 +00:00
wxFlexGridSizer * fgClearancesGridSizer ;
fgClearancesGridSizer = new wxFlexGridSizer ( 4 , 3 , 0 , 0 ) ;
fgClearancesGridSizer - > AddGrowableCol ( 1 ) ;
fgClearancesGridSizer - > SetFlexibleDirection ( wxBOTH ) ;
fgClearancesGridSizer - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_clearanceLabel = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Pad clearance: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_clearanceLabel - > Wrap ( - 1 ) ;
2018-07-26 09:45:43 +00:00
m_clearanceLabel - > SetToolTip ( _ ( " This is the local net clearance for this pad. \n If 0, the footprint local value or the Netclass value is used. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-10-29 19:29:49 +00:00
fgClearancesGridSizer - > Add ( m_clearanceLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_clearanceCtrl = new wxTextCtrl ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgClearancesGridSizer - > Add ( m_clearanceCtrl , 0 , wxEXPAND | wxTOP | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_clearanceUnits = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Inch " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_clearanceUnits - > Wrap ( - 1 ) ;
fgClearancesGridSizer - > Add ( m_clearanceUnits , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_maskMarginLabel = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Solder mask clearance: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_maskMarginLabel - > Wrap ( - 1 ) ;
m_maskMarginLabel - > SetToolTip ( _ ( " This is the local clearance between this pad and the solder mask. \n If 0, the footprint local value or the global value is used. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-10-29 19:29:49 +00:00
fgClearancesGridSizer - > Add ( m_maskMarginLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_maskMarginCtrl = new wxTextCtrl ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgClearancesGridSizer - > Add ( m_maskMarginCtrl , 0 , wxEXPAND | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_maskMarginUnits = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Inch " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_maskMarginUnits - > Wrap ( - 1 ) ;
fgClearancesGridSizer - > Add ( m_maskMarginUnits , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginLabel = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Solder paste absolute clearance: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_pasteMarginLabel - > Wrap ( - 1 ) ;
m_pasteMarginLabel - > SetToolTip ( _ ( " This is the local clearance between this pad and the solder paste. \n If 0, the footprint value or the global value is used. \n The final clearance value is the sum of this value and the clearance value ratio. \n A negative value means a smaller mask size than pad size. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-10-29 19:29:49 +00:00
fgClearancesGridSizer - > Add ( m_pasteMarginLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginCtrl = new wxTextCtrl ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgClearancesGridSizer - > Add ( m_pasteMarginCtrl , 0 , wxEXPAND | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginUnits = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Inch " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_pasteMarginUnits - > Wrap ( - 1 ) ;
fgClearancesGridSizer - > Add ( m_pasteMarginUnits , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginRatioLabel = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Solder paste relative clearance: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_pasteMarginRatioLabel - > Wrap ( - 1 ) ;
m_pasteMarginRatioLabel - > SetToolTip ( _ ( " This is the local clearance ratio in percent between this pad and the solder paste. \n A value of 10 means the clearance value is 10 percent of the pad size. \n If 0, the footprint value or the global value is used. \n The final clearance value is the sum of this value and the clearance value. \n A negative value means a smaller mask size than pad size. " ) ) ;
2019-08-21 14:31:52 +00:00
2021-10-29 19:29:49 +00:00
fgClearancesGridSizer - > Add ( m_pasteMarginRatioLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginRatioCtrl = new TEXT_CTRL_EVAL ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgClearancesGridSizer - > Add ( m_pasteMarginRatioCtrl , 0 , wxBOTTOM | wxEXPAND | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-08-06 14:26:08 +00:00
m_pasteMarginRatioUnits = new wxStaticText ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " % " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_pasteMarginRatioUnits - > Wrap ( - 1 ) ;
fgClearancesGridSizer - > Add ( m_pasteMarginRatioUnits , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
sbClearancesSizer - > Add ( fgClearancesGridSizer , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
m_nonCopperWarningBook = new wxSimplebook ( sbClearancesSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
wxPanel * notePanel ;
notePanel = new wxPanel ( m_nonCopperWarningBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * bNoteSizer ;
bNoteSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
m_nonCopperNote = new wxStaticText ( notePanel , wxID_ANY , _ ( " Note: solder mask and paste values are used only for pads on copper layers. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_nonCopperNote - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
bNoteSizer - > Add ( m_nonCopperNote , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
m_staticTextInfoPaste = new wxStaticText ( notePanel , wxID_ANY , _ ( " Note: solder paste clearances (absolute and relative) are added to determine the final clearance. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextInfoPaste - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
bNoteSizer - > Add ( m_staticTextInfoPaste , 0 , wxBOTTOM | wxLEFT | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
notePanel - > SetSizer ( bNoteSizer ) ;
notePanel - > Layout ( ) ;
bNoteSizer - > Fit ( notePanel ) ;
m_nonCopperWarningBook - > AddPage ( notePanel , _ ( " a page " ) , false ) ;
wxPanel * warningPanel ;
warningPanel = new wxPanel ( m_nonCopperWarningBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * bWarningSizer ;
bWarningSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
bWarningSizer - > SetMinSize ( wxSize ( - 1 , 50 ) ) ;
2018-05-04 16:20:41 +00:00
m_nonCopperWarningIcon = new wxStaticBitmap ( warningPanel , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxSize ( 48 , 48 ) , 0 ) ;
m_nonCopperWarningIcon - > SetMinSize ( wxSize ( 48 , 48 ) ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
bWarningSizer - > Add ( m_nonCopperWarningIcon , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
m_nonCopperWarningText = new wxStaticText ( warningPanel , wxID_ANY , _ ( " Note: solder mask and paste values are used only for pads on copper layers. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_nonCopperWarningText - > Wrap ( - 1 ) ;
bWarningSizer - > Add ( m_nonCopperWarningText , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
warningPanel - > SetSizer ( bWarningSizer ) ;
warningPanel - > Layout ( ) ;
bWarningSizer - > Fit ( warningPanel ) ;
m_nonCopperWarningBook - > AddPage ( warningPanel , _ ( " a page " ) , false ) ;
2019-08-21 14:31:52 +00:00
2018-03-28 17:14:04 +00:00
sbClearancesSizer - > Add ( m_nonCopperWarningBook , 1 , wxEXPAND | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
bSizerClearance - > Add ( sbClearancesSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-04 16:20:41 +00:00
m_sbSizerZonesSettings = new wxStaticBoxSizer ( new wxStaticBox ( m_localSettingsPanel , wxID_ANY , _ ( " Connection to Copper Zones " ) ) , wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxFlexGridSizer * fgSizerCopperZonesOpts ;
2017-10-02 07:03:26 +00:00
fgSizerCopperZonesOpts = new wxFlexGridSizer ( 0 , 3 , 0 , 0 ) ;
2017-01-13 17:51:22 +00:00
fgSizerCopperZonesOpts - > AddGrowableCol ( 1 ) ;
fgSizerCopperZonesOpts - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerCopperZonesOpts - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_staticText40 = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Pad connection: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_staticText40 - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
fgSizerCopperZonesOpts - > Add ( m_staticText40 , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2014-10-12 15:12:02 +00:00
wxString m_ZoneConnectionChoiceChoices [ ] = { _ ( " From parent footprint " ) , _ ( " Solid " ) , _ ( " Thermal relief " ) , _ ( " None " ) } ;
2013-05-26 04:36:44 +00:00
int m_ZoneConnectionChoiceNChoices = sizeof ( m_ZoneConnectionChoiceChoices ) / sizeof ( wxString ) ;
2017-01-13 17:51:22 +00:00
m_ZoneConnectionChoice = new wxChoice ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_ZoneConnectionChoiceNChoices , m_ZoneConnectionChoiceChoices , 0 ) ;
2013-05-26 04:36:44 +00:00
m_ZoneConnectionChoice - > SetSelection ( 0 ) ;
2019-06-21 16:57:02 +00:00
fgSizerCopperZonesOpts - > Add ( m_ZoneConnectionChoice , 0 , wxEXPAND | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
fgSizerCopperZonesOpts - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_spokeWidthLabel = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Thermal relief spoke width: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_spokeWidthLabel - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
fgSizerCopperZonesOpts - > Add ( m_spokeWidthLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_spokeWidthCtrl = new wxTextCtrl ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-06-21 16:57:02 +00:00
fgSizerCopperZonesOpts - > Add ( m_spokeWidthCtrl , 0 , wxEXPAND | wxLEFT | wxTOP | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_spokeWidthUnits = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Inch " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_spokeWidthUnits - > Wrap ( - 1 ) ;
fgSizerCopperZonesOpts - > Add ( m_spokeWidthUnits , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thermalGapLabel = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Thermal relief gap: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_thermalGapLabel - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
fgSizerCopperZonesOpts - > Add ( m_thermalGapLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thermalGapCtrl = new wxTextCtrl ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-06-21 16:57:02 +00:00
fgSizerCopperZonesOpts - > Add ( m_thermalGapCtrl , 0 , wxEXPAND | wxTOP | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thermalGapUnits = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Inch " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_thermalGapUnits - > Wrap ( - 1 ) ;
2019-06-21 16:57:02 +00:00
fgSizerCopperZonesOpts - > Add ( m_thermalGapUnits , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-06-21 16:57:02 +00:00
m_staticTextcps = new wxStaticText ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , _ ( " Custom pad shape in zone: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-12-21 09:23:17 +00:00
m_staticTextcps - > Wrap ( - 1 ) ;
2021-10-29 19:29:49 +00:00
fgSizerCopperZonesOpts - > Add ( m_staticTextcps , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-12-21 09:23:17 +00:00
wxString m_ZoneCustomPadShapeChoices [ ] = { _ ( " Use pad shape " ) , _ ( " Use pad convex hull " ) } ;
int m_ZoneCustomPadShapeNChoices = sizeof ( m_ZoneCustomPadShapeChoices ) / sizeof ( wxString ) ;
2019-06-21 16:57:02 +00:00
m_ZoneCustomPadShape = new wxChoice ( m_sbSizerZonesSettings - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , m_ZoneCustomPadShapeNChoices , m_ZoneCustomPadShapeChoices , 0 ) ;
2017-12-21 09:23:17 +00:00
m_ZoneCustomPadShape - > SetSelection ( 0 ) ;
2019-06-21 16:57:02 +00:00
fgSizerCopperZonesOpts - > Add ( m_ZoneCustomPadShape , 0 , wxEXPAND | wxTOP | wxBOTTOM | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-06-21 16:57:02 +00:00
m_sbSizerZonesSettings - > Add ( fgSizerCopperZonesOpts , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-06-21 16:57:02 +00:00
bSizerClearance - > Add ( m_sbSizerZonesSettings , 0 , wxALL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizerPanelClearance - > Add ( bSizerClearance , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
m_localSettingsPanel - > SetSizer ( bSizerPanelClearance ) ;
m_localSettingsPanel - > Layout ( ) ;
bSizerPanelClearance - > Fit ( m_localSettingsPanel ) ;
2021-05-29 18:12:23 +00:00
m_notebook - > AddPage ( m_localSettingsPanel , _ ( " Clearance Overrides and Settings " ) , false ) ;
2017-09-20 08:28:52 +00:00
m_panelCustomShapePrimitives = new wxPanel ( m_notebook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
m_bSizerPanelPrimitives = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
wxBoxSizer * bSizerAboveList ;
bSizerAboveList = new wxBoxSizer ( wxHORIZONTAL ) ;
m_staticTextPrimitivesList = new wxStaticText ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Primitives list: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-09-20 08:28:52 +00:00
m_staticTextPrimitivesList - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
bSizerAboveList - > Add ( m_staticTextPrimitivesList , 1 , wxEXPAND | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_staticTextPrimitiveListWarning = new wxStaticText ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Note: coordinates are relative to anchor pad, orientation 0. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-09-20 08:28:52 +00:00
m_staticTextPrimitiveListWarning - > Wrap ( - 1 ) ;
2020-06-11 10:52:05 +00:00
bSizerAboveList - > Add ( m_staticTextPrimitiveListWarning , 0 , wxEXPAND | wxLEFT | wxRIGHT | wxTOP , 7 ) ;
2020-06-01 16:05:40 +00:00
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_bSizerPanelPrimitives - > Add ( bSizerAboveList , 0 , wxEXPAND | wxBOTTOM , 3 ) ;
2019-08-21 14:31:52 +00:00
2017-09-20 08:28:52 +00:00
m_listCtrlPrimitives = new wxListView ( m_panelCustomShapePrimitives , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLC_HRULES | wxLC_NO_HEADER | wxLC_REPORT ) ;
2020-06-01 16:05:40 +00:00
m_bSizerPanelPrimitives - > Add ( m_listCtrlPrimitives , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizerButtons ;
bSizerButtons = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizerButtonsUpper ;
bSizerButtonsUpper = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
m_buttonAddShape = new wxButton ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Add Primitive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bSizerButtonsUpper - > Add ( m_buttonAddShape , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-09-20 08:28:52 +00:00
m_buttonEditShape = new wxButton ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Edit Primitive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-01-13 17:51:22 +00:00
bSizerButtonsUpper - > Add ( m_buttonEditShape , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-09-20 08:28:52 +00:00
m_buttonDup = new wxButton ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Duplicate Primitive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-01-13 17:51:22 +00:00
bSizerButtonsUpper - > Add ( m_buttonDup , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-19 16:11:58 +00:00
m_buttonGeometry = new wxButton ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Transform Primitive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bSizerButtonsUpper - > Add ( m_buttonGeometry , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-01 16:05:40 +00:00
bSizerButtonsUpper - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
m_buttonDel = new wxButton ( m_panelCustomShapePrimitives , wxID_ANY , _ ( " Delete Primitive " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bSizerButtonsUpper - > Add ( m_buttonDel , 0 , wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-06-11 10:52:05 +00:00
bSizerButtons - > Add ( bSizerButtonsUpper , 0 , wxEXPAND , 5 ) ;
2020-06-01 16:05:40 +00:00
2020-06-11 10:52:05 +00:00
m_bSizerPanelPrimitives - > Add ( bSizerButtons , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-09-20 08:28:52 +00:00
m_panelCustomShapePrimitives - > SetSizer ( m_bSizerPanelPrimitives ) ;
m_panelCustomShapePrimitives - > Layout ( ) ;
m_bSizerPanelPrimitives - > Fit ( m_panelCustomShapePrimitives ) ;
m_notebook - > AddPage ( m_panelCustomShapePrimitives , _ ( " Custom Shape Primitives " ) , false ) ;
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
bSizerUpper - > Add ( m_notebook , 0 , wxEXPAND | wxTOP | wxBOTTOM | wxLEFT , 5 ) ;
2020-08-23 17:11:47 +00:00
2013-05-26 04:36:44 +00:00
wxBoxSizer * bSizerDisplayPad ;
bSizerDisplayPad = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2020-06-05 18:07:23 +00:00
bSizerDisplayPad - > SetMinSize ( wxSize ( 290 , - 1 ) ) ;
2019-08-21 14:31:52 +00:00
2018-02-08 23:41:45 +00:00
bSizerDisplayPad - > Add ( 0 , 0 , 0 , wxBOTTOM | wxEXPAND | wxTOP , 3 ) ;
2019-08-21 14:31:52 +00:00
2020-08-23 17:11:47 +00:00
bSizerDisplayPad - > Add ( 0 , 10 , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
m_stackupImagesBook = new wxSimplebook ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxBORDER_SIMPLE ) ;
2020-09-08 22:34:10 +00:00
page0 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page0Sizer ;
page0Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage0 = new wxStaticBitmap ( page0 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page0Sizer - > Add ( m_stackupImage0 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page0 - > SetSizer ( page0Sizer ) ;
page0 - > Layout ( ) ;
page0Sizer - > Fit ( page0 ) ;
m_stackupImagesBook - > AddPage ( page0 , _ ( " a page " ) , false ) ;
page1 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page1Sizer ;
page1Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage1 = new wxStaticBitmap ( page1 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page1Sizer - > Add ( m_stackupImage1 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page1 - > SetSizer ( page1Sizer ) ;
page1 - > Layout ( ) ;
page1Sizer - > Fit ( page1 ) ;
m_stackupImagesBook - > AddPage ( page1 , _ ( " a page " ) , false ) ;
page2 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page2Sizer ;
page2Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage2 = new wxStaticBitmap ( page2 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page2Sizer - > Add ( m_stackupImage2 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page2 - > SetSizer ( page2Sizer ) ;
page2 - > Layout ( ) ;
page2Sizer - > Fit ( page2 ) ;
m_stackupImagesBook - > AddPage ( page2 , _ ( " a page " ) , false ) ;
page3 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page3Sizer ;
page3Sizer = new wxBoxSizer ( wxVERTICAL ) ;
page3 - > SetSizer ( page3Sizer ) ;
page3 - > Layout ( ) ;
page3Sizer - > Fit ( page3 ) ;
m_stackupImagesBook - > AddPage ( page3 , _ ( " a page " ) , false ) ;
2020-09-08 23:39:33 +00:00
page4 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page4Sizer ;
page4Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage4 = new wxStaticBitmap ( page4 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page4Sizer - > Add ( m_stackupImage4 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page4 - > SetSizer ( page4Sizer ) ;
page4 - > Layout ( ) ;
page4Sizer - > Fit ( page4 ) ;
m_stackupImagesBook - > AddPage ( page4 , _ ( " a page " ) , false ) ;
page5 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page5Sizer ;
page5Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage5 = new wxStaticBitmap ( page5 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page5Sizer - > Add ( m_stackupImage5 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page5 - > SetSizer ( page5Sizer ) ;
page5 - > Layout ( ) ;
page5Sizer - > Fit ( page5 ) ;
m_stackupImagesBook - > AddPage ( page5 , _ ( " a page " ) , false ) ;
page6 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page6Sizer ;
page6Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage6 = new wxStaticBitmap ( page6 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page6Sizer - > Add ( m_stackupImage6 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page6 - > SetSizer ( page6Sizer ) ;
page6 - > Layout ( ) ;
page6Sizer - > Fit ( page6 ) ;
m_stackupImagesBook - > AddPage ( page6 , _ ( " a page " ) , false ) ;
page7 = new wxPanel ( m_stackupImagesBook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
wxBoxSizer * page7Sizer ;
page7Sizer = new wxBoxSizer ( wxVERTICAL ) ;
m_stackupImage7 = new wxStaticBitmap ( page7 , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
page7Sizer - > Add ( m_stackupImage7 , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
page7 - > SetSizer ( page7Sizer ) ;
page7 - > Layout ( ) ;
page7Sizer - > Fit ( page7 ) ;
m_stackupImagesBook - > AddPage ( page7 , _ ( " a page " ) , false ) ;
2020-09-08 22:34:10 +00:00
2021-04-25 18:25:50 +00:00
bSizerDisplayPad - > Add ( m_stackupImagesBook , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 6 ) ;
2020-09-08 23:39:33 +00:00
m_boardViewPanel = new wxPanel ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
m_padPreviewSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_padPreviewSizer - > SetMinSize ( wxSize ( 280 , - 1 ) ) ;
m_boardViewPanel - > SetSizer ( m_padPreviewSizer ) ;
m_boardViewPanel - > Layout ( ) ;
m_padPreviewSizer - > Fit ( m_boardViewPanel ) ;
bSizerDisplayPad - > Add ( m_boardViewPanel , 1 , wxEXPAND | wxALL , 2 ) ;
2020-08-23 17:11:47 +00:00
2020-09-08 23:39:33 +00:00
bSizerUpper - > Add ( bSizerDisplayPad , 1 , wxEXPAND | wxTOP | wxRIGHT , 10 ) ;
2020-08-23 17:11:47 +00:00
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
m_MainSizer - > Add ( bSizerUpper , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
wxBoxSizer * bottomSizer ;
bottomSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2020-08-23 17:11:47 +00:00
2021-10-19 23:36:11 +00:00
m_parentInfo = new wxStaticText ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-09-08 23:39:33 +00:00
m_parentInfo - > Wrap ( - 1 ) ;
bottomSizer - > Add ( m_parentInfo , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT , 8 ) ;
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
bottomSizer - > Add ( 20 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-09-08 23:39:33 +00:00
m_cbShowPadOutline = new wxCheckBox ( this , wxID_ANY , _ ( " Preview pad in sketch mode " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bottomSizer - > Add ( m_cbShowPadOutline , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2021-10-19 23:36:11 +00:00
bottomSizer - > Add ( 40 , 0 , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2016-04-06 18:15:49 +00:00
m_sdbSizer = new wxStdDialogButtonSizer ( ) ;
m_sdbSizerOK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer - > AddButton ( m_sdbSizerOK ) ;
m_sdbSizerCancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer - > AddButton ( m_sdbSizerCancel ) ;
m_sdbSizer - > Realize ( ) ;
2019-08-21 14:31:52 +00:00
2020-09-24 08:18:28 +00:00
bottomSizer - > Add ( m_sdbSizer , 0 , wxBOTTOM | wxRIGHT | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2020-09-08 23:39:33 +00:00
m_MainSizer - > Add ( bottomSizer , 0 , wxEXPAND | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
this - > SetSizer ( m_MainSizer ) ;
this - > Layout ( ) ;
2020-06-01 16:05:40 +00:00
m_MainSizer - > Fit ( this ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
this - > Centre ( wxBOTH ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
// Connect Events
2017-01-22 21:51:37 +00:00
this - > Connect ( wxEVT_INIT_DIALOG , wxInitDialogEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnInitDialog ) ) ;
2018-07-24 13:56:20 +00:00
m_panelGeneral - > Connect ( wxEVT_UPDATE_UI , wxUpdateUIEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnUpdateUI ) , NULL , this ) ;
2021-10-22 18:55:06 +00:00
m_padType - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadTypeSelected ) , NULL , this ) ;
m_padNumCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2020-11-12 19:13:28 +00:00
m_PadShapeSelector - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPadShapeSelection ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_trapDeltaCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_trapAxisCtrl - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_cornerRatioCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
m_cornerRadiusCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerRadiusChange ) , NULL , this ) ;
m_chamferRatioCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2018-08-29 07:13:07 +00:00
m_cbTopLeft - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbTopRight - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomLeft - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomRight - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_mixedChamferRatioCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2020-06-04 15:07:23 +00:00
m_cbTopLeft1 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbTopRight1 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomLeft1 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomRight1 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_mixedCornerRatioCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_sizeXCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_sizeYCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-10-30 09:56:24 +00:00
m_cb_padrotation - > Connect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadOrientEvent ) , NULL , this ) ;
m_cb_padrotation - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadOrientEvent ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_holeShapeCtrl - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnDrillShapeSelected ) , NULL , this ) ;
m_holeXCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_holeYCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_offsetShapeOpt - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnOffsetCheckbox ) , NULL , this ) ;
m_offsetXCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_offsetYCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_padToDieOpt - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPadToDieCheckbox ) , NULL , this ) ;
2020-08-23 17:11:47 +00:00
m_rbCopperLayersSel - > Connect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetCopperLayers ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_PadLayerAdhCmp - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerAdhCu - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerPateCmp - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerPateCu - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerSilkCmp - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerSilkCu - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerMaskCmp - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerMaskCu - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerDraft - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerECO1 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerECO2 - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_clearanceCtrl - > Connect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2018-05-04 16:20:41 +00:00
m_nonCopperWarningBook - > Connect ( wxEVT_UPDATE_UI , wxUpdateUIEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnUpdateUINonCopperWarning ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_listCtrlPrimitives - > Connect ( wxEVT_LEFT_DCLICK , wxMouseEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onPrimitiveDClick ) , NULL , this ) ;
m_listCtrlPrimitives - > Connect ( wxEVT_COMMAND_LIST_ITEM_DESELECTED , wxListEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPrimitiveSelection ) , NULL , this ) ;
m_listCtrlPrimitives - > Connect ( wxEVT_COMMAND_LIST_ITEM_SELECTED , wxListEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPrimitiveSelection ) , NULL , this ) ;
m_buttonAddShape - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onAddPrimitive ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_buttonEditShape - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onEditPrimitive ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_buttonDup - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onDuplicatePrimitive ) , NULL , this ) ;
2017-01-13 17:51:22 +00:00
m_buttonGeometry - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onGeometryTransform ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_buttonDel - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onDeletePrimitive ) , NULL , this ) ;
2018-01-13 16:05:09 +00:00
m_cbShowPadOutline - > Connect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onChangePadMode ) , NULL , this ) ;
2017-11-07 17:33:13 +00:00
m_sdbSizerCancel - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnCancel ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
}
DIALOG_PAD_PROPERTIES_BASE : : ~ DIALOG_PAD_PROPERTIES_BASE ( )
{
// Disconnect Events
2017-01-22 21:51:37 +00:00
this - > Disconnect ( wxEVT_INIT_DIALOG , wxInitDialogEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnInitDialog ) ) ;
2018-07-24 13:56:20 +00:00
m_panelGeneral - > Disconnect ( wxEVT_UPDATE_UI , wxUpdateUIEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnUpdateUI ) , NULL , this ) ;
2021-10-22 18:55:06 +00:00
m_padType - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadTypeSelected ) , NULL , this ) ;
m_padNumCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2020-11-12 19:13:28 +00:00
m_PadShapeSelector - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPadShapeSelection ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_trapDeltaCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_trapAxisCtrl - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_cornerRatioCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
m_cornerRadiusCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerRadiusChange ) , NULL , this ) ;
m_chamferRatioCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2018-08-29 07:13:07 +00:00
m_cbTopLeft - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbTopRight - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomLeft - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomRight - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_mixedChamferRatioCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2020-06-04 15:07:23 +00:00
m_cbTopLeft1 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbTopRight1 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomLeft1 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_cbBottomRight1 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-08-06 14:26:08 +00:00
m_mixedCornerRatioCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onCornerSizePercentChange ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_sizeXCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_sizeYCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2021-10-30 09:56:24 +00:00
m_cb_padrotation - > Disconnect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadOrientEvent ) , NULL , this ) ;
m_cb_padrotation - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : PadOrientEvent ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_holeShapeCtrl - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnDrillShapeSelected ) , NULL , this ) ;
m_holeXCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_holeYCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_offsetShapeOpt - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnOffsetCheckbox ) , NULL , this ) ;
m_offsetXCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_offsetYCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
m_padToDieOpt - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPadToDieCheckbox ) , NULL , this ) ;
2020-08-23 17:11:47 +00:00
m_rbCopperLayersSel - > Disconnect ( wxEVT_COMMAND_CHOICE_SELECTED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetCopperLayers ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_PadLayerAdhCmp - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerAdhCu - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerPateCmp - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerPateCu - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerSilkCmp - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerSilkCu - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerMaskCmp - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerMaskCu - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerDraft - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerECO1 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
m_PadLayerECO2 - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnSetLayers ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_clearanceCtrl - > Disconnect ( wxEVT_COMMAND_TEXT_UPDATED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnValuesChanged ) , NULL , this ) ;
2018-05-04 16:20:41 +00:00
m_nonCopperWarningBook - > Disconnect ( wxEVT_UPDATE_UI , wxUpdateUIEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnUpdateUINonCopperWarning ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_listCtrlPrimitives - > Disconnect ( wxEVT_LEFT_DCLICK , wxMouseEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onPrimitiveDClick ) , NULL , this ) ;
m_listCtrlPrimitives - > Disconnect ( wxEVT_COMMAND_LIST_ITEM_DESELECTED , wxListEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPrimitiveSelection ) , NULL , this ) ;
m_listCtrlPrimitives - > Disconnect ( wxEVT_COMMAND_LIST_ITEM_SELECTED , wxListEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnPrimitiveSelection ) , NULL , this ) ;
m_buttonAddShape - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onAddPrimitive ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_buttonEditShape - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onEditPrimitive ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_buttonDup - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onDuplicatePrimitive ) , NULL , this ) ;
2017-01-13 17:51:22 +00:00
m_buttonGeometry - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onGeometryTransform ) , NULL , this ) ;
2020-06-01 16:05:40 +00:00
m_buttonDel - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onDeletePrimitive ) , NULL , this ) ;
2018-01-13 16:05:09 +00:00
m_cbShowPadOutline - > Disconnect ( wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : onChangePadMode ) , NULL , this ) ;
2017-11-07 17:33:13 +00:00
m_sdbSizerCancel - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PROPERTIES_BASE : : OnCancel ) , NULL , this ) ;
2019-08-21 14:31:52 +00:00
2013-05-26 04:36:44 +00:00
}
2017-01-13 17:51:22 +00:00
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVES_PROPERTIES_BASE : : DIALOG_PAD_PRIMITIVES_PROPERTIES_BASE ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & pos , const wxSize & size , long style ) : DIALOG_SHIM ( parent , id , title , pos , size , style )
2017-01-13 17:51:22 +00:00
{
this - > SetSizeHints ( wxDefaultSize , wxDefaultSize ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizermain ;
bSizermain = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxFlexGridSizer * fgSizerShapeProperties ;
2019-11-06 17:11:00 +00:00
fgSizerShapeProperties = new wxFlexGridSizer ( 0 , 7 , 5 , 0 ) ;
2017-01-13 17:51:22 +00:00
fgSizerShapeProperties - > AddGrowableCol ( 2 ) ;
fgSizerShapeProperties - > AddGrowableCol ( 4 ) ;
fgSizerShapeProperties - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerShapeProperties - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_staticTextPosStart = new wxStaticText ( this , wxID_ANY , _ ( " Start point " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-01-13 17:51:22 +00:00
m_staticTextPosStart - > Wrap ( - 1 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_staticTextPosStart , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_startXLabel = new wxStaticText ( this , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_startXLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_startXLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_startXCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_startXCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_startXUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_startXUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_startXUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_startYLabel = new wxStaticText ( this , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_startYLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_startYLabel , 0 , wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_startYCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_startYCtrl , 0 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_startYUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_startYUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_startYUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-11-06 17:11:00 +00:00
m_staticTextPosCtrl1 = new wxStaticText ( this , wxID_ANY , _ ( " Control point 1 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-04-14 17:58:35 +00:00
m_staticTextPosCtrl1 - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_staticTextPosCtrl1 , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1XLabel = new wxStaticText ( this , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl1XLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl1XLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1XCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-11-06 17:11:00 +00:00
fgSizerShapeProperties - > Add ( m_ctrl1XCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1XUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl1XUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl1XUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1YLabel = new wxStaticText ( this , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl1YLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl1YLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1YCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-11-06 17:11:00 +00:00
fgSizerShapeProperties - > Add ( m_ctrl1YCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl1YUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl1YUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl1YUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-11-06 17:11:00 +00:00
m_staticTextPosCtrl2 = new wxStaticText ( this , wxID_ANY , _ ( " Control point 2 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-04-14 17:58:35 +00:00
m_staticTextPosCtrl2 - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_staticTextPosCtrl2 , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2XLabel = new wxStaticText ( this , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl2XLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl2XLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2XCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-11-06 17:11:00 +00:00
fgSizerShapeProperties - > Add ( m_ctrl2XCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2XUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl2XUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl2XUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2YLabel = new wxStaticText ( this , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl2YLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl2YLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2YCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2019-11-06 17:11:00 +00:00
fgSizerShapeProperties - > Add ( m_ctrl2YCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2019-04-14 17:58:35 +00:00
m_ctrl2YUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ctrl2YUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_ctrl2YUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_staticTextPosEnd = new wxStaticText ( this , wxID_ANY , _ ( " End point " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-01-13 17:51:22 +00:00
m_staticTextPosEnd - > Wrap ( - 1 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_staticTextPosEnd , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_endXLabel = new wxStaticText ( this , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_endXLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_endXLabel , 0 , wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_endXCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_endXCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_endXUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_endXUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_endXUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_endYLabel = new wxStaticText ( this , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_endYLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_endYLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_endYCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_endYCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_endYUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_endYUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_endYUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_radiusLabel = new wxStaticText ( this , wxID_ANY , _ ( " Radius: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_radiusLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_radiusLabel , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_radiusCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( m_radiusCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_radiusUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_radiusUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_radiusUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-14 01:16:02 +00:00
m_thicknessLabel = new wxStaticText ( this , wxID_ANY , _ ( " Line width: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_thicknessLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_thicknessLabel , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thicknessCtrl = new wxTextCtrl ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerShapeProperties - > Add ( m_thicknessCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thicknessUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_thicknessUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties - > Add ( m_thicknessUnits , 0 , wxALIGN_CENTER_VERTICAL | wxBOTTOM | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
fgSizerShapeProperties - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-14 01:16:02 +00:00
m_filledCtrl = new wxCheckBox ( this , wxID_ANY , _ ( " Filled shape " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerShapeProperties - > Add ( m_filledCtrl , 0 , wxBOTTOM | wxRIGHT | wxLEFT | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-14 01:16:02 +00:00
bSizermain - > Add ( fgSizerShapeProperties , 1 , wxEXPAND | wxALL , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_staticline1 = new wxStaticLine ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
2018-05-23 06:11:47 +00:00
bSizermain - > Add ( m_staticline1 , 0 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_sdbSizer = new wxStdDialogButtonSizer ( ) ;
m_sdbSizerOK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer - > AddButton ( m_sdbSizerOK ) ;
m_sdbSizerCancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer - > AddButton ( m_sdbSizerCancel ) ;
m_sdbSizer - > Realize ( ) ;
2019-08-21 14:31:52 +00:00
2017-12-27 17:09:27 +00:00
bSizermain - > Add ( m_sdbSizer , 0 , wxALL | wxBOTTOM | wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > SetSizer ( bSizermain ) ;
this - > Layout ( ) ;
2017-12-27 17:09:27 +00:00
bSizermain - > Fit ( this ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > Centre ( wxBOTH ) ;
}
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVES_PROPERTIES_BASE : : ~ DIALOG_PAD_PRIMITIVES_PROPERTIES_BASE ( )
2017-01-13 17:51:22 +00:00
{
}
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVES_TRANSFORM_BASE : : DIALOG_PAD_PRIMITIVES_TRANSFORM_BASE ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & pos , const wxSize & size , long style ) : DIALOG_SHIM ( parent , id , title , pos , size , style )
2017-01-13 17:51:22 +00:00
{
this - > SetSizeHints ( wxDefaultSize , wxDefaultSize ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizermain ;
bSizermain = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxFlexGridSizer * fgSizerShapeProperties1 ;
fgSizerShapeProperties1 = new wxFlexGridSizer ( 0 , 7 , 3 , 0 ) ;
fgSizerShapeProperties1 - > AddGrowableCol ( 2 ) ;
fgSizerShapeProperties1 - > AddGrowableCol ( 4 ) ;
fgSizerShapeProperties1 - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerShapeProperties1 - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_staticTextMove = new wxStaticText ( this , wxID_ANY , _ ( " Move vector " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2017-01-13 17:51:22 +00:00
m_staticTextMove - > Wrap ( - 1 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( m_staticTextMove , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_xLabel = new wxStaticText ( this , wxID_ANY , _ ( " X: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_xLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_xLabel , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_xCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( m_xCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_xUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_xUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_xUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_yLabel = new wxStaticText ( this , wxID_ANY , _ ( " Y: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_yLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_yLabel , 0 , wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_yCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( m_yCtrl , 0 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_yUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_yUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_yUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_rotationLabel = new wxStaticText ( this , wxID_ANY , _ ( " Rotation: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_rotationLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_rotationLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_rotationCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( m_rotationCtrl , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_rotationUnits = new wxStaticText ( this , wxID_ANY , _ ( " deg " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_rotationUnits - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_rotationUnits , 0 , wxALIGN_CENTER_VERTICAL | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_scaleLabel = new wxStaticText ( this , wxID_ANY , _ ( " Scaling factor: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_scaleLabel - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_scaleLabel , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_scaleCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , _ ( " 1 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerShapeProperties1 - > Add ( m_scaleCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_staticTextDupCnt = new wxStaticText ( this , wxID_ANY , _ ( " Duplicate: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextDupCnt - > Wrap ( - 1 ) ;
fgSizerShapeProperties1 - > Add ( m_staticTextDupCnt , 0 , wxALL | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_spinCtrlDuplicateCount = new wxSpinCtrl ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , wxSP_ARROW_KEYS , 1 , 100 , 1 ) ;
fgSizerShapeProperties1 - > Add ( m_spinCtrlDuplicateCount , 0 , wxALL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
fgSizerShapeProperties1 - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizermain - > Add ( fgSizerShapeProperties1 , 1 , wxALL | wxEXPAND , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_staticline1 = new wxStaticLine ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
2018-05-23 06:11:47 +00:00
bSizermain - > Add ( m_staticline1 , 0 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_sdbSizer = new wxStdDialogButtonSizer ( ) ;
m_sdbSizerOK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer - > AddButton ( m_sdbSizerOK ) ;
m_sdbSizerCancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer - > AddButton ( m_sdbSizerCancel ) ;
m_sdbSizer - > Realize ( ) ;
2019-08-21 14:31:52 +00:00
2017-12-27 17:09:27 +00:00
bSizermain - > Add ( m_sdbSizer , 0 , wxALL | wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > SetSizer ( bSizermain ) ;
this - > Layout ( ) ;
2017-12-27 17:09:27 +00:00
bSizermain - > Fit ( this ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > Centre ( wxBOTH ) ;
}
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVES_TRANSFORM_BASE : : ~ DIALOG_PAD_PRIMITIVES_TRANSFORM_BASE ( )
2017-01-13 17:51:22 +00:00
{
}
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & pos , const wxSize & size , long style ) : DIALOG_SHIM ( parent , id , title , pos , size , style )
2017-01-13 17:51:22 +00:00
{
this - > SetSizeHints ( wxDefaultSize , wxDefaultSize ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizerMain ;
bSizerMain = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizerUpper ;
2018-05-23 06:11:47 +00:00
bSizerUpper = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxBoxSizer * bLeftSizer ;
bLeftSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-08-19 16:10:14 +00:00
m_gridCornersList = new WX_GRID ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxBORDER_SIMPLE ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Grid
m_gridCornersList - > CreateGrid ( 1 , 2 ) ;
m_gridCornersList - > EnableEditing ( true ) ;
m_gridCornersList - > EnableGridLines ( true ) ;
m_gridCornersList - > EnableDragGridSize ( false ) ;
m_gridCornersList - > SetMargins ( 0 , 0 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Columns
2020-11-14 01:16:02 +00:00
m_gridCornersList - > SetColSize ( 0 , 124 ) ;
m_gridCornersList - > SetColSize ( 1 , 124 ) ;
2017-01-13 17:51:22 +00:00
m_gridCornersList - > EnableDragColMove ( false ) ;
m_gridCornersList - > EnableDragColSize ( true ) ;
2021-10-31 16:32:24 +00:00
m_gridCornersList - > SetColLabelSize ( 22 ) ;
2017-01-13 17:51:22 +00:00
m_gridCornersList - > SetColLabelValue ( 0 , _ ( " Pos X " ) ) ;
m_gridCornersList - > SetColLabelValue ( 1 , _ ( " Pos Y " ) ) ;
2018-08-29 07:13:07 +00:00
m_gridCornersList - > SetColLabelAlignment ( wxALIGN_CENTER , wxALIGN_CENTER ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Rows
m_gridCornersList - > AutoSizeRows ( ) ;
m_gridCornersList - > EnableDragRowSize ( false ) ;
m_gridCornersList - > SetRowLabelSize ( 80 ) ;
2018-08-29 07:13:07 +00:00
m_gridCornersList - > SetRowLabelAlignment ( wxALIGN_CENTER , wxALIGN_CENTER ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Label Appearance
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Cell Defaults
m_gridCornersList - > SetDefaultCellAlignment ( wxALIGN_LEFT , wxALIGN_TOP ) ;
2018-05-23 06:11:47 +00:00
bLeftSizer - > Add ( m_gridCornersList , 1 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxBoxSizer * bSizerRightButts ;
bSizerRightButts = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
m_addButton = new wxBitmapButton ( this , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , wxBU_AUTODRAW | 0 ) ;
2018-05-23 06:11:47 +00:00
m_addButton - > SetMinSize ( wxSize ( 30 , 30 ) ) ;
2019-08-21 14:31:52 +00:00
2018-08-19 16:05:48 +00:00
bSizerRightButts - > Add ( m_addButton , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-19 16:05:48 +00:00
bSizerRightButts - > Add ( 0 , 0 , 0 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
m_deleteButton = new wxBitmapButton ( this , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , wxBU_AUTODRAW | 0 ) ;
2018-05-23 06:11:47 +00:00
m_deleteButton - > SetMinSize ( wxSize ( 30 , 30 ) ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizerRightButts - > Add ( m_deleteButton , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bLeftSizer - > Add ( bSizerRightButts , 0 , wxALIGN_CENTER_VERTICAL | wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
wxFlexGridSizer * fgSizerThickness ;
2020-11-14 01:16:02 +00:00
fgSizerThickness = new wxFlexGridSizer ( 0 , 4 , 0 , 0 ) ;
2017-01-13 17:51:22 +00:00
fgSizerThickness - > AddGrowableCol ( 1 ) ;
fgSizerThickness - > SetFlexibleDirection ( wxBOTH ) ;
fgSizerThickness - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2019-08-21 14:31:52 +00:00
2020-11-14 01:16:02 +00:00
m_thicknessLabel = new wxStaticText ( this , wxID_ANY , _ ( " Line width: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2018-05-23 06:11:47 +00:00
m_thicknessLabel - > Wrap ( - 1 ) ;
fgSizerThickness - > Add ( m_thicknessLabel , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-08-29 07:13:07 +00:00
m_thicknessCtrl = new TEXT_CTRL_EVAL ( this , wxID_ANY , _ ( " 0 " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2020-11-14 01:16:02 +00:00
fgSizerThickness - > Add ( m_thicknessCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_thicknessUnits = new wxStaticText ( this , wxID_ANY , _ ( " unit " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_thicknessUnits - > Wrap ( - 1 ) ;
fgSizerThickness - > Add ( m_thicknessUnits , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT , 5 ) ;
2019-08-21 14:31:52 +00:00
2020-11-14 01:16:02 +00:00
m_filledCtrl = new wxCheckBox ( this , wxID_ANY , _ ( " Filled shape " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
fgSizerThickness - > Add ( m_filledCtrl , 0 , wxALIGN_CENTER_VERTICAL | wxLEFT , 20 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bLeftSizer - > Add ( fgSizerThickness , 0 , wxALL | wxEXPAND , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizerUpper - > Add ( bLeftSizer , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxBoxSizer * bRightSizer ;
bRightSizer = new wxBoxSizer ( wxVERTICAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_panelPoly = new wxPanel ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
m_panelPoly - > SetBackgroundColour ( wxColour ( 0 , 0 , 0 ) ) ;
m_panelPoly - > SetMinSize ( wxSize ( 290 , 290 ) ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bRightSizer - > Add ( m_panelPoly , 1 , wxEXPAND | wxTOP | wxRIGHT , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxBoxSizer * m_warningSizer ;
m_warningSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_warningIcon = new wxStaticBitmap ( this , wxID_ANY , wxNullBitmap , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_warningIcon - > SetMinSize ( wxSize ( 50 , 50 ) ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_warningSizer - > Add ( m_warningIcon , 0 , wxALL | wxALIGN_CENTER_VERTICAL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_warningText = new wxStaticText ( this , wxID_ANY , _ ( " MyLabel " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_warningText - > Wrap ( - 1 ) ;
m_warningSizer - > Add ( m_warningText , 0 , wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_warningSizer - > Add ( 5 , 88 , 0 , 0 , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bRightSizer - > Add ( m_warningSizer , 0 , wxEXPAND | wxRIGHT , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizerUpper - > Add ( bRightSizer , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
bSizerMain - > Add ( bSizerUpper , 1 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_staticline3 = new wxStaticLine ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
2018-05-23 06:11:47 +00:00
bSizerMain - > Add ( m_staticline3 , 0 , wxEXPAND | wxRIGHT | wxLEFT , 10 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
wxBoxSizer * bSizer24 ;
bSizer24 = new wxBoxSizer ( wxHORIZONTAL ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
m_statusLine1 = new wxStaticText ( this , wxID_ANY , _ ( " Coordinates are relative to anchor pad, rotated 0.0 deg. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_statusLine1 - > Wrap ( - 1 ) ;
2020-11-14 01:16:02 +00:00
bSizer24 - > Add ( m_statusLine1 , 1 , wxALIGN_CENTER_VERTICAL | wxRIGHT | wxLEFT , 10 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
m_sdbSizer = new wxStdDialogButtonSizer ( ) ;
m_sdbSizerOK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer - > AddButton ( m_sdbSizerOK ) ;
m_sdbSizerCancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer - > AddButton ( m_sdbSizerCancel ) ;
m_sdbSizer - > Realize ( ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizer24 - > Add ( m_sdbSizer , 0 , wxEXPAND | wxALL , 5 ) ;
2019-08-21 14:31:52 +00:00
2018-05-23 06:11:47 +00:00
bSizerMain - > Add ( bSizer24 , 0 , wxEXPAND , 5 ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > SetSizer ( bSizerMain ) ;
this - > Layout ( ) ;
2017-12-27 17:09:27 +00:00
bSizerMain - > Fit ( this ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
this - > Centre ( wxBOTH ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
// Connect Events
2017-09-20 08:28:52 +00:00
m_gridCornersList - > Connect ( wxEVT_GRID_RANGE_SELECT , wxGridRangeSelectEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onGridSelect ) , NULL , this ) ;
m_gridCornersList - > Connect ( wxEVT_GRID_SELECT_CELL , wxGridEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onCellSelect ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_addButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : OnButtonAdd ) , NULL , this ) ;
m_deleteButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : OnButtonDelete ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_panelPoly - > Connect ( wxEVT_PAINT , wxPaintEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onPaintPolyPanel ) , NULL , this ) ;
m_panelPoly - > Connect ( wxEVT_SIZE , wxSizeEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onPolyPanelResize ) , NULL , this ) ;
2017-01-13 17:51:22 +00:00
}
2017-09-20 08:28:52 +00:00
DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : ~ DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE ( )
2017-01-13 17:51:22 +00:00
{
// Disconnect Events
2017-09-20 08:28:52 +00:00
m_gridCornersList - > Disconnect ( wxEVT_GRID_RANGE_SELECT , wxGridRangeSelectEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onGridSelect ) , NULL , this ) ;
m_gridCornersList - > Disconnect ( wxEVT_GRID_SELECT_CELL , wxGridEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onCellSelect ) , NULL , this ) ;
2018-05-23 06:11:47 +00:00
m_addButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : OnButtonAdd ) , NULL , this ) ;
m_deleteButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : OnButtonDelete ) , NULL , this ) ;
2017-09-20 08:28:52 +00:00
m_panelPoly - > Disconnect ( wxEVT_PAINT , wxPaintEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onPaintPolyPanel ) , NULL , this ) ;
m_panelPoly - > Disconnect ( wxEVT_SIZE , wxSizeEventHandler ( DIALOG_PAD_PRIMITIVE_POLY_PROPS_BASE : : onPolyPanelResize ) , NULL , this ) ;
2019-08-21 14:31:52 +00:00
2017-01-13 17:51:22 +00:00
}