/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2007 Jean-Pierre Charras, jean-pierre.charras * Copyright (C) 1992-2011 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 cfg.cpp */ #include #include #include #include #include #include #include #include #include #include #include #include #include #define GROUP wxT("/cvpcb") #define GROUPLIB wxT("/pcbnew/libraries") #define GROUPEQU wxT("/cvpcb/libraries") PARAM_CFG_ARRAY& CVPCB_MAINFRAME::GetProjectFileParameters() { if( !m_projectFileParams.empty() ) return m_projectFileParams; m_projectFileParams.push_back( new PARAM_CFG_BASE( GROUPLIB, PARAM_COMMAND_ERASE ) ); m_projectFileParams.push_back( new PARAM_CFG_LIBNAME_LIST( wxT( "LibName" ), &m_ModuleLibNames, GROUPLIB ) ); m_projectFileParams.push_back( new PARAM_CFG_LIBNAME_LIST( wxT( "EquName" ), &m_AliasLibNames, GROUPEQU ) ); m_projectFileParams.push_back( new PARAM_CFG_WXSTRING( wxT( "NetIExt" ), &m_NetlistFileExtension ) ); m_projectFileParams.push_back( new PARAM_CFG_FILENAME( wxT( "LibDir" ), &m_UserLibraryPath, GROUPLIB ) ); return m_projectFileParams; } void CVPCB_MAINFRAME::LoadProjectFile( const wxString& aFileName ) { wxFileName fn( aFileName ); PROJECT& prj = Prj(); m_ModuleLibNames.Clear(); m_AliasLibNames.Clear(); fn.SetExt( ProjectFileExtension ); // was: Pgm().ReadProjectConfig( fn.GetFullPath(), GROUP, GetProjectFileParameters(), false ); prj.ConfigLoad( prj.PcbSearchS(), fn.GetFullPath(), GROUP, GetProjectFileParameters(), false ); if( m_NetlistFileExtension.IsEmpty() ) m_NetlistFileExtension = wxT( "net" ); // empty the table, Load() it again below. FootprintLibs()->Clear(); /* this is done by ConfigLoad(), and that sets the env var too. prj.SetProjectFullName( fn.GetFullPath() ); */ wxString projectFpLibTableFileName = prj.FootprintLibTblName(); try { FootprintLibs()->Load( projectFpLibTableFileName ); } catch( const IO_ERROR& ioe ) { DisplayError( this, ioe.errorText ); } } void CVPCB_MAINFRAME::SaveProjectFile( wxCommandEvent& aEvent ) { wxFileName fn = m_NetlistFileName; fn.SetExt( ProjectFileExtension ); if( aEvent.GetId() == ID_SAVE_PROJECT_AS || !m_NetlistFileName.IsOk() ) { wxFileDialog dlg( this, _( "Save Project File" ), fn.GetPath(), wxEmptyString, ProjectFileWildcard, wxFD_SAVE ); if( dlg.ShowModal() == wxID_CANCEL ) return; fn = dlg.GetPath(); if( !fn.HasExt() ) fn.SetExt( ProjectFileExtension ); } if( !IsWritable( fn ) ) return; // was: // Pgm().WriteProjectConfig( fn.GetFullPath(), GROUP, GetProjectFileParameters() ); PROJECT& prj = Prj(); SEARCH_STACK& search = prj.SchSearchS(); prj.ConfigSave( search, fn.GetFullPath(), GROUP, GetProjectFileParameters() ); }