/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2009 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com * Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include #include #include #include #include PANEL_PCBNEW_SETTINGS::PANEL_PCBNEW_SETTINGS( PCB_EDIT_FRAME* aFrame, PAGED_DIALOG* aParent ) : PANEL_PCBNEW_SETTINGS_BASE( aParent->GetTreebook() ), m_Frame( aFrame ) {} bool PANEL_PCBNEW_SETTINGS::TransferDataToWindow() { auto displ_opts = (PCB_DISPLAY_OPTIONS*)m_Frame->GetDisplayOptions(); /* Set display options */ m_PolarDisplay->SetSelection( displ_opts->m_DisplayPolarCood ? 1 : 0 ); m_UnitsSelection->SetSelection( m_Frame->GetUserUnits() == INCHES ? 0 : 1 ); wxString rotationAngle; rotationAngle = AngleToStringDegrees( (double)m_Frame->GetRotationAngle() ); m_RotationAngle->SetValue( rotationAngle ); m_DrcOn->SetValue( m_Frame->Settings().m_legacyDrcOn ); m_TrackAutodel->SetValue( m_Frame->Settings().m_legacyAutoDeleteOldTrack ); m_Track_45_Only_Ctrl->SetValue( m_Frame->Settings().m_legacyUse45DegreeTracks ); m_Segments_45_Only_Ctrl->SetValue( m_Frame->Settings().m_use45DegreeGraphicSegments ); m_Track_DoubleSegm_Ctrl->SetValue( m_Frame->Settings().m_legacyUseTwoSegmentTracks ); m_MagneticPadOptCtrl->SetSelection( m_Frame->Settings().m_magneticPads ); m_MagneticTrackOptCtrl->SetSelection( m_Frame->Settings().m_magneticTracks ); m_UseEditKeyForWidth->SetValue( m_Frame->Settings().m_editActionChangesTrackWidth ); m_dragSelects->SetValue( m_Frame->Settings().m_dragSelects ); m_Show_Page_Limits->SetValue( m_Frame->ShowPageLimits() ); return true; } bool PANEL_PCBNEW_SETTINGS::TransferDataFromWindow() { auto displ_opts = (PCB_DISPLAY_OPTIONS*)m_Frame->GetDisplayOptions(); displ_opts->m_DisplayPolarCood = m_PolarDisplay->GetSelection() != 0; m_Frame->SetUserUnits( m_UnitsSelection->GetSelection() == 0 ? INCHES : MILLIMETRES ); m_Frame->SetRotationAngle( wxRound( 10.0 * wxAtof( m_RotationAngle->GetValue() ) ) ); /* Updating the combobox to display the active layer. */ m_Frame->Settings().m_legacyDrcOn = m_DrcOn->GetValue(); m_Frame->Settings().m_legacyAutoDeleteOldTrack = m_TrackAutodel->GetValue(); m_Frame->Settings().m_use45DegreeGraphicSegments = m_Segments_45_Only_Ctrl->GetValue(); m_Frame->Settings().m_legacyUse45DegreeTracks = m_Track_45_Only_Ctrl->GetValue(); m_Frame->Settings().m_legacyUseTwoSegmentTracks = m_Track_DoubleSegm_Ctrl->GetValue(); m_Frame->Settings().m_magneticPads = (MAGNETIC_PAD_OPTION_VALUES) m_MagneticPadOptCtrl->GetSelection(); m_Frame->Settings().m_magneticTracks = (MAGNETIC_PAD_OPTION_VALUES) m_MagneticTrackOptCtrl->GetSelection(); m_Frame->Settings().m_editActionChangesTrackWidth = m_UseEditKeyForWidth->GetValue(); m_Frame->Settings().m_dragSelects = m_dragSelects->GetValue(); m_Frame->SetShowPageLimits( m_Show_Page_Limits->GetValue() ); // Apply changes to the GAL KIGFX::VIEW* view = m_Frame->GetGalCanvas()->GetView(); KIGFX::PCB_PAINTER* painter = static_cast( view->GetPainter() ); KIGFX::PCB_RENDER_SETTINGS* settings = painter->GetSettings(); settings->LoadDisplayOptions( displ_opts, m_Frame->ShowPageLimits() ); return true; }