diff --git a/eeschema/dialogs/panel_setup_formatting.cpp b/eeschema/dialogs/panel_setup_formatting.cpp index 70119e96b0..e785d8b889 100644 --- a/eeschema/dialogs/panel_setup_formatting.cpp +++ b/eeschema/dialogs/panel_setup_formatting.cpp @@ -37,8 +37,6 @@ PANEL_SETUP_FORMATTING::PANEL_SETUP_FORMATTING( wxWindow* aWindow, SCH_EDIT_FRAM m_frame( aFrame ), m_textSize( aFrame, m_textSizeLabel, m_textSizeCtrl, m_textSizeUnits, true ), m_lineWidth( aFrame, m_lineWidthLabel, m_lineWidthCtrl, m_lineWidthUnits, true ), - m_busWidth( aFrame, m_busWidthLabel, m_busWidthCtrl, m_busWidthUnits, true ), - m_wireWidth( aFrame, m_wireWidthLabel, m_wireWidthCtrl, m_wireWidthUnits, true ), m_pinSymbolSize( aFrame, m_pinSymbolSizeLabel, m_pinSymbolSizeCtrl, m_pinSymbolSizeUnits, true ), m_junctionSize( aFrame, m_jctSizeLabel, m_jctSizeCtrl, m_jctSizeUnits, true ) { @@ -65,15 +63,11 @@ bool PANEL_SETUP_FORMATTING::TransferDataToWindow() m_textSize.SetUnits( EDA_UNITS::INCHES, true ); m_lineWidth.SetUnits( EDA_UNITS::INCHES, true ); - m_busWidth.SetUnits( EDA_UNITS::INCHES, true ); - m_wireWidth.SetUnits( EDA_UNITS::INCHES, true ); m_pinSymbolSize.SetUnits( EDA_UNITS::INCHES, true ); m_junctionSize.SetUnits( EDA_UNITS::INCHES, true ); m_textSize.SetValue( settings.m_DefaultTextSize ); m_lineWidth.SetValue( settings.m_DefaultLineWidth ); - m_busWidth.SetValue( settings.m_DefaultBusThickness ); - m_wireWidth.SetValue( settings.m_DefaultWireThickness ); m_pinSymbolSize.SetValue( settings.m_PinSymbolSize ); m_junctionSize.SetValue( settings.m_JunctionSize ); @@ -111,8 +105,6 @@ bool PANEL_SETUP_FORMATTING::TransferDataFromWindow() settings.m_DefaultTextSize = (int) m_textSize.GetValue(); settings.m_DefaultLineWidth = (int) m_lineWidth.GetValue(); - settings.m_DefaultWireThickness = (int) m_wireWidth.GetValue(); - settings.m_DefaultBusThickness = (int) m_busWidth.GetValue(); settings.m_PinSymbolSize = (int) m_pinSymbolSize.GetValue(); settings.m_JunctionSize = (int) m_junctionSize.GetValue(); @@ -122,8 +114,6 @@ bool PANEL_SETUP_FORMATTING::TransferDataFromWindow() settings.m_TextOffsetRatio = dtmp / 100.0; m_frame->GetRenderSettings()->SetDefaultPenWidth( settings.m_DefaultLineWidth ); - m_frame->GetRenderSettings()->m_DefaultWireThickness = settings.m_DefaultWireThickness; - m_frame->GetRenderSettings()->m_DefaultBusThickness = settings.m_DefaultBusThickness; m_frame->GetRenderSettings()->m_TextOffsetRatio = settings.m_TextOffsetRatio; m_frame->GetRenderSettings()->m_PinSymbolSize = settings.m_PinSymbolSize; m_frame->GetRenderSettings()->m_JunctionSize = settings.m_JunctionSize; @@ -140,8 +130,6 @@ void PANEL_SETUP_FORMATTING::ImportSettingsFrom( SCHEMATIC_SETTINGS& aSettings ) { m_textSize.SetValue( aSettings.m_DefaultTextSize ); m_lineWidth.SetValue( aSettings.m_DefaultLineWidth ); - m_busWidth.SetValue( aSettings.m_DefaultBusThickness ); - m_wireWidth.SetValue( aSettings.m_DefaultWireThickness ); m_pinSymbolSize.SetValue( aSettings.m_PinSymbolSize ); m_junctionSize.SetValue( aSettings.m_JunctionSize ); diff --git a/eeschema/dialogs/panel_setup_formatting.h b/eeschema/dialogs/panel_setup_formatting.h index 351c281d89..fcd8c56b5f 100644 --- a/eeschema/dialogs/panel_setup_formatting.h +++ b/eeschema/dialogs/panel_setup_formatting.h @@ -35,8 +35,6 @@ class PANEL_SETUP_FORMATTING : public PANEL_SETUP_FORMATTING_BASE UNIT_BINDER m_textSize; UNIT_BINDER m_lineWidth; - UNIT_BINDER m_busWidth; - UNIT_BINDER m_wireWidth; UNIT_BINDER m_pinSymbolSize; UNIT_BINDER m_junctionSize; diff --git a/eeschema/dialogs/panel_setup_formatting_base.cpp b/eeschema/dialogs/panel_setup_formatting_base.cpp index e4621745cc..d1e281198d 100644 --- a/eeschema/dialogs/panel_setup_formatting_base.cpp +++ b/eeschema/dialogs/panel_setup_formatting_base.cpp @@ -124,28 +124,6 @@ PANEL_SETUP_FORMATTING_BASE::PANEL_SETUP_FORMATTING_BASE( wxWindow* parent, wxWi fgSizer32->SetFlexibleDirection( wxBOTH ); fgSizer32->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); - m_busWidthLabel = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("&Bus thickness:"), wxDefaultPosition, wxDefaultSize, 0 ); - m_busWidthLabel->Wrap( -1 ); - fgSizer32->Add( m_busWidthLabel, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); - - m_busWidthCtrl = new wxTextCtrl( sbSizer2->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS|wxSP_WRAP ); - fgSizer32->Add( m_busWidthCtrl, 0, wxEXPAND|wxALIGN_CENTER_VERTICAL, 5 ); - - m_busWidthUnits = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); - m_busWidthUnits->Wrap( -1 ); - fgSizer32->Add( m_busWidthUnits, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); - - m_wireWidthLabel = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("&Wire thickness:"), wxDefaultPosition, wxDefaultSize, 0 ); - m_wireWidthLabel->Wrap( -1 ); - fgSizer32->Add( m_wireWidthLabel, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); - - m_wireWidthCtrl = new wxTextCtrl( sbSizer2->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS|wxSP_WRAP ); - fgSizer32->Add( m_wireWidthCtrl, 0, wxEXPAND|wxALIGN_CENTER_VERTICAL, 5 ); - - m_wireWidthUnits = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); - m_wireWidthUnits->Wrap( -1 ); - fgSizer32->Add( m_wireWidthUnits, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); - m_jctSizeLabel = new wxStaticText( sbSizer2->GetStaticBox(), wxID_ANY, _("Junction size:"), wxDefaultPosition, wxDefaultSize, 0 ); m_jctSizeLabel->Wrap( -1 ); fgSizer32->Add( m_jctSizeLabel, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 ); diff --git a/eeschema/dialogs/panel_setup_formatting_base.fbp b/eeschema/dialogs/panel_setup_formatting_base.fbp index c26c19b8cd..328f184e31 100644 --- a/eeschema/dialogs/panel_setup_formatting_base.fbp +++ b/eeschema/dialogs/panel_setup_formatting_base.fbp @@ -1049,378 +1049,6 @@ none 0 5 - - 5 - wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - &Bus thickness: - 0 - - 0 - - - 0 - - 1 - m_busWidthLabel - 1 - - - protected - 1 - - Resizable - 1 - - - - 0 - - - - - -1 - - - - 5 - wxEXPAND|wxALIGN_CENTER_VERTICAL - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - - 0 - - - - 0 - - 1 - m_busWidthCtrl - 1 - - - protected - 1 - - Resizable - 1 - - wxSP_ARROW_KEYS|wxSP_WRAP - - 0 - - - wxFILTER_NONE - wxDefaultValidator - - - - - - - - - 5 - wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - mils - 0 - - 0 - - - 0 - - 1 - m_busWidthUnits - 1 - - - protected - 1 - - Resizable - 1 - - - - 0 - - - - - -1 - - - - 5 - wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - &Wire thickness: - 0 - - 0 - - - 0 - - 1 - m_wireWidthLabel - 1 - - - protected - 1 - - Resizable - 1 - - - - 0 - - - - - -1 - - - - 5 - wxEXPAND|wxALIGN_CENTER_VERTICAL - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - - 0 - - - - 0 - - 1 - m_wireWidthCtrl - 1 - - - protected - 1 - - Resizable - 1 - - wxSP_ARROW_KEYS|wxSP_WRAP - - 0 - - - wxFILTER_NONE - wxDefaultValidator - - - - - - - - - 5 - wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT - 0 - - 1 - 1 - 1 - 1 - - - - - - - - 1 - 0 - 1 - - 1 - 0 - Dock - 0 - Left - 1 - - 1 - - 0 - 0 - wxID_ANY - mils - 0 - - 0 - - - 0 - - 1 - m_wireWidthUnits - 1 - - - protected - 1 - - Resizable - 1 - - - - 0 - - - - - -1 - - 5 wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT diff --git a/eeschema/dialogs/panel_setup_formatting_base.h b/eeschema/dialogs/panel_setup_formatting_base.h index 6f1f0fd1fb..d92e9560da 100644 --- a/eeschema/dialogs/panel_setup_formatting_base.h +++ b/eeschema/dialogs/panel_setup_formatting_base.h @@ -46,12 +46,6 @@ class PANEL_SETUP_FORMATTING_BASE : public wxPanel wxStaticText* m_pinSymbolSizeLabel; wxTextCtrl* m_pinSymbolSizeCtrl; wxStaticText* m_pinSymbolSizeUnits; - wxStaticText* m_busWidthLabel; - wxTextCtrl* m_busWidthCtrl; - wxStaticText* m_busWidthUnits; - wxStaticText* m_wireWidthLabel; - wxTextCtrl* m_wireWidthCtrl; - wxStaticText* m_wireWidthUnits; wxStaticText* m_jctSizeLabel; wxTextCtrl* m_jctSizeCtrl; wxStaticText* m_jctSizeUnits;