2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
2016-08-15 15:16:49 +00:00
// C++ code generated with wxFormBuilder (version Jun 17 2015)
2013-05-26 04:36:44 +00:00
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
# include "dialog_design_rules_aux_helper_class.h"
# include "dialog_design_rules_base.h"
///////////////////////////////////////////////////////////////////////////
DIALOG_DESIGN_RULES_BASE : : DIALOG_DESIGN_RULES_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 ) ;
wxBoxSizer * bMainSizer ;
bMainSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_DRnotebook = new wxNotebook ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxNB_TOP ) ;
2015-12-17 22:56:23 +00:00
m_panelNetClassesEditor = new wxPanel ( m_DRnotebook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
2013-05-26 04:36:44 +00:00
wxBoxSizer * bpanelNetClassesSizer ;
bpanelNetClassesSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxStaticBoxSizer * sbSizerUpper ;
sbSizerUpper = new wxStaticBoxSizer ( new wxStaticBox ( m_panelNetClassesEditor , wxID_ANY , _ ( " Net Classes: " ) ) , wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_grid = new wxGrid ( sbSizerUpper - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxHSCROLL | wxSIMPLE_BORDER | wxTAB_TRAVERSAL | wxVSCROLL ) ;
2013-05-26 04:36:44 +00:00
// Grid
2016-08-15 15:16:49 +00:00
m_grid - > CreateGrid ( 1 , 8 ) ;
2013-05-26 04:36:44 +00:00
m_grid - > EnableEditing ( true ) ;
m_grid - > EnableGridLines ( true ) ;
m_grid - > EnableDragGridSize ( false ) ;
m_grid - > SetMargins ( 0 , 0 ) ;
// Columns
m_grid - > SetColSize ( 0 , 100 ) ;
m_grid - > SetColSize ( 1 , 120 ) ;
m_grid - > SetColSize ( 2 , 84 ) ;
m_grid - > SetColSize ( 3 , 85 ) ;
m_grid - > SetColSize ( 4 , 81 ) ;
m_grid - > SetColSize ( 5 , 90 ) ;
m_grid - > EnableDragColMove ( false ) ;
m_grid - > EnableDragColSize ( true ) ;
m_grid - > SetColLabelSize ( 40 ) ;
m_grid - > SetColLabelValue ( 0 , _ ( " Clearance " ) ) ;
m_grid - > SetColLabelValue ( 1 , _ ( " Track Width " ) ) ;
m_grid - > SetColLabelValue ( 2 , _ ( " Via Dia " ) ) ;
m_grid - > SetColLabelValue ( 3 , _ ( " Via Drill " ) ) ;
m_grid - > SetColLabelValue ( 4 , _ ( " uVia Dia " ) ) ;
m_grid - > SetColLabelValue ( 5 , _ ( " uVia Drill " ) ) ;
2016-08-15 15:16:49 +00:00
m_grid - > SetColLabelValue ( 6 , _ ( " Diff Pair Width " ) ) ;
m_grid - > SetColLabelValue ( 7 , _ ( " Diff Pair Gap " ) ) ;
2013-05-26 04:36:44 +00:00
m_grid - > SetColLabelAlignment ( wxALIGN_CENTRE , wxALIGN_CENTRE ) ;
// Rows
2015-02-06 10:54:55 +00:00
m_grid - > EnableDragRowSize ( false ) ;
2013-05-26 04:36:44 +00:00
m_grid - > SetRowLabelSize ( 120 ) ;
m_grid - > SetRowLabelValue ( 0 , _ ( " Default " ) ) ;
m_grid - > SetRowLabelAlignment ( wxALIGN_LEFT , wxALIGN_CENTRE ) ;
// Label Appearance
// Cell Defaults
m_grid - > SetDefaultCellAlignment ( wxALIGN_LEFT , wxALIGN_TOP ) ;
m_grid - > SetToolTip ( _ ( " Net Class parameters " ) ) ;
sbSizerUpper - > Add ( m_grid , 1 , wxEXPAND , 5 ) ;
wxBoxSizer * buttonBoxSizer ;
buttonBoxSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2015-12-17 22:56:23 +00:00
m_addButton = new wxButton ( sbSizerUpper - > GetStaticBox ( ) , wxID_ADD_NETCLASS , _ ( " Add " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_addButton - > SetToolTip ( _ ( " Add another Net Class " ) ) ;
2015-06-15 13:54:58 +00:00
buttonBoxSizer - > Add ( m_addButton , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-12-17 22:56:23 +00:00
m_removeButton = new wxButton ( sbSizerUpper - > GetStaticBox ( ) , wxID_REMOVE_NETCLASS , _ ( " Remove " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_removeButton - > SetToolTip ( _ ( " Remove the currently select Net Class \n The default Net Class cannot be removed " ) ) ;
2015-06-15 13:54:58 +00:00
buttonBoxSizer - > Add ( m_removeButton , 0 , wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-12-17 22:56:23 +00:00
m_moveUpButton = new wxButton ( sbSizerUpper - > GetStaticBox ( ) , wxID_ANY , _ ( " Move Up " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_moveUpButton - > SetToolTip ( _ ( " Move the currently selected Net Class up one row " ) ) ;
buttonBoxSizer - > Add ( m_moveUpButton , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2015-10-02 19:11:33 +00:00
sbSizerUpper - > Add ( buttonBoxSizer , 0 , wxALIGN_CENTER_HORIZONTAL | wxBOTTOM | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-10-02 19:11:33 +00:00
bpanelNetClassesSizer - > Add ( sbSizerUpper , 2 , wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * sbSizerNetSelectMain ;
sbSizerNetSelectMain = new wxStaticBoxSizer ( new wxStaticBox ( m_panelNetClassesEditor , wxID_ANY , _ ( " Membership: " ) ) , wxHORIZONTAL ) ;
wxBoxSizer * leftNetSelectBoxSizer ;
leftNetSelectBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_leftClassChoice = new wxComboBox ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 , NULL , wxCB_READONLY ) ;
2013-05-26 04:36:44 +00:00
leftNetSelectBoxSizer - > Add ( m_leftClassChoice , 0 , wxEXPAND , 5 ) ;
2015-12-17 22:56:23 +00:00
m_leftListCtrl = new NETS_LIST_CTRL ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLC_HRULES | wxLC_REPORT | wxLC_VIRTUAL | wxLC_VRULES | wxSUNKEN_BORDER ) ;
2013-05-26 04:36:44 +00:00
leftNetSelectBoxSizer - > Add ( m_leftListCtrl , 1 , wxEXPAND | wxTOP , 5 ) ;
sbSizerNetSelectMain - > Add ( leftNetSelectBoxSizer , 1 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
wxBoxSizer * bmiddleSizerNetSelect ;
bmiddleSizerNetSelect = new wxBoxSizer ( wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_buttonRightToLeft = new wxButton ( sbSizerNetSelectMain - > GetStaticBox ( ) , ID_LEFT_TO_RIGHT_COPY , _ ( " <<< " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_buttonRightToLeft - > SetToolTip ( _ ( " Move the selected nets in the right list to the left list " ) ) ;
2015-06-15 13:54:58 +00:00
bmiddleSizerNetSelect - > Add ( m_buttonRightToLeft , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-12-17 22:56:23 +00:00
m_buttonLeftToRight = new wxButton ( sbSizerNetSelectMain - > GetStaticBox ( ) , ID_RIGHT_TO_LEFT_COPY , _ ( " >>> " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_buttonLeftToRight - > SetToolTip ( _ ( " Move the selected nets in the left list to the right list " ) ) ;
2015-06-15 13:54:58 +00:00
bmiddleSizerNetSelect - > Add ( m_buttonLeftToRight , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-12-17 22:56:23 +00:00
m_buttonLeftSelAll = new wxButton ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , _ ( " << Select All " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_buttonLeftSelAll - > SetToolTip ( _ ( " Select all nets in the left list " ) ) ;
2015-06-15 13:54:58 +00:00
bmiddleSizerNetSelect - > Add ( m_buttonLeftSelAll , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-12-17 22:56:23 +00:00
m_buttonRightSelAll = new wxButton ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , _ ( " Select All >> " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_buttonRightSelAll - > SetToolTip ( _ ( " Select all nets in the right list " ) ) ;
2015-06-19 15:32:32 +00:00
bmiddleSizerNetSelect - > Add ( m_buttonRightSelAll , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
sbSizerNetSelectMain - > Add ( bmiddleSizerNetSelect , 0 , wxALIGN_CENTER_VERTICAL , 5 ) ;
wxBoxSizer * rghtNetSelectBoxSizer ;
rghtNetSelectBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_rightClassChoice = new wxComboBox ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 , NULL , wxCB_READONLY ) ;
2013-05-26 04:36:44 +00:00
rghtNetSelectBoxSizer - > Add ( m_rightClassChoice , 0 , wxEXPAND , 5 ) ;
2015-12-17 22:56:23 +00:00
m_rightListCtrl = new NETS_LIST_CTRL ( sbSizerNetSelectMain - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLC_HRULES | wxLC_REPORT | wxLC_VIRTUAL | wxLC_VRULES | wxSUNKEN_BORDER ) ;
2013-05-26 04:36:44 +00:00
rghtNetSelectBoxSizer - > Add ( m_rightListCtrl , 1 , wxEXPAND | wxTOP , 5 ) ;
sbSizerNetSelectMain - > Add ( rghtNetSelectBoxSizer , 1 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2015-10-02 19:11:33 +00:00
bpanelNetClassesSizer - > Add ( sbSizerNetSelectMain , 3 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2013-05-26 04:36:44 +00:00
m_panelNetClassesEditor - > SetSizer ( bpanelNetClassesSizer ) ;
m_panelNetClassesEditor - > Layout ( ) ;
bpanelNetClassesSizer - > Fit ( m_panelNetClassesEditor ) ;
m_DRnotebook - > AddPage ( m_panelNetClassesEditor , _ ( " Net Classes Editor " ) , true ) ;
2015-12-17 22:56:23 +00:00
m_panelGolbalDesignRules = new wxPanel ( m_DRnotebook , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL ) ;
2013-05-26 04:36:44 +00:00
wxBoxSizer * bpanelGlobRulesSizer ;
bpanelGlobRulesSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxBoxSizer * bDesignRulesUpperSizer ;
bDesignRulesUpperSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
wxStaticBoxSizer * sbViasOptionSizer ;
sbViasOptionSizer = new wxStaticBoxSizer ( new wxStaticBox ( m_panelGolbalDesignRules , wxID_ANY , _ ( " Via Options: " ) ) , wxVERTICAL ) ;
2013-08-28 16:14:39 +00:00
wxString m_OptViaTypeChoices [ ] = { _ ( " Do not allow blind/buried vias " ) , _ ( " Allow blind/buried vias " ) } ;
2013-05-26 04:36:44 +00:00
int m_OptViaTypeNChoices = sizeof ( m_OptViaTypeChoices ) / sizeof ( wxString ) ;
2015-12-17 22:56:23 +00:00
m_OptViaType = new wxRadioBox ( sbViasOptionSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Blind/buried Vias: " ) , wxDefaultPosition , wxDefaultSize , m_OptViaTypeNChoices , m_OptViaTypeChoices , 1 , wxRA_SPECIFY_COLS ) ;
2013-05-26 04:36:44 +00:00
m_OptViaType - > SetSelection ( 0 ) ;
2014-01-19 13:12:57 +00:00
m_OptViaType - > SetToolTip ( _ ( " Allows or not blind/buried vias. \n Do not allow is the usual selection. \n Note: micro vias are a special type of blind vias and are not managed here " ) ) ;
2013-05-26 04:36:44 +00:00
sbViasOptionSizer - > Add ( m_OptViaType , 0 , wxALL | wxEXPAND , 5 ) ;
wxString m_AllowMicroViaCtrlChoices [ ] = { _ ( " Do not allow micro vias " ) , _ ( " Allow micro vias " ) } ;
int m_AllowMicroViaCtrlNChoices = sizeof ( m_AllowMicroViaCtrlChoices ) / sizeof ( wxString ) ;
2015-12-17 22:56:23 +00:00
m_AllowMicroViaCtrl = new wxRadioBox ( sbViasOptionSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Micro Vias: " ) , wxDefaultPosition , wxDefaultSize , m_AllowMicroViaCtrlNChoices , m_AllowMicroViaCtrlChoices , 1 , wxRA_SPECIFY_COLS ) ;
2013-05-26 04:36:44 +00:00
m_AllowMicroViaCtrl - > SetSelection ( 0 ) ;
m_AllowMicroViaCtrl - > SetToolTip ( _ ( " Allows or do not allow use of micro vias \n They are very small vias only from an external copper layer to its near neightbour " ) ) ;
sbViasOptionSizer - > Add ( m_AllowMicroViaCtrl , 0 , wxALL | wxEXPAND , 5 ) ;
2015-06-15 13:54:58 +00:00
bDesignRulesUpperSizer - > Add ( sbViasOptionSizer , 1 , wxEXPAND | wxLEFT | wxRIGHT | wxTOP , 5 ) ;
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * sbMinSizesSizer ;
sbMinSizesSizer = new wxStaticBoxSizer ( new wxStaticBox ( m_panelGolbalDesignRules , wxID_ANY , _ ( " Minimum Allowed Values: " ) ) , wxVERTICAL ) ;
wxFlexGridSizer * fgMinValuesSizer ;
fgMinValuesSizer = new wxFlexGridSizer ( 5 , 2 , 0 , 0 ) ;
fgMinValuesSizer - > AddGrowableCol ( 1 ) ;
fgMinValuesSizer - > SetFlexibleDirection ( wxBOTH ) ;
fgMinValuesSizer - > SetNonFlexibleGrowMode ( wxFLEX_GROWMODE_SPECIFIED ) ;
2015-12-17 22:56:23 +00:00
m_TrackMinWidthTitle = new wxStaticText ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Min track width " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_TrackMinWidthTitle - > Wrap ( - 1 ) ;
fgMinValuesSizer - > Add ( m_TrackMinWidthTitle , 0 , wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxTOP | wxBOTTOM | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_SetTrackMinWidthCtrl = new wxTextCtrl ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_SetTrackMinWidthCtrl - > SetMaxLength ( 0 ) ;
fgMinValuesSizer - > Add ( m_SetTrackMinWidthCtrl , 0 , wxALL | wxEXPAND , 5 ) ;
2015-12-17 22:56:23 +00:00
m_ViaMinTitle = new wxStaticText ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Min via diameter " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_ViaMinTitle - > Wrap ( - 1 ) ;
fgMinValuesSizer - > Add ( m_ViaMinTitle , 0 , wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxTOP | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_SetViasMinSizeCtrl = new wxTextCtrl ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_SetViasMinSizeCtrl - > SetMaxLength ( 0 ) ;
fgMinValuesSizer - > Add ( m_SetViasMinSizeCtrl , 0 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_ViaMinDrillTitle = new wxStaticText ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Min via drill dia " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_ViaMinDrillTitle - > Wrap ( - 1 ) ;
fgMinValuesSizer - > Add ( m_ViaMinDrillTitle , 0 , wxTOP | wxBOTTOM | wxLEFT | wxALIGN_RIGHT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_SetViasMinDrillCtrl = new wxTextCtrl ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_SetViasMinDrillCtrl - > SetMaxLength ( 0 ) ;
fgMinValuesSizer - > Add ( m_SetViasMinDrillCtrl , 0 , wxALL | wxEXPAND , 5 ) ;
2015-12-17 22:56:23 +00:00
m_MicroViaMinSizeTitle = new wxStaticText ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Min uvia diameter " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_MicroViaMinSizeTitle - > Wrap ( - 1 ) ;
fgMinValuesSizer - > Add ( m_MicroViaMinSizeTitle , 0 , wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxTOP | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_SetMicroViasMinSizeCtrl = new wxTextCtrl ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_SetMicroViasMinSizeCtrl - > SetMaxLength ( 6 ) ;
fgMinValuesSizer - > Add ( m_SetMicroViasMinSizeCtrl , 0 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_MicroViaMinDrillTitle = new wxStaticText ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , _ ( " Min uvia drill dia " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_MicroViaMinDrillTitle - > Wrap ( - 1 ) ;
fgMinValuesSizer - > Add ( m_MicroViaMinDrillTitle , 0 , wxALIGN_RIGHT | wxTOP | wxBOTTOM | wxLEFT , 5 ) ;
2015-12-17 22:56:23 +00:00
m_SetMicroViasMinDrillCtrl = new wxTextCtrl ( sbMinSizesSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_SetMicroViasMinDrillCtrl - > SetMaxLength ( 6 ) ;
fgMinValuesSizer - > Add ( m_SetMicroViasMinDrillCtrl , 0 , wxEXPAND | wxALL , 5 ) ;
sbMinSizesSizer - > Add ( fgMinValuesSizer , 1 , wxEXPAND , 5 ) ;
bDesignRulesUpperSizer - > Add ( sbMinSizesSizer , 1 , wxEXPAND | wxTOP | wxRIGHT | wxLEFT , 5 ) ;
bpanelGlobRulesSizer - > Add ( bDesignRulesUpperSizer , 0 , wxEXPAND , 5 ) ;
m_staticline1 = new wxStaticLine ( m_panelGolbalDesignRules , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
bpanelGlobRulesSizer - > Add ( m_staticline1 , 0 , wxEXPAND | wxALL , 5 ) ;
m_staticTextInfo = new wxStaticText ( m_panelGolbalDesignRules , wxID_ANY , _ ( " Specific via diameters and track widths, which \n can be used to replace default Netclass values \n on demand, for arbitrary vias or track segments. " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextInfo - > Wrap ( - 1 ) ;
bpanelGlobRulesSizer - > Add ( m_staticTextInfo , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
wxBoxSizer * bDesignRulesLowerSizer ;
bDesignRulesLowerSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
wxStaticBoxSizer * sViaSizeBox ;
sViaSizeBox = new wxStaticBoxSizer ( new wxStaticBox ( m_panelGolbalDesignRules , wxID_ANY , _ ( " Custom Via Sizes: " ) ) , wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_staticText7 = new wxStaticText ( sViaSizeBox - > GetStaticBox ( ) , wxID_ANY , _ ( " Drill value: a blank or 0 => default Netclass value " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_staticText7 - > Wrap ( - 1 ) ;
sViaSizeBox - > Add ( m_staticText7 , 0 , wxALL , 5 ) ;
2015-12-17 22:56:23 +00:00
m_gridViaSizeList = new wxGrid ( sViaSizeBox - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
// Grid
2015-10-02 19:11:33 +00:00
m_gridViaSizeList - > CreateGrid ( 8 , 2 ) ;
2013-05-26 04:36:44 +00:00
m_gridViaSizeList - > EnableEditing ( true ) ;
m_gridViaSizeList - > EnableGridLines ( true ) ;
m_gridViaSizeList - > EnableDragGridSize ( false ) ;
m_gridViaSizeList - > SetMargins ( 0 , 0 ) ;
// Columns
m_gridViaSizeList - > EnableDragColMove ( false ) ;
m_gridViaSizeList - > EnableDragColSize ( true ) ;
m_gridViaSizeList - > SetColLabelSize ( 30 ) ;
m_gridViaSizeList - > SetColLabelValue ( 0 , _ ( " Diameter " ) ) ;
m_gridViaSizeList - > SetColLabelValue ( 1 , _ ( " Drill " ) ) ;
m_gridViaSizeList - > SetColLabelAlignment ( wxALIGN_CENTRE , wxALIGN_CENTRE ) ;
// Rows
m_gridViaSizeList - > EnableDragRowSize ( true ) ;
m_gridViaSizeList - > SetRowLabelSize ( 80 ) ;
m_gridViaSizeList - > SetRowLabelValue ( 0 , _ ( " Via 1 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 1 , _ ( " Via 2 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 2 , _ ( " Via 3 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 3 , _ ( " Via 4 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 4 , _ ( " Via 5 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 5 , _ ( " Via 6 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 6 , _ ( " Via 7 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 7 , _ ( " Via 8 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 8 , _ ( " Via 9 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 9 , _ ( " Via 10 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 10 , _ ( " Via 11 " ) ) ;
m_gridViaSizeList - > SetRowLabelValue ( 11 , _ ( " Via 12 " ) ) ;
m_gridViaSizeList - > SetRowLabelAlignment ( wxALIGN_CENTRE , wxALIGN_CENTRE ) ;
// Label Appearance
// Cell Defaults
m_gridViaSizeList - > SetDefaultCellAlignment ( wxALIGN_LEFT , wxALIGN_TOP ) ;
sViaSizeBox - > Add ( m_gridViaSizeList , 1 , wxALL | wxEXPAND , 5 ) ;
2015-06-15 13:54:58 +00:00
bDesignRulesLowerSizer - > Add ( sViaSizeBox , 1 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
wxStaticBoxSizer * sbTracksListSizer ;
sbTracksListSizer = new wxStaticBoxSizer ( new wxStaticBox ( m_panelGolbalDesignRules , wxID_ANY , _ ( " Custom Track Widths: " ) ) , wxVERTICAL ) ;
2015-12-17 22:56:23 +00:00
m_staticText8 = new wxStaticText ( sbTracksListSizer - > GetStaticBox ( ) , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
m_staticText8 - > Wrap ( - 1 ) ;
sbTracksListSizer - > Add ( m_staticText8 , 0 , wxALL , 5 ) ;
2015-12-17 22:56:23 +00:00
m_gridTrackWidthList = new wxGrid ( sbTracksListSizer - > GetStaticBox ( ) , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 ) ;
2013-05-26 04:36:44 +00:00
// Grid
2015-10-02 19:11:33 +00:00
m_gridTrackWidthList - > CreateGrid ( 8 , 1 ) ;
2013-05-26 04:36:44 +00:00
m_gridTrackWidthList - > EnableEditing ( true ) ;
m_gridTrackWidthList - > EnableGridLines ( true ) ;
m_gridTrackWidthList - > EnableDragGridSize ( false ) ;
m_gridTrackWidthList - > SetMargins ( 0 , 0 ) ;
// Columns
m_gridTrackWidthList - > EnableDragColMove ( false ) ;
m_gridTrackWidthList - > EnableDragColSize ( true ) ;
m_gridTrackWidthList - > SetColLabelSize ( 30 ) ;
m_gridTrackWidthList - > SetColLabelValue ( 0 , _ ( " Width " ) ) ;
m_gridTrackWidthList - > SetColLabelAlignment ( wxALIGN_CENTRE , wxALIGN_CENTRE ) ;
// Rows
m_gridTrackWidthList - > EnableDragRowSize ( true ) ;
m_gridTrackWidthList - > SetRowLabelSize ( 80 ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 0 , _ ( " Track 1 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 1 , _ ( " Track 2 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 2 , _ ( " Track 3 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 3 , _ ( " Track 4 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 4 , _ ( " Track 5 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 5 , _ ( " Track 6 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 6 , _ ( " Track 7 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 7 , _ ( " Track 8 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 8 , _ ( " Track 9 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 9 , _ ( " Track 10 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 10 , _ ( " Track 11 " ) ) ;
m_gridTrackWidthList - > SetRowLabelValue ( 11 , _ ( " Track 12 " ) ) ;
m_gridTrackWidthList - > SetRowLabelAlignment ( wxALIGN_CENTRE , wxALIGN_CENTRE ) ;
// Label Appearance
// Cell Defaults
m_gridTrackWidthList - > SetDefaultCellAlignment ( wxALIGN_LEFT , wxALIGN_TOP ) ;
sbTracksListSizer - > Add ( m_gridTrackWidthList , 1 , wxALL | wxEXPAND , 5 ) ;
2015-06-15 13:54:58 +00:00
bDesignRulesLowerSizer - > Add ( sbTracksListSizer , 1 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
2015-06-15 13:54:58 +00:00
bpanelGlobRulesSizer - > Add ( bDesignRulesLowerSizer , 0 , wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
m_panelGolbalDesignRules - > SetSizer ( bpanelGlobRulesSizer ) ;
m_panelGolbalDesignRules - > Layout ( ) ;
bpanelGlobRulesSizer - > Fit ( m_panelGolbalDesignRules ) ;
m_DRnotebook - > AddPage ( m_panelGolbalDesignRules , _ ( " Global Design Rules " ) , false ) ;
bMainSizer - > Add ( m_DRnotebook , 1 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
2015-10-02 19:11:33 +00:00
m_sdbSizer1 = new wxStdDialogButtonSizer ( ) ;
m_sdbSizer1OK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1OK ) ;
m_sdbSizer1Cancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1Cancel ) ;
m_sdbSizer1 - > Realize ( ) ;
2013-05-26 04:36:44 +00:00
2015-10-02 19:11:33 +00:00
bMainSizer - > Add ( m_sdbSizer1 , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
this - > SetSizer ( bMainSizer ) ;
this - > Layout ( ) ;
2015-10-02 19:11:33 +00:00
bMainSizer - > Fit ( this ) ;
2013-05-26 04:36:44 +00:00
// Connect Events
2015-10-02 19:11:33 +00:00
m_DRnotebook - > Connect ( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED , wxNotebookEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNotebookPageChanged ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_grid - > Connect ( wxEVT_GRID_LABEL_LEFT_CLICK , wxGridEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNetClassesNameLeftClick ) , NULL , this ) ;
m_grid - > Connect ( wxEVT_GRID_LABEL_RIGHT_CLICK , wxGridEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNetClassesNameRightClick ) , NULL , this ) ;
m_addButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnAddNetclassClick ) , NULL , this ) ;
m_removeButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRemoveNetclassClick ) , NULL , this ) ;
m_moveUpButton - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnMoveUpSelectedNetClass ) , NULL , this ) ;
m_leftClassChoice - > Connect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftCBSelection ) , NULL , this ) ;
m_buttonRightToLeft - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightToLeftCopyButton ) , NULL , this ) ;
m_buttonLeftToRight - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftToRightCopyButton ) , NULL , this ) ;
m_buttonLeftSelAll - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftSelectAllButton ) , NULL , this ) ;
m_buttonRightSelAll - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightSelectAllButton ) , NULL , this ) ;
m_rightClassChoice - > Connect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightCBSelection ) , NULL , this ) ;
}
DIALOG_DESIGN_RULES_BASE : : ~ DIALOG_DESIGN_RULES_BASE ( )
{
// Disconnect Events
2015-10-02 19:11:33 +00:00
m_DRnotebook - > Disconnect ( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED , wxNotebookEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNotebookPageChanged ) , NULL , this ) ;
2013-05-26 04:36:44 +00:00
m_grid - > Disconnect ( wxEVT_GRID_LABEL_LEFT_CLICK , wxGridEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNetClassesNameLeftClick ) , NULL , this ) ;
m_grid - > Disconnect ( wxEVT_GRID_LABEL_RIGHT_CLICK , wxGridEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnNetClassesNameRightClick ) , NULL , this ) ;
m_addButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnAddNetclassClick ) , NULL , this ) ;
m_removeButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRemoveNetclassClick ) , NULL , this ) ;
m_moveUpButton - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnMoveUpSelectedNetClass ) , NULL , this ) ;
m_leftClassChoice - > Disconnect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftCBSelection ) , NULL , this ) ;
m_buttonRightToLeft - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightToLeftCopyButton ) , NULL , this ) ;
m_buttonLeftToRight - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftToRightCopyButton ) , NULL , this ) ;
m_buttonLeftSelAll - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnLeftSelectAllButton ) , NULL , this ) ;
m_buttonRightSelAll - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightSelectAllButton ) , NULL , this ) ;
m_rightClassChoice - > Disconnect ( wxEVT_COMMAND_COMBOBOX_SELECTED , wxCommandEventHandler ( DIALOG_DESIGN_RULES_BASE : : OnRightCBSelection ) , NULL , this ) ;
}