/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck * Copyright (C) 2015 Wayne Stambaugh * Copyright (C) 1992-2015 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 */ /** * @file modeditoptions.cpp * @brief Pcbnew footprint (module) editor options. */ #include #include #include #include #include #include #include #include void FOOTPRINT_EDIT_FRAME::OnSelectOptionToolbar( wxCommandEvent& event ) { int id = event.GetId(); auto displ_opts = (PCB_DISPLAY_OPTIONS*)GetDisplayOptions(); bool state = m_optionsToolBar->GetToolToggled( id ); switch( id ) { case ID_TB_OPTIONS_SHOW_PADS_SKETCH: displ_opts->m_DisplayPadFill = !state; m_canvas->Refresh( ); break; case ID_TB_OPTIONS_SHOW_VIAS_SKETCH: displ_opts->m_DisplayViaFill = !state; m_canvas->Refresh( ); break; case ID_TB_OPTIONS_SHOW_MODULE_TEXT_SKETCH: displ_opts->m_DisplayModTextFill = state ? SKETCH : FILLED; m_canvas->Refresh( ); break; case ID_TB_OPTIONS_SHOW_MODULE_EDGE_SKETCH: displ_opts->m_DisplayModEdgeFill = state ? SKETCH : FILLED; m_canvas->Refresh( ); break; case ID_TB_OPTIONS_SHOW_HIGH_CONTRAST_MODE: displ_opts->m_ContrastModeDisplay = state; m_canvas->Refresh( ); break; default: wxMessageBox( wxT( "FOOTPRINT_EDIT_FRAME::OnSelectOptionToolbar error" ) ); break; } } PARAM_CFG_ARRAY& FOOTPRINT_EDIT_FRAME::GetConfigurationSettings() { auto displ_opts = (PCB_DISPLAY_OPTIONS*)GetDisplayOptions(); BOARD_DESIGN_SETTINGS& settings = GetDesignSettings(); // Update everything m_configParams.clear(); // boost::ptr_vector destroys the pointers inside // Display options: m_configParams.push_back( new PARAM_CFG_INT( true, wxT( "FpEditorUnits" ), (int*)&g_UserUnit, MILLIMETRES ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorDisplayPolarCoords" ), &displ_opts->m_DisplayPolarCood, false ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorPadDisplayMode" ), &displ_opts->m_DisplayPadFill, true ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorGraphicLinesDisplayMode" ), &displ_opts->m_DisplayModEdgeFill, FILLED ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorTextsDisplayMode" ), &displ_opts->m_DisplayModTextFill, FILLED ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorTextsDisplayMode" ), &displ_opts->m_DisplayModTextFill, FILLED ) ); m_configParams.push_back( new PARAM_CFG_WXSTRING( true, wxT( "FpEditorTextsRefDefaultText" ), &settings.m_RefDefaultText, wxT( "REF**" ) ) ); // design settings m_configParams.push_back( new PARAM_CFG_INT_WITH_SCALE( true, wxT( "FpEditorGrlineWidth" ), &settings.m_ModuleSegmentWidth, Millimeter2iu( DEFAULT_GR_MODULE_THICKNESS ), Millimeter2iu( 0.01 ), Millimeter2iu( 100.0 ), NULL, 1/IU_PER_MM ) ); m_configParams.push_back( new PARAM_CFG_INT_WITH_SCALE( true, wxT( "FpEditorTextsDefaultSizeH" ), &settings.m_ModuleTextSize.x, Millimeter2iu( DEFAULT_TEXT_MODULE_SIZE ), Millimeter2iu( 0.01 ), Millimeter2iu( 100.0 ), NULL, 1/IU_PER_MM ) ); m_configParams.push_back( new PARAM_CFG_INT_WITH_SCALE( true, wxT( "FpEditorTextsDefaultSizeV" ), &settings.m_ModuleTextSize.y, Millimeter2iu( DEFAULT_TEXT_MODULE_SIZE ), Millimeter2iu(0.01), Millimeter2iu( 100.0 ), NULL, 1/IU_PER_MM ) ); m_configParams.push_back( new PARAM_CFG_INT_WITH_SCALE( true, wxT( "FpEditorTextsDefaultThickness" ), &settings.m_ModuleTextWidth, Millimeter2iu( DEFAULT_GR_MODULE_THICKNESS ), Millimeter2iu( 0.01 ), Millimeter2iu( 20.0 ), NULL, 1/IU_PER_MM ) ); m_configParams.push_back( new PARAM_CFG_WXSTRING( true, wxT( "FpEditorRefDefaultText" ), &settings.m_RefDefaultText, wxT( "REF**" ) ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorRefDefaultVisibility" ), &settings.m_RefDefaultVisibility, true ) ); m_configParams.push_back( new PARAM_CFG_INT( true, wxT( "FpEditorRefDefaultLayer" ), &settings.m_RefDefaultlayer, int( F_SilkS ), int( F_SilkS ), int( F_Fab ) ) ); m_configParams.push_back( new PARAM_CFG_WXSTRING( true, wxT( "FpEditorValueDefaultText" ), &settings.m_ValueDefaultText, wxT( "" ) ) ); m_configParams.push_back( new PARAM_CFG_BOOL( true, wxT( "FpEditorValueDefaultVisibility" ), &settings.m_ValueDefaultVisibility, true ) ); m_configParams.push_back( new PARAM_CFG_INT( true, wxT( "FpEditorValueDefaultLayer" ), &settings.m_ValueDefaultlayer, int( F_Fab ), int( F_SilkS ), int( F_Fab ) ) ); return m_configParams; }