/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020 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 3 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, see . */ #include #include #include #include #include #include #include #include #include #include "dialog_schematic_setup.h" #include "panel_eeschema_template_fieldnames.h" DIALOG_SCHEMATIC_SETUP::DIALOG_SCHEMATIC_SETUP( SCH_EDIT_FRAME* aFrame ) : PAGED_DIALOG( aFrame, _( "Schematic Setup" ), _( "Import Settings from Another Project..." ) ), m_frame( aFrame ), m_severities( nullptr ) { m_formatting = new PANEL_SETUP_FORMATTING( this, aFrame ); m_fieldNameTemplates = new PANEL_EESCHEMA_TEMPLATE_FIELDNAMES( aFrame, this, false ); m_pinMap = new PANEL_SETUP_PINMAP( this, aFrame ); ERC_ITEM dummyItem; m_severities = new PANEL_SETUP_SEVERITIES( this, dummyItem, g_ErcSettings->m_Severities, ERCE_FIRST, ERCE_LAST ); m_textVars = new PANEL_TEXT_VARIABLES( this, &Prj() ); /* * WARNING: If you change page names you MUST update calls to DoShowSchematicSetupDialog(). */ m_treebook->AddPage( new wxPanel( this ), _( "General" ) ); m_treebook->AddSubPage( m_formatting, _( "Formatting" ) ); m_treebook->AddSubPage( m_fieldNameTemplates, _( "Field Name Templates" ) ); m_treebook->AddPage( new wxPanel( this ), _( "Electrical Rules" ) ); m_treebook->AddSubPage( m_pinMap, _( "Pin Map" ) ); m_treebook->AddSubPage( m_severities, _( "Violation Severity" ) ); m_treebook->AddPage( new wxPanel( this ), _( "Project" ) ); m_treebook->AddSubPage( m_textVars, _( "Text Variables" ) ); for( size_t i = 0; i < m_treebook->GetPageCount(); ++i ) m_macHack.push_back( true ); // Connect Events m_treebook->Connect( wxEVT_TREEBOOK_PAGE_CHANGED, wxBookCtrlEventHandler( DIALOG_SCHEMATIC_SETUP::OnPageChange ), NULL, this ); FinishDialogSettings(); } DIALOG_SCHEMATIC_SETUP::~DIALOG_SCHEMATIC_SETUP() { m_treebook->Disconnect( wxEVT_TREEBOOK_PAGE_CHANGED, wxBookCtrlEventHandler( DIALOG_SCHEMATIC_SETUP::OnPageChange ), NULL, this ); } void DIALOG_SCHEMATIC_SETUP::OnPageChange( wxBookCtrlEvent& event ) { #ifdef __WXMAC__ // Work around an OSX bug where the wxGrid children don't get placed correctly until // the first resize event int page = event.GetSelection(); if( m_macHack[ page ] ) { wxSize pageSize = m_treebook->GetPage( page )->GetSize(); pageSize.x -= 1; m_treebook->GetPage( page )->SetSize( pageSize ); m_macHack[ page ] = false; } #endif } // Run Import Settings... action void DIALOG_SCHEMATIC_SETUP::OnAuxiliaryAction( wxCommandEvent& event ) { DIALOG_SCH_IMPORT_SETTINGS importDlg( this, m_frame ); if( importDlg.ShowModal() == wxID_CANCEL ) return; wxConfigBase* cfg = new wxFileConfig( wxEmptyString, wxEmptyString, importDlg.GetFilePath() ); // We do not want expansion of env var values when reading our project config file cfg->SetExpandEnvVars( false ); cfg->SetPath( wxCONFIG_PATH_SEPARATOR ); if( importDlg.m_formattingOpt->GetValue() ) { std::vector params; m_frame->AddFormattingParameters( params ); wxConfigLoadParams( cfg, params, GROUP_SCH_EDIT ); m_formatting->TransferDataToWindow(); } if( importDlg.m_fieldNameTemplatesOpt->GetValue() ) { TEMPLATES templateMgr; PARAM_CFG_FIELDNAMES param( &templateMgr ); param.ReadParam( cfg ); m_fieldNameTemplates->ImportSettingsFrom( &templateMgr ); } if( importDlg.m_pinMapOpt->GetValue() ) { // JEY TODO } if( importDlg.m_SeveritiesOpt->GetValue() ) { ERC_SETTINGS settings; settings.LoadDefaults(); wxConfigLoadParams( cfg, settings.GetProjectFileParameters(), GROUP_SCH_EDIT ); m_severities->ImportSettingsFrom( settings.m_Severities ); } delete cfg; }