Browse Source
Design rule dialog: use wxLC_VIRTUAL options in wxListBoxes tu speed up nets lists display (which was very long for board with a lot of nets)
pull/1/head
Design rule dialog: use wxLC_VIRTUAL options in wxListBoxes tu speed up nets lists display (which was very long for board with a lot of nets)
pull/1/head
6 changed files with 3181 additions and 3111 deletions
-
11common/dialog_about/AboutDialog_main.cpp
-
369pcbnew/dialog_design_rules.cpp
-
6pcbnew/dialog_design_rules.h
-
840pcbnew/dialog_design_rules_base.cpp
-
4834pcbnew/dialog_design_rules_base.fbp
-
232pcbnew/dialog_design_rules_base.h
@ -1,419 +1,421 @@ |
|||||
///////////////////////////////////////////////////////////////////////////
|
|
||||
// C++ code generated with wxFormBuilder (version Apr 16 2008)
|
|
||||
// http://www.wxformbuilder.org/
|
|
||||
//
|
|
||||
// PLEASE DO "NOT" EDIT THIS FILE!
|
|
||||
///////////////////////////////////////////////////////////////////////////
|
|
||||
|
|
||||
#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 ) : wxDialog( 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 ); |
|
||||
m_panelNetClassesEditor = new wxPanel( m_DRnotebook, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER|wxTAB_TRAVERSAL ); |
|
||||
wxBoxSizer* bpanelNetClassesSizer; |
|
||||
bpanelNetClassesSizer = new wxBoxSizer( wxVERTICAL ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbSizer1; |
|
||||
sbSizer1 = new wxStaticBoxSizer( new wxStaticBox( m_panelNetClassesEditor, wxID_ANY, _("Net Classes:") ), wxVERTICAL ); |
|
||||
|
|
||||
m_grid = new wxGrid( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxSIMPLE_BORDER|wxVSCROLL ); |
|
||||
|
|
||||
// Grid
|
|
||||
m_grid->CreateGrid( 1, 6 ); |
|
||||
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") ); |
|
||||
m_grid->SetColLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
|
||||
|
|
||||
// Rows
|
|
||||
m_grid->AutoSizeRows(); |
|
||||
m_grid->EnableDragRowSize( true ); |
|
||||
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") ); |
|
||||
|
|
||||
sbSizer1->Add( m_grid, 1, wxEXPAND, 5 ); |
|
||||
|
|
||||
wxBoxSizer* buttonBoxSizer; |
|
||||
buttonBoxSizer = new wxBoxSizer( wxHORIZONTAL ); |
|
||||
|
|
||||
m_addButton = new wxButton( m_panelNetClassesEditor, wxID_ADD_NETCLASS, _("Add"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_addButton->SetToolTip( _("Add another Net Class") ); |
|
||||
|
|
||||
buttonBoxSizer->Add( m_addButton, 0, wxALIGN_CENTER_HORIZONTAL|wxTOP|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
m_removeButton = new wxButton( m_panelNetClassesEditor, wxID_REMOVE_NETCLASS, _("Remove"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_removeButton->SetToolTip( _("Remove the currently select Net Class\nThe default Net Class cannot be removed") ); |
|
||||
|
|
||||
buttonBoxSizer->Add( m_removeButton, 0, wxALIGN_CENTER_HORIZONTAL|wxTOP|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
m_moveUpButton = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("Move Up"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_moveUpButton->SetToolTip( _("Move the currently selected Net Class up one row") ); |
|
||||
|
|
||||
buttonBoxSizer->Add( m_moveUpButton, 0, wxTOP|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
sbSizer1->Add( buttonBoxSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
bpanelNetClassesSizer->Add( sbSizer1, 1, wxRIGHT|wxLEFT|wxEXPAND, 5 ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbSizer4; |
|
||||
sbSizer4 = new wxStaticBoxSizer( new wxStaticBox( m_panelNetClassesEditor, wxID_ANY, _("Membership:") ), wxHORIZONTAL ); |
|
||||
|
|
||||
wxBoxSizer* leftNetSelectBoxSizer; |
|
||||
leftNetSelectBoxSizer = new wxBoxSizer( wxVERTICAL ); |
|
||||
|
|
||||
wxArrayString m_leftClassChoiceChoices; |
|
||||
m_leftClassChoice = new wxChoice( m_panelNetClassesEditor, ID_LEFT_CHOICE_CLICK, wxDefaultPosition, wxDefaultSize, m_leftClassChoiceChoices, 0 ); |
|
||||
m_leftClassChoice->SetSelection( 0 ); |
|
||||
leftNetSelectBoxSizer->Add( m_leftClassChoice, 0, wxEXPAND, 5 ); |
|
||||
|
|
||||
m_leftListCtrl = new wxListCtrl( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_REPORT|wxLC_VRULES|wxSUNKEN_BORDER ); |
|
||||
m_leftListCtrl->SetMinSize( wxSize( 220,200 ) ); |
|
||||
|
|
||||
leftNetSelectBoxSizer->Add( m_leftListCtrl, 1, wxEXPAND|wxTOP, 5 ); |
|
||||
|
|
||||
sbSizer4->Add( leftNetSelectBoxSizer, 1, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
wxBoxSizer* bmiddleSizerNetSelect; |
|
||||
bmiddleSizerNetSelect = new wxBoxSizer( wxVERTICAL ); |
|
||||
|
|
||||
m_buttonRightToLeft = new wxButton( m_panelNetClassesEditor, ID_LEFT_TO_RIGHT_COPY, _("<<<"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_buttonRightToLeft->SetToolTip( _("Move the selected nets in the right list to the left list") ); |
|
||||
|
|
||||
bmiddleSizerNetSelect->Add( m_buttonRightToLeft, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
|
||||
|
|
||||
m_buttonLeftToRight = new wxButton( m_panelNetClassesEditor, ID_RIGHT_TO_LEFT_COPY, _(">>>"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_buttonLeftToRight->SetToolTip( _("Move the selected nets in the left list to the right list") ); |
|
||||
|
|
||||
bmiddleSizerNetSelect->Add( m_buttonLeftToRight, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
|
||||
|
|
||||
m_buttonLeftSelAll = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("<< Select All"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_buttonLeftSelAll->SetToolTip( _("Select all nets in the left list") ); |
|
||||
|
|
||||
bmiddleSizerNetSelect->Add( m_buttonLeftSelAll, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
|
||||
|
|
||||
m_buttonRightSelAll = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("Select All >>"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_buttonRightSelAll->SetToolTip( _("Select all nets in the right list") ); |
|
||||
|
|
||||
bmiddleSizerNetSelect->Add( m_buttonRightSelAll, 0, wxALIGN_BOTTOM|wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
|
||||
|
|
||||
sbSizer4->Add( bmiddleSizerNetSelect, 0, wxALIGN_CENTER_VERTICAL, 5 ); |
|
||||
|
|
||||
wxBoxSizer* rghtNetSelectBoxSizer; |
|
||||
rghtNetSelectBoxSizer = new wxBoxSizer( wxVERTICAL ); |
|
||||
|
|
||||
wxArrayString m_rightClassChoiceChoices; |
|
||||
m_rightClassChoice = new wxChoice( m_panelNetClassesEditor, ID_RIGHT_CHOICE_CLICK, wxDefaultPosition, wxDefaultSize, m_rightClassChoiceChoices, 0 ); |
|
||||
m_rightClassChoice->SetSelection( 0 ); |
|
||||
rghtNetSelectBoxSizer->Add( m_rightClassChoice, 0, wxEXPAND, 5 ); |
|
||||
|
|
||||
m_rightListCtrl = new wxListCtrl( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_REPORT|wxLC_VRULES|wxSUNKEN_BORDER ); |
|
||||
m_rightListCtrl->SetMinSize( wxSize( 220,-1 ) ); |
|
||||
|
|
||||
rghtNetSelectBoxSizer->Add( m_rightListCtrl, 1, wxEXPAND|wxTOP, 5 ); |
|
||||
|
|
||||
sbSizer4->Add( rghtNetSelectBoxSizer, 1, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
bpanelNetClassesSizer->Add( sbSizer4, 2, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
m_panelNetClassesEditor->SetSizer( bpanelNetClassesSizer ); |
|
||||
m_panelNetClassesEditor->Layout(); |
|
||||
bpanelNetClassesSizer->Fit( m_panelNetClassesEditor ); |
|
||||
m_DRnotebook->AddPage( m_panelNetClassesEditor, _("Net Classes Editor"), true ); |
|
||||
m_panelGolbalDesignRules = new wxPanel( m_DRnotebook, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER|wxTAB_TRAVERSAL ); |
|
||||
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 ); |
|
||||
|
|
||||
wxString m_OptViaTypeChoices[] = { _("Through via"), _("Blind or buried via") }; |
|
||||
int m_OptViaTypeNChoices = sizeof( m_OptViaTypeChoices ) / sizeof( wxString ); |
|
||||
m_OptViaType = new wxRadioBox( m_panelGolbalDesignRules, wxID_ANY, _("Default Via Type"), wxDefaultPosition, wxDefaultSize, m_OptViaTypeNChoices, m_OptViaTypeChoices, 1, wxRA_SPECIFY_COLS ); |
|
||||
m_OptViaType->SetSelection( 0 ); |
|
||||
m_OptViaType->SetToolTip( _("Select the current via type.\nTrough via is the usual selection") ); |
|
||||
|
|
||||
sbViasOptionSizer->Add( m_OptViaType, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
wxFlexGridSizer* fgViasMinValuesSizer; |
|
||||
fgViasMinValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
|
||||
fgViasMinValuesSizer->AddGrowableCol( 1 ); |
|
||||
fgViasMinValuesSizer->SetFlexibleDirection( wxBOTH ); |
|
||||
fgViasMinValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
|
||||
|
|
||||
m_ViaMinTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min via diameter"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_ViaMinTitle->Wrap( -1 ); |
|
||||
fgViasMinValuesSizer->Add( m_ViaMinTitle, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
|
||||
|
|
||||
m_SetViasMinSizeCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
fgViasMinValuesSizer->Add( m_SetViasMinSizeCtrl, 0, wxEXPAND|wxALL, 5 ); |
|
||||
|
|
||||
m_ViaMinDrillTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min via drill dia"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_ViaMinDrillTitle->Wrap( -1 ); |
|
||||
fgViasMinValuesSizer->Add( m_ViaMinDrillTitle, 0, wxTOP|wxBOTTOM|wxLEFT|wxALIGN_RIGHT, 5 ); |
|
||||
|
|
||||
m_SetViasMinDrillCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
fgViasMinValuesSizer->Add( m_SetViasMinDrillCtrl, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
sbViasOptionSizer->Add( fgViasMinValuesSizer, 0, wxEXPAND, 5 ); |
|
||||
|
|
||||
bDesignRulesUpperSizer->Add( sbViasOptionSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbuViasSizer; |
|
||||
sbuViasSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Micro Via Options:") ), wxVERTICAL ); |
|
||||
|
|
||||
wxString m_AllowMicroViaCtrlChoices[] = { _("Do not allow micro vias"), _("Allow micro vias") }; |
|
||||
int m_AllowMicroViaCtrlNChoices = sizeof( m_AllowMicroViaCtrlChoices ) / sizeof( wxString ); |
|
||||
m_AllowMicroViaCtrl = new wxRadioBox( m_panelGolbalDesignRules, wxID_ANY, _("Micro Vias:"), wxDefaultPosition, wxDefaultSize, m_AllowMicroViaCtrlNChoices, m_AllowMicroViaCtrlChoices, 1, wxRA_SPECIFY_COLS ); |
|
||||
m_AllowMicroViaCtrl->SetSelection( 0 ); |
|
||||
m_AllowMicroViaCtrl->SetToolTip( _("Allows or do not allow use of micro vias\nThey are very small vias only from an external copper layer to its near neightbour") ); |
|
||||
|
|
||||
sbuViasSizer->Add( m_AllowMicroViaCtrl, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
wxFlexGridSizer* fgMinMicroviasValuesSizer; |
|
||||
fgMinMicroviasValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
|
||||
fgMinMicroviasValuesSizer->AddGrowableCol( 1 ); |
|
||||
fgMinMicroviasValuesSizer->SetFlexibleDirection( wxBOTH ); |
|
||||
fgMinMicroviasValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
|
||||
|
|
||||
m_MicroViaMinSizeTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min uvia diameter"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_MicroViaMinSizeTitle->Wrap( -1 ); |
|
||||
fgMinMicroviasValuesSizer->Add( m_MicroViaMinSizeTitle, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
|
||||
|
|
||||
m_SetMicroViasMinSizeCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_SetMicroViasMinSizeCtrl->SetMaxLength( 6 ); |
|
||||
fgMinMicroviasValuesSizer->Add( m_SetMicroViasMinSizeCtrl, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
m_MicroViaMinDrillTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min uvia drill dia"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_MicroViaMinDrillTitle->Wrap( -1 ); |
|
||||
fgMinMicroviasValuesSizer->Add( m_MicroViaMinDrillTitle, 0, wxALIGN_RIGHT|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
|
||||
|
|
||||
m_SetMicroViasMinDrillCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_SetMicroViasMinDrillCtrl->SetMaxLength( 6 ); |
|
||||
fgMinMicroviasValuesSizer->Add( m_SetMicroViasMinDrillCtrl, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
sbuViasSizer->Add( fgMinMicroviasValuesSizer, 1, wxEXPAND, 5 ); |
|
||||
|
|
||||
bDesignRulesUpperSizer->Add( sbuViasSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbMinSizesSizer; |
|
||||
sbMinSizesSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Minimum Allowed Values:") ), wxVERTICAL ); |
|
||||
|
|
||||
wxFlexGridSizer* fgMinValuesSizer; |
|
||||
fgMinValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
|
||||
fgMinValuesSizer->AddGrowableCol( 1 ); |
|
||||
fgMinValuesSizer->SetFlexibleDirection( wxBOTH ); |
|
||||
fgMinValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
|
||||
|
|
||||
m_TrackMinWidthTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min track width"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_TrackMinWidthTitle->Wrap( -1 ); |
|
||||
fgMinValuesSizer->Add( m_TrackMinWidthTitle, 0, wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
|
||||
|
|
||||
m_SetTrackMinWidthCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
fgMinValuesSizer->Add( m_SetTrackMinWidthCtrl, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
sbMinSizesSizer->Add( fgMinValuesSizer, 0, 0, 5 ); |
|
||||
|
|
||||
bDesignRulesUpperSizer->Add( sbMinSizesSizer, 1, wxEXPAND, 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 \ncan be used to replace default Netclass values \non demand, for arbitrary via 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 ); |
|
||||
|
|
||||
m_staticText7 = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Drill value: a blank or 0 => default Netclass value"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_staticText7->Wrap( -1 ); |
|
||||
sViaSizeBox->Add( m_staticText7, 0, wxALL, 5 ); |
|
||||
|
|
||||
m_gridViaSizeList = new wxGrid( m_panelGolbalDesignRules, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
|
|
||||
// Grid
|
|
||||
m_gridViaSizeList->CreateGrid( 7, 2 ); |
|
||||
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->SetRowLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
|
||||
|
|
||||
// Label Appearance
|
|
||||
|
|
||||
// Cell Defaults
|
|
||||
m_gridViaSizeList->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_TOP ); |
|
||||
sViaSizeBox->Add( m_gridViaSizeList, 0, wxALL, 5 ); |
|
||||
|
|
||||
bDesignRulesLowerSizer->Add( sViaSizeBox, 1, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbTracksListSizer; |
|
||||
sbTracksListSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Custom Track Widths:") ), wxVERTICAL ); |
|
||||
|
|
||||
m_staticText8 = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_staticText8->Wrap( -1 ); |
|
||||
sbTracksListSizer->Add( m_staticText8, 0, wxALL, 5 ); |
|
||||
|
|
||||
m_gridTrackWidthList = new wxGrid( m_panelGolbalDesignRules, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
|
|
||||
// Grid
|
|
||||
m_gridTrackWidthList->CreateGrid( 7, 1 ); |
|
||||
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->SetRowLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
|
||||
|
|
||||
// Label Appearance
|
|
||||
|
|
||||
// Cell Defaults
|
|
||||
m_gridTrackWidthList->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_TOP ); |
|
||||
sbTracksListSizer->Add( m_gridTrackWidthList, 0, wxALL, 5 ); |
|
||||
|
|
||||
bDesignRulesLowerSizer->Add( sbTracksListSizer, 1, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
bpanelGlobRulesSizer->Add( bDesignRulesLowerSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxEXPAND, 5 ); |
|
||||
|
|
||||
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 ); |
|
||||
|
|
||||
wxStaticBoxSizer* sbSizer2; |
|
||||
sbSizer2 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Messages:") ), wxHORIZONTAL ); |
|
||||
|
|
||||
m_MessagesList = new wxHtmlWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO|wxSUNKEN_BORDER ); |
|
||||
m_MessagesList->SetMinSize( wxSize( -1,90 ) ); |
|
||||
|
|
||||
sbSizer2->Add( m_MessagesList, 1, wxEXPAND, 5 ); |
|
||||
|
|
||||
wxBoxSizer* bSizerButtons; |
|
||||
bSizerButtons = new wxBoxSizer( wxVERTICAL ); |
|
||||
|
|
||||
m_buttonOk = new wxButton( this, wxID_OK, _("OK"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
m_buttonOk->SetDefault(); |
|
||||
bSizerButtons->Add( m_buttonOk, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
m_buttonCancel = new wxButton( this, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 ); |
|
||||
bSizerButtons->Add( m_buttonCancel, 0, wxALL|wxEXPAND, 5 ); |
|
||||
|
|
||||
sbSizer2->Add( bSizerButtons, 0, 0, 5 ); |
|
||||
|
|
||||
bMainSizer->Add( sbSizer2, 0, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
|
||||
|
|
||||
this->SetSizer( bMainSizer ); |
|
||||
this->Layout(); |
|
||||
|
|
||||
// Connect Events
|
|
||||
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_CHOICE_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_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnRightCBSelection ), NULL, this ); |
|
||||
m_buttonOk->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnOkButtonClick ), NULL, this ); |
|
||||
m_buttonCancel->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnCancelButtonClick ), NULL, this ); |
|
||||
} |
|
||||
|
|
||||
DIALOG_DESIGN_RULES_BASE::~DIALOG_DESIGN_RULES_BASE() |
|
||||
{ |
|
||||
// Disconnect Events
|
|
||||
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_CHOICE_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_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnRightCBSelection ), NULL, this ); |
|
||||
m_buttonOk->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnOkButtonClick ), NULL, this ); |
|
||||
m_buttonCancel->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnCancelButtonClick ), NULL, this ); |
|
||||
} |
|
||||
|
///////////////////////////////////////////////////////////////////////////
|
||||
|
// C++ code generated with wxFormBuilder (version Apr 16 2008)
|
||||
|
// 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 ) : wxDialog( 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 ); |
||||
|
m_panelNetClassesEditor = new wxPanel( m_DRnotebook, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER|wxTAB_TRAVERSAL ); |
||||
|
wxBoxSizer* bpanelNetClassesSizer; |
||||
|
bpanelNetClassesSizer = new wxBoxSizer( wxVERTICAL ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbSizer1; |
||||
|
sbSizer1 = new wxStaticBoxSizer( new wxStaticBox( m_panelNetClassesEditor, wxID_ANY, _("Net Classes:") ), wxVERTICAL ); |
||||
|
|
||||
|
m_grid = new wxGrid( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxSIMPLE_BORDER|wxVSCROLL ); |
||||
|
|
||||
|
// Grid
|
||||
|
m_grid->CreateGrid( 1, 6 ); |
||||
|
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") ); |
||||
|
m_grid->SetColLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
||||
|
|
||||
|
// Rows
|
||||
|
m_grid->AutoSizeRows(); |
||||
|
m_grid->EnableDragRowSize( true ); |
||||
|
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") ); |
||||
|
|
||||
|
sbSizer1->Add( m_grid, 1, wxEXPAND, 5 ); |
||||
|
|
||||
|
wxBoxSizer* buttonBoxSizer; |
||||
|
buttonBoxSizer = new wxBoxSizer( wxHORIZONTAL ); |
||||
|
|
||||
|
m_addButton = new wxButton( m_panelNetClassesEditor, wxID_ADD_NETCLASS, _("Add"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_addButton->SetToolTip( _("Add another Net Class") ); |
||||
|
|
||||
|
buttonBoxSizer->Add( m_addButton, 0, wxALIGN_CENTER_HORIZONTAL|wxTOP|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
m_removeButton = new wxButton( m_panelNetClassesEditor, wxID_REMOVE_NETCLASS, _("Remove"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_removeButton->SetToolTip( _("Remove the currently select Net Class\nThe default Net Class cannot be removed") ); |
||||
|
|
||||
|
buttonBoxSizer->Add( m_removeButton, 0, wxALIGN_CENTER_HORIZONTAL|wxTOP|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
m_moveUpButton = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("Move Up"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_moveUpButton->SetToolTip( _("Move the currently selected Net Class up one row") ); |
||||
|
|
||||
|
buttonBoxSizer->Add( m_moveUpButton, 0, wxTOP|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
sbSizer1->Add( buttonBoxSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
bpanelNetClassesSizer->Add( sbSizer1, 1, wxRIGHT|wxLEFT|wxEXPAND, 5 ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbSizer4; |
||||
|
sbSizer4 = new wxStaticBoxSizer( new wxStaticBox( m_panelNetClassesEditor, wxID_ANY, _("Membership:") ), wxHORIZONTAL ); |
||||
|
|
||||
|
wxBoxSizer* leftNetSelectBoxSizer; |
||||
|
leftNetSelectBoxSizer = new wxBoxSizer( wxVERTICAL ); |
||||
|
|
||||
|
wxArrayString m_leftClassChoiceChoices; |
||||
|
m_leftClassChoice = new wxChoice( m_panelNetClassesEditor, ID_LEFT_CHOICE_CLICK, wxDefaultPosition, wxDefaultSize, m_leftClassChoiceChoices, 0 ); |
||||
|
m_leftClassChoice->SetSelection( 0 ); |
||||
|
leftNetSelectBoxSizer->Add( m_leftClassChoice, 0, wxEXPAND, 5 ); |
||||
|
|
||||
|
m_leftListCtrl = new NETS_LIST_CTRL( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_REPORT|wxLC_VIRTUAL|wxLC_VRULES|wxSUNKEN_BORDER ); |
||||
|
m_leftListCtrl->SetMinSize( wxSize( 220,200 ) ); |
||||
|
|
||||
|
leftNetSelectBoxSizer->Add( m_leftListCtrl, 1, wxEXPAND|wxTOP, 5 ); |
||||
|
|
||||
|
sbSizer4->Add( leftNetSelectBoxSizer, 1, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
wxBoxSizer* bmiddleSizerNetSelect; |
||||
|
bmiddleSizerNetSelect = new wxBoxSizer( wxVERTICAL ); |
||||
|
|
||||
|
m_buttonRightToLeft = new wxButton( m_panelNetClassesEditor, ID_LEFT_TO_RIGHT_COPY, _("<<<"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_buttonRightToLeft->SetToolTip( _("Move the selected nets in the right list to the left list") ); |
||||
|
|
||||
|
bmiddleSizerNetSelect->Add( m_buttonRightToLeft, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
||||
|
|
||||
|
m_buttonLeftToRight = new wxButton( m_panelNetClassesEditor, ID_RIGHT_TO_LEFT_COPY, _(">>>"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_buttonLeftToRight->SetToolTip( _("Move the selected nets in the left list to the right list") ); |
||||
|
|
||||
|
bmiddleSizerNetSelect->Add( m_buttonLeftToRight, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
||||
|
|
||||
|
m_buttonLeftSelAll = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("<< Select All"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_buttonLeftSelAll->SetToolTip( _("Select all nets in the left list") ); |
||||
|
|
||||
|
bmiddleSizerNetSelect->Add( m_buttonLeftSelAll, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
||||
|
|
||||
|
m_buttonRightSelAll = new wxButton( m_panelNetClassesEditor, wxID_ANY, _("Select All >>"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_buttonRightSelAll->SetToolTip( _("Select all nets in the right list") ); |
||||
|
|
||||
|
bmiddleSizerNetSelect->Add( m_buttonRightSelAll, 0, wxALIGN_BOTTOM|wxALL|wxALIGN_CENTER_HORIZONTAL, 5 ); |
||||
|
|
||||
|
sbSizer4->Add( bmiddleSizerNetSelect, 0, wxALIGN_CENTER_VERTICAL, 5 ); |
||||
|
|
||||
|
wxBoxSizer* rghtNetSelectBoxSizer; |
||||
|
rghtNetSelectBoxSizer = new wxBoxSizer( wxVERTICAL ); |
||||
|
|
||||
|
wxArrayString m_rightClassChoiceChoices; |
||||
|
m_rightClassChoice = new wxChoice( m_panelNetClassesEditor, ID_RIGHT_CHOICE_CLICK, wxDefaultPosition, wxDefaultSize, m_rightClassChoiceChoices, 0 ); |
||||
|
m_rightClassChoice->SetSelection( 0 ); |
||||
|
rghtNetSelectBoxSizer->Add( m_rightClassChoice, 0, wxEXPAND, 5 ); |
||||
|
|
||||
|
m_rightListCtrl = new NETS_LIST_CTRL( m_panelNetClassesEditor, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_HRULES|wxLC_REPORT|wxLC_VIRTUAL|wxLC_VRULES|wxSUNKEN_BORDER ); |
||||
|
m_rightListCtrl->SetMinSize( wxSize( 220,-1 ) ); |
||||
|
|
||||
|
rghtNetSelectBoxSizer->Add( m_rightListCtrl, 1, wxEXPAND|wxTOP, 5 ); |
||||
|
|
||||
|
sbSizer4->Add( rghtNetSelectBoxSizer, 1, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
bpanelNetClassesSizer->Add( sbSizer4, 2, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
m_panelNetClassesEditor->SetSizer( bpanelNetClassesSizer ); |
||||
|
m_panelNetClassesEditor->Layout(); |
||||
|
bpanelNetClassesSizer->Fit( m_panelNetClassesEditor ); |
||||
|
m_DRnotebook->AddPage( m_panelNetClassesEditor, _("Net Classes Editor"), true ); |
||||
|
m_panelGolbalDesignRules = new wxPanel( m_DRnotebook, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER|wxTAB_TRAVERSAL ); |
||||
|
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 ); |
||||
|
|
||||
|
wxString m_OptViaTypeChoices[] = { _("Through via"), _("Blind or buried via") }; |
||||
|
int m_OptViaTypeNChoices = sizeof( m_OptViaTypeChoices ) / sizeof( wxString ); |
||||
|
m_OptViaType = new wxRadioBox( m_panelGolbalDesignRules, wxID_ANY, _("Default Via Type"), wxDefaultPosition, wxDefaultSize, m_OptViaTypeNChoices, m_OptViaTypeChoices, 1, wxRA_SPECIFY_COLS ); |
||||
|
m_OptViaType->SetSelection( 0 ); |
||||
|
m_OptViaType->SetToolTip( _("Select the current via type.\nTrough via is the usual selection") ); |
||||
|
|
||||
|
sbViasOptionSizer->Add( m_OptViaType, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
wxFlexGridSizer* fgViasMinValuesSizer; |
||||
|
fgViasMinValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
||||
|
fgViasMinValuesSizer->AddGrowableCol( 1 ); |
||||
|
fgViasMinValuesSizer->SetFlexibleDirection( wxBOTH ); |
||||
|
fgViasMinValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
||||
|
|
||||
|
m_ViaMinTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min via diameter"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_ViaMinTitle->Wrap( -1 ); |
||||
|
fgViasMinValuesSizer->Add( m_ViaMinTitle, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
||||
|
|
||||
|
m_SetViasMinSizeCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
fgViasMinValuesSizer->Add( m_SetViasMinSizeCtrl, 0, wxEXPAND|wxALL, 5 ); |
||||
|
|
||||
|
m_ViaMinDrillTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min via drill dia"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_ViaMinDrillTitle->Wrap( -1 ); |
||||
|
fgViasMinValuesSizer->Add( m_ViaMinDrillTitle, 0, wxTOP|wxBOTTOM|wxLEFT|wxALIGN_RIGHT, 5 ); |
||||
|
|
||||
|
m_SetViasMinDrillCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
fgViasMinValuesSizer->Add( m_SetViasMinDrillCtrl, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
sbViasOptionSizer->Add( fgViasMinValuesSizer, 0, wxEXPAND, 5 ); |
||||
|
|
||||
|
bDesignRulesUpperSizer->Add( sbViasOptionSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbuViasSizer; |
||||
|
sbuViasSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Micro Via Options:") ), wxVERTICAL ); |
||||
|
|
||||
|
wxString m_AllowMicroViaCtrlChoices[] = { _("Do not allow micro vias"), _("Allow micro vias") }; |
||||
|
int m_AllowMicroViaCtrlNChoices = sizeof( m_AllowMicroViaCtrlChoices ) / sizeof( wxString ); |
||||
|
m_AllowMicroViaCtrl = new wxRadioBox( m_panelGolbalDesignRules, wxID_ANY, _("Micro Vias:"), wxDefaultPosition, wxDefaultSize, m_AllowMicroViaCtrlNChoices, m_AllowMicroViaCtrlChoices, 1, wxRA_SPECIFY_COLS ); |
||||
|
m_AllowMicroViaCtrl->SetSelection( 0 ); |
||||
|
m_AllowMicroViaCtrl->SetToolTip( _("Allows or do not allow use of micro vias\nThey are very small vias only from an external copper layer to its near neightbour") ); |
||||
|
|
||||
|
sbuViasSizer->Add( m_AllowMicroViaCtrl, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
wxFlexGridSizer* fgMinMicroviasValuesSizer; |
||||
|
fgMinMicroviasValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
||||
|
fgMinMicroviasValuesSizer->AddGrowableCol( 1 ); |
||||
|
fgMinMicroviasValuesSizer->SetFlexibleDirection( wxBOTH ); |
||||
|
fgMinMicroviasValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
||||
|
|
||||
|
m_MicroViaMinSizeTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min uvia diameter"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_MicroViaMinSizeTitle->Wrap( -1 ); |
||||
|
fgMinMicroviasValuesSizer->Add( m_MicroViaMinSizeTitle, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
||||
|
|
||||
|
m_SetMicroViasMinSizeCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_SetMicroViasMinSizeCtrl->SetMaxLength( 6 ); |
||||
|
fgMinMicroviasValuesSizer->Add( m_SetMicroViasMinSizeCtrl, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
m_MicroViaMinDrillTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min uvia drill dia"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_MicroViaMinDrillTitle->Wrap( -1 ); |
||||
|
fgMinMicroviasValuesSizer->Add( m_MicroViaMinDrillTitle, 0, wxALIGN_RIGHT|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
||||
|
|
||||
|
m_SetMicroViasMinDrillCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_SetMicroViasMinDrillCtrl->SetMaxLength( 6 ); |
||||
|
fgMinMicroviasValuesSizer->Add( m_SetMicroViasMinDrillCtrl, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
sbuViasSizer->Add( fgMinMicroviasValuesSizer, 1, wxEXPAND, 5 ); |
||||
|
|
||||
|
bDesignRulesUpperSizer->Add( sbuViasSizer, 1, wxALIGN_CENTER_VERTICAL, 5 ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbMinSizesSizer; |
||||
|
sbMinSizesSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Minimum Allowed Values:") ), wxVERTICAL ); |
||||
|
|
||||
|
wxFlexGridSizer* fgMinValuesSizer; |
||||
|
fgMinValuesSizer = new wxFlexGridSizer( 1, 2, 0, 0 ); |
||||
|
fgMinValuesSizer->AddGrowableCol( 1 ); |
||||
|
fgMinValuesSizer->SetFlexibleDirection( wxBOTH ); |
||||
|
fgMinValuesSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
||||
|
|
||||
|
m_TrackMinWidthTitle = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Min track width"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_TrackMinWidthTitle->Wrap( -1 ); |
||||
|
fgMinValuesSizer->Add( m_TrackMinWidthTitle, 0, wxALIGN_CENTER_VERTICAL|wxALIGN_RIGHT|wxTOP|wxBOTTOM|wxLEFT, 5 ); |
||||
|
|
||||
|
m_SetTrackMinWidthCtrl = new wxTextCtrl( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
fgMinValuesSizer->Add( m_SetTrackMinWidthCtrl, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
sbMinSizesSizer->Add( fgMinValuesSizer, 0, 0, 5 ); |
||||
|
|
||||
|
bDesignRulesUpperSizer->Add( sbMinSizesSizer, 1, wxEXPAND, 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 \ncan be used to replace default Netclass values \non demand, for arbitrary via 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 ); |
||||
|
|
||||
|
m_staticText7 = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, _("Drill value: a blank or 0 => default Netclass value"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_staticText7->Wrap( -1 ); |
||||
|
sViaSizeBox->Add( m_staticText7, 0, wxALL, 5 ); |
||||
|
|
||||
|
m_gridViaSizeList = new wxGrid( m_panelGolbalDesignRules, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
|
||||
|
// Grid
|
||||
|
m_gridViaSizeList->CreateGrid( 7, 2 ); |
||||
|
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->SetRowLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
||||
|
|
||||
|
// Label Appearance
|
||||
|
|
||||
|
// Cell Defaults
|
||||
|
m_gridViaSizeList->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_TOP ); |
||||
|
sViaSizeBox->Add( m_gridViaSizeList, 0, wxALL, 5 ); |
||||
|
|
||||
|
bDesignRulesLowerSizer->Add( sViaSizeBox, 1, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbTracksListSizer; |
||||
|
sbTracksListSizer = new wxStaticBoxSizer( new wxStaticBox( m_panelGolbalDesignRules, wxID_ANY, _("Custom Track Widths:") ), wxVERTICAL ); |
||||
|
|
||||
|
m_staticText8 = new wxStaticText( m_panelGolbalDesignRules, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_staticText8->Wrap( -1 ); |
||||
|
sbTracksListSizer->Add( m_staticText8, 0, wxALL, 5 ); |
||||
|
|
||||
|
m_gridTrackWidthList = new wxGrid( m_panelGolbalDesignRules, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
|
||||
|
// Grid
|
||||
|
m_gridTrackWidthList->CreateGrid( 7, 1 ); |
||||
|
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->SetRowLabelAlignment( wxALIGN_CENTRE, wxALIGN_CENTRE ); |
||||
|
|
||||
|
// Label Appearance
|
||||
|
|
||||
|
// Cell Defaults
|
||||
|
m_gridTrackWidthList->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_TOP ); |
||||
|
sbTracksListSizer->Add( m_gridTrackWidthList, 0, wxALL, 5 ); |
||||
|
|
||||
|
bDesignRulesLowerSizer->Add( sbTracksListSizer, 1, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
bpanelGlobRulesSizer->Add( bDesignRulesLowerSizer, 0, wxALIGN_CENTER_HORIZONTAL|wxEXPAND, 5 ); |
||||
|
|
||||
|
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 ); |
||||
|
|
||||
|
wxStaticBoxSizer* sbSizer2; |
||||
|
sbSizer2 = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Messages:") ), wxHORIZONTAL ); |
||||
|
|
||||
|
m_MessagesList = new wxHtmlWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO|wxSUNKEN_BORDER ); |
||||
|
m_MessagesList->SetMinSize( wxSize( -1,90 ) ); |
||||
|
|
||||
|
sbSizer2->Add( m_MessagesList, 1, wxEXPAND, 5 ); |
||||
|
|
||||
|
wxBoxSizer* bSizerButtons; |
||||
|
bSizerButtons = new wxBoxSizer( wxVERTICAL ); |
||||
|
|
||||
|
m_buttonOk = new wxButton( this, wxID_OK, _("OK"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
m_buttonOk->SetDefault(); |
||||
|
bSizerButtons->Add( m_buttonOk, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
m_buttonCancel = new wxButton( this, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 ); |
||||
|
bSizerButtons->Add( m_buttonCancel, 0, wxALL|wxEXPAND, 5 ); |
||||
|
|
||||
|
sbSizer2->Add( bSizerButtons, 0, 0, 5 ); |
||||
|
|
||||
|
bMainSizer->Add( sbSizer2, 0, wxEXPAND|wxRIGHT|wxLEFT, 5 ); |
||||
|
|
||||
|
this->SetSizer( bMainSizer ); |
||||
|
this->Layout(); |
||||
|
|
||||
|
// Connect Events
|
||||
|
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_CHOICE_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_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnRightCBSelection ), NULL, this ); |
||||
|
m_buttonOk->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnOkButtonClick ), NULL, this ); |
||||
|
m_buttonCancel->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnCancelButtonClick ), NULL, this ); |
||||
|
} |
||||
|
|
||||
|
DIALOG_DESIGN_RULES_BASE::~DIALOG_DESIGN_RULES_BASE() |
||||
|
{ |
||||
|
// Disconnect Events
|
||||
|
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_CHOICE_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_CHOICE_SELECTED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnRightCBSelection ), NULL, this ); |
||||
|
m_buttonOk->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnOkButtonClick ), NULL, this ); |
||||
|
m_buttonCancel->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_DESIGN_RULES_BASE::OnCancelButtonClick ), NULL, this ); |
||||
|
} |
4834
pcbnew/dialog_design_rules_base.fbp
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,115 +1,117 @@ |
|||||
/////////////////////////////////////////////////////////////////////////// |
|
||||
// C++ code generated with wxFormBuilder (version Apr 16 2008) |
|
||||
// http://www.wxformbuilder.org/ |
|
||||
// |
|
||||
// PLEASE DO "NOT" EDIT THIS FILE! |
|
||||
/////////////////////////////////////////////////////////////////////////// |
|
||||
|
|
||||
#ifndef __dialog_design_rules_base__ |
|
||||
#define __dialog_design_rules_base__ |
|
||||
|
|
||||
#include <wx/intl.h> |
|
||||
|
|
||||
#include <wx/colour.h> |
|
||||
#include <wx/settings.h> |
|
||||
#include <wx/string.h> |
|
||||
#include <wx/font.h> |
|
||||
#include <wx/grid.h> |
|
||||
#include <wx/gdicmn.h> |
|
||||
#include <wx/button.h> |
|
||||
#include <wx/sizer.h> |
|
||||
#include <wx/statbox.h> |
|
||||
#include <wx/choice.h> |
|
||||
#include <wx/listctrl.h> |
|
||||
#include <wx/panel.h> |
|
||||
#include <wx/bitmap.h> |
|
||||
#include <wx/image.h> |
|
||||
#include <wx/icon.h> |
|
||||
#include <wx/radiobox.h> |
|
||||
#include <wx/stattext.h> |
|
||||
#include <wx/textctrl.h> |
|
||||
#include <wx/statline.h> |
|
||||
#include <wx/notebook.h> |
|
||||
#include <wx/html/htmlwin.h> |
|
||||
#include <wx/dialog.h> |
|
||||
|
|
||||
/////////////////////////////////////////////////////////////////////////// |
|
||||
|
|
||||
/////////////////////////////////////////////////////////////////////////////// |
|
||||
/// Class DIALOG_DESIGN_RULES_BASE |
|
||||
/////////////////////////////////////////////////////////////////////////////// |
|
||||
class DIALOG_DESIGN_RULES_BASE : public wxDialog |
|
||||
{ |
|
||||
private: |
|
||||
|
|
||||
protected: |
|
||||
enum |
|
||||
{ |
|
||||
wxID_ADD_NETCLASS = 1000, |
|
||||
wxID_REMOVE_NETCLASS, |
|
||||
ID_LEFT_CHOICE_CLICK, |
|
||||
ID_LEFT_TO_RIGHT_COPY, |
|
||||
ID_RIGHT_TO_LEFT_COPY, |
|
||||
ID_RIGHT_CHOICE_CLICK, |
|
||||
}; |
|
||||
|
|
||||
wxNotebook* m_DRnotebook; |
|
||||
wxPanel* m_panelNetClassesEditor; |
|
||||
wxGrid* m_grid; |
|
||||
wxButton* m_addButton; |
|
||||
wxButton* m_removeButton; |
|
||||
wxButton* m_moveUpButton; |
|
||||
wxChoice* m_leftClassChoice; |
|
||||
wxListCtrl* m_leftListCtrl; |
|
||||
wxButton* m_buttonRightToLeft; |
|
||||
wxButton* m_buttonLeftToRight; |
|
||||
wxButton* m_buttonLeftSelAll; |
|
||||
wxButton* m_buttonRightSelAll; |
|
||||
wxChoice* m_rightClassChoice; |
|
||||
wxListCtrl* m_rightListCtrl; |
|
||||
wxPanel* m_panelGolbalDesignRules; |
|
||||
wxRadioBox* m_OptViaType; |
|
||||
wxStaticText* m_ViaMinTitle; |
|
||||
wxTextCtrl* m_SetViasMinSizeCtrl; |
|
||||
wxStaticText* m_ViaMinDrillTitle; |
|
||||
wxTextCtrl* m_SetViasMinDrillCtrl; |
|
||||
wxRadioBox* m_AllowMicroViaCtrl; |
|
||||
wxStaticText* m_MicroViaMinSizeTitle; |
|
||||
wxTextCtrl* m_SetMicroViasMinSizeCtrl; |
|
||||
wxStaticText* m_MicroViaMinDrillTitle; |
|
||||
wxTextCtrl* m_SetMicroViasMinDrillCtrl; |
|
||||
wxStaticText* m_TrackMinWidthTitle; |
|
||||
wxTextCtrl* m_SetTrackMinWidthCtrl; |
|
||||
wxStaticLine* m_staticline1; |
|
||||
wxStaticText* m_staticTextInfo; |
|
||||
wxStaticText* m_staticText7; |
|
||||
wxGrid* m_gridViaSizeList; |
|
||||
wxStaticText* m_staticText8; |
|
||||
wxGrid* m_gridTrackWidthList; |
|
||||
wxHtmlWindow* m_MessagesList; |
|
||||
wxButton* m_buttonOk; |
|
||||
wxButton* m_buttonCancel; |
|
||||
|
|
||||
// Virtual event handlers, overide them in your derived class |
|
||||
virtual void OnNetClassesNameLeftClick( wxGridEvent& event ){ event.Skip(); } |
|
||||
virtual void OnNetClassesNameRightClick( wxGridEvent& event ){ event.Skip(); } |
|
||||
virtual void OnAddNetclassClick( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnRemoveNetclassClick( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnMoveUpSelectedNetClass( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnLeftCBSelection( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnRightToLeftCopyButton( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnLeftToRightCopyButton( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnLeftSelectAllButton( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnRightSelectAllButton( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnRightCBSelection( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnOkButtonClick( wxCommandEvent& event ){ event.Skip(); } |
|
||||
virtual void OnCancelButtonClick( wxCommandEvent& event ){ event.Skip(); } |
|
||||
|
|
||||
|
|
||||
public: |
|
||||
DIALOG_DESIGN_RULES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Design Rules Editor"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 777,640 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); |
|
||||
~DIALOG_DESIGN_RULES_BASE(); |
|
||||
|
|
||||
}; |
|
||||
|
|
||||
#endif //__dialog_design_rules_base__ |
|
||||
|
/////////////////////////////////////////////////////////////////////////// |
||||
|
// C++ code generated with wxFormBuilder (version Apr 16 2008) |
||||
|
// http://www.wxformbuilder.org/ |
||||
|
// |
||||
|
// PLEASE DO "NOT" EDIT THIS FILE! |
||||
|
/////////////////////////////////////////////////////////////////////////// |
||||
|
|
||||
|
#ifndef __dialog_design_rules_base__ |
||||
|
#define __dialog_design_rules_base__ |
||||
|
|
||||
|
#include <wx/intl.h> |
||||
|
|
||||
|
class NETS_LIST_CTRL; |
||||
|
|
||||
|
#include <wx/colour.h> |
||||
|
#include <wx/settings.h> |
||||
|
#include <wx/string.h> |
||||
|
#include <wx/font.h> |
||||
|
#include <wx/grid.h> |
||||
|
#include <wx/gdicmn.h> |
||||
|
#include <wx/button.h> |
||||
|
#include <wx/sizer.h> |
||||
|
#include <wx/statbox.h> |
||||
|
#include <wx/choice.h> |
||||
|
#include <wx/listctrl.h> |
||||
|
#include <wx/panel.h> |
||||
|
#include <wx/bitmap.h> |
||||
|
#include <wx/image.h> |
||||
|
#include <wx/icon.h> |
||||
|
#include <wx/radiobox.h> |
||||
|
#include <wx/stattext.h> |
||||
|
#include <wx/textctrl.h> |
||||
|
#include <wx/statline.h> |
||||
|
#include <wx/notebook.h> |
||||
|
#include <wx/html/htmlwin.h> |
||||
|
#include <wx/dialog.h> |
||||
|
|
||||
|
/////////////////////////////////////////////////////////////////////////// |
||||
|
|
||||
|
/////////////////////////////////////////////////////////////////////////////// |
||||
|
/// Class DIALOG_DESIGN_RULES_BASE |
||||
|
/////////////////////////////////////////////////////////////////////////////// |
||||
|
class DIALOG_DESIGN_RULES_BASE : public wxDialog |
||||
|
{ |
||||
|
private: |
||||
|
|
||||
|
protected: |
||||
|
enum |
||||
|
{ |
||||
|
wxID_ADD_NETCLASS = 1000, |
||||
|
wxID_REMOVE_NETCLASS, |
||||
|
ID_LEFT_CHOICE_CLICK, |
||||
|
ID_LEFT_TO_RIGHT_COPY, |
||||
|
ID_RIGHT_TO_LEFT_COPY, |
||||
|
ID_RIGHT_CHOICE_CLICK, |
||||
|
}; |
||||
|
|
||||
|
wxNotebook* m_DRnotebook; |
||||
|
wxPanel* m_panelNetClassesEditor; |
||||
|
wxGrid* m_grid; |
||||
|
wxButton* m_addButton; |
||||
|
wxButton* m_removeButton; |
||||
|
wxButton* m_moveUpButton; |
||||
|
wxChoice* m_leftClassChoice; |
||||
|
NETS_LIST_CTRL* m_leftListCtrl; |
||||
|
wxButton* m_buttonRightToLeft; |
||||
|
wxButton* m_buttonLeftToRight; |
||||
|
wxButton* m_buttonLeftSelAll; |
||||
|
wxButton* m_buttonRightSelAll; |
||||
|
wxChoice* m_rightClassChoice; |
||||
|
NETS_LIST_CTRL* m_rightListCtrl; |
||||
|
wxPanel* m_panelGolbalDesignRules; |
||||
|
wxRadioBox* m_OptViaType; |
||||
|
wxStaticText* m_ViaMinTitle; |
||||
|
wxTextCtrl* m_SetViasMinSizeCtrl; |
||||
|
wxStaticText* m_ViaMinDrillTitle; |
||||
|
wxTextCtrl* m_SetViasMinDrillCtrl; |
||||
|
wxRadioBox* m_AllowMicroViaCtrl; |
||||
|
wxStaticText* m_MicroViaMinSizeTitle; |
||||
|
wxTextCtrl* m_SetMicroViasMinSizeCtrl; |
||||
|
wxStaticText* m_MicroViaMinDrillTitle; |
||||
|
wxTextCtrl* m_SetMicroViasMinDrillCtrl; |
||||
|
wxStaticText* m_TrackMinWidthTitle; |
||||
|
wxTextCtrl* m_SetTrackMinWidthCtrl; |
||||
|
wxStaticLine* m_staticline1; |
||||
|
wxStaticText* m_staticTextInfo; |
||||
|
wxStaticText* m_staticText7; |
||||
|
wxGrid* m_gridViaSizeList; |
||||
|
wxStaticText* m_staticText8; |
||||
|
wxGrid* m_gridTrackWidthList; |
||||
|
wxHtmlWindow* m_MessagesList; |
||||
|
wxButton* m_buttonOk; |
||||
|
wxButton* m_buttonCancel; |
||||
|
|
||||
|
// Virtual event handlers, overide them in your derived class |
||||
|
virtual void OnNetClassesNameLeftClick( wxGridEvent& event ){ event.Skip(); } |
||||
|
virtual void OnNetClassesNameRightClick( wxGridEvent& event ){ event.Skip(); } |
||||
|
virtual void OnAddNetclassClick( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnRemoveNetclassClick( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnMoveUpSelectedNetClass( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnLeftCBSelection( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnRightToLeftCopyButton( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnLeftToRightCopyButton( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnLeftSelectAllButton( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnRightSelectAllButton( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnRightCBSelection( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnOkButtonClick( wxCommandEvent& event ){ event.Skip(); } |
||||
|
virtual void OnCancelButtonClick( wxCommandEvent& event ){ event.Skip(); } |
||||
|
|
||||
|
|
||||
|
public: |
||||
|
DIALOG_DESIGN_RULES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Design Rules Editor"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 777,640 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); |
||||
|
~DIALOG_DESIGN_RULES_BASE(); |
||||
|
|
||||
|
}; |
||||
|
|
||||
|
#endif //__dialog_design_rules_base__ |
Write
Preview
Loading…
Cancel
Save
Reference in new issue