/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2017-2023 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 #include #include #include /* * Spin control parameters */ static const double gridThicknessMin = 1.0; static const double gridThicknessMax = 10.0; static const double gridThicknessStep = 0.5; static const int gridMinSpacingMin = 5; static const int gridMinSpacingMax = 200; static const int gridMinSpacingStep = 5; ///TODO: These are duplicated in gal_display_options - Unify! static const UTIL::CFG_MAP gridStyleSelectMap = { { KIGFX::GRID_STYLE::DOTS, 0 }, // Default { KIGFX::GRID_STYLE::LINES, 1 }, { KIGFX::GRID_STYLE::SMALL_CROSS, 2 }, }; static const UTIL::CFG_MAP gridSnapConfigVals = { { KIGFX::GRID_SNAPPING::ALWAYS, 0 }, { KIGFX::GRID_SNAPPING::WITH_GRID, 1 }, { KIGFX::GRID_SNAPPING::NEVER, 2 } }; GAL_OPTIONS_PANEL::GAL_OPTIONS_PANEL( wxWindow* aParent, APP_SETTINGS_BASE* aAppSettings ) : GAL_OPTIONS_PANEL_BASE( aParent ), m_cfg( aAppSettings ) { // Rendering engine #ifdef __WXMAC__ // On MAC, Cairo render does not work. m_renderingEngine->Hide(); #endif m_renderingEngine->SetItemToolTip( 0, _( "Hardware-accelerated graphics (recommended)" ) ); m_renderingEngine->SetItemToolTip( 1, _( "Software graphics (for computers which do not " "support KiCad's hardware acceleration " "requirements)" ) ); // Grid settings subpanel #if 0 m_gridLineWidth->SetRange( gridThicknessMin, gridThicknessMax ); m_gridLineWidth->SetIncrement( gridThicknessStep ); #else int selection = 0; // default selection for( double size = gridThicknessMin; size <= gridThicknessMax; size += gridThicknessStep ) { m_gridThicknessList.push_back( size ); m_gridLineWidth->Append( wxString::Format( wxT( "%.1f" ), size ) ); if( m_cfg->m_Window.grid.line_width == size ) selection = m_gridLineWidth->GetCount() - 1; } m_gridLineWidth->SetSelection( selection ); #endif m_gridMinSpacing->SetRange( gridMinSpacingMin, gridMinSpacingMax ); m_gridMinSpacing->SetIncrement( gridMinSpacingStep ); } bool GAL_OPTIONS_PANEL::TransferDataToWindow() { #ifndef __WXMAC__ auto canvasType = static_cast( m_cfg->m_Graphics.canvas_type ); if( canvasType == EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL ) m_renderingEngine->SetSelection( 0 ); else m_renderingEngine->SetSelection( 1 ); #endif m_gridSnapOptions->SetSelection( m_cfg->m_Window.grid.snap ); m_gridStyle->SetSelection( m_cfg->m_Window.grid.style ); m_gridMinSpacing->SetValue( m_cfg->m_Window.grid.min_spacing ); m_cursorShape->SetSelection( m_cfg->m_Window.cursor.fullscreen_cursor ); m_forceCursorDisplay->SetValue( m_cfg->m_Window.cursor.always_show_cursor ); return true; } bool GAL_OPTIONS_PANEL::TransferDataFromWindow() { m_cfg->m_Window.grid.snap = m_gridSnapOptions->GetSelection(); m_cfg->m_Window.grid.style = m_gridStyle->GetSelection(); if( m_gridLineWidth->GetSelection() >= 0 ) m_cfg->m_Window.grid.line_width = m_gridThicknessList[ m_gridLineWidth->GetSelection() ]; m_cfg->m_Window.grid.min_spacing = m_gridMinSpacing->GetValue(); m_cfg->m_Window.cursor.fullscreen_cursor = m_cursorShape->GetSelection(); m_cfg->m_Window.cursor.always_show_cursor = m_forceCursorDisplay->GetValue(); #ifndef __WXMAC__ m_cfg->m_Graphics.canvas_type = m_renderingEngine->GetSelection() == 0 ? EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL : EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO; #endif return true; } bool GAL_OPTIONS_PANEL::ResetPanel( APP_SETTINGS_BASE* aAppSettings ) { APP_SETTINGS_BASE* saved = m_cfg; m_cfg = aAppSettings; TransferDataToWindow(); m_cfg = saved; return true; }