kicad/eeschema/lib_export.cpp

128 lines
3.0 KiB
C++
Raw Normal View History

/**
* @file lib_export.cpp
* @brief Eeschema library maintenance routines to backup modified libraries and
* create, edit, and delete components.
2008-04-16 19:12:40 +00:00
*/
#include "fctsys.h"
#include "gr_basic.h"
#include "class_drawpanel.h"
#include "confirm.h"
#include "gestfich.h"
#include "eeschema_id.h"
#include "general.h"
#include "protos.h"
2010-02-16 16:21:52 +00:00
#include "libeditframe.h"
#include "class_library.h"
#include <wx/filename.h>
extern int ExportPartId;
2008-04-16 19:12:40 +00:00
void LIB_EDIT_FRAME::OnImportPart( wxCommandEvent& event )
{
wxString errMsg;
wxFileName fn;
CMP_LIBRARY* LibTmp;
LIB_ALIAS* LibEntry;
2008-04-16 19:12:40 +00:00
m_lastDrawItem = NULL;
wxFileDialog dlg( this, _( "Import Component" ), m_LastLibImportPath,
wxEmptyString, CompLibFileWildcard,
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
if( dlg.ShowModal() == wxID_CANCEL )
2008-04-16 19:12:40 +00:00
return;
fn = dlg.GetPath();
LibTmp = CMP_LIBRARY::LoadLibrary( fn, errMsg );
if( LibTmp == NULL )
return;
2008-04-16 19:12:40 +00:00
LibEntry = LibTmp->GetFirstEntry();
2008-04-16 19:12:40 +00:00
if( LibEntry == NULL )
2008-04-16 19:12:40 +00:00
{
wxString msg;
msg.Printf( _( "Component library file <%s> is empty." ), GetChars( fn.GetFullPath() ) );
DisplayError( this, msg );
return;
2008-04-16 19:12:40 +00:00
}
if( LoadOneLibraryPartAux( LibEntry, LibTmp ) )
{
fn = dlg.GetPath();
m_LastLibImportPath = fn.GetPath();
DisplayLibInfos();
GetScreen()->ClearUndoRedoList();
DrawPanel->Refresh();
}
delete LibTmp;
}
void LIB_EDIT_FRAME::OnExportPart( wxCommandEvent& event )
{
wxFileName fn;
wxString msg, title;
CMP_LIBRARY* CurLibTmp;
bool createLib = ( event.GetId() == ExportPartId ) ? false : true;
2008-04-16 19:12:40 +00:00
if( m_component == NULL )
2008-04-16 19:12:40 +00:00
{
DisplayError( this, _( "There is no component selected to save." ) );
return;
2008-04-16 19:12:40 +00:00
}
fn = m_component->GetName().Lower();
fn.SetExt( CompLibFileExtension );
2008-04-16 19:12:40 +00:00
title = createLib ? _( "New Library" ) : _( "Export Component" );
2008-04-16 19:12:40 +00:00
wxFileDialog dlg( this, title, wxGetCwd(), fn.GetFullName(),
CompLibFileWildcard, wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
2008-04-16 19:12:40 +00:00
if( dlg.ShowModal() == wxID_CANCEL )
2008-04-16 19:12:40 +00:00
return;
fn = dlg.GetPath();
2008-04-16 19:12:40 +00:00
CurLibTmp = m_library;
2008-04-16 19:12:40 +00:00
m_library = new CMP_LIBRARY( LIBRARY_TYPE_EESCHEMA, fn );
2008-04-16 19:12:40 +00:00
SaveOnePartInMemory();
bool success = m_library->Save( fn.GetFullPath() );
if( success )
m_LastLibExportPath = fn.GetPath();
2008-04-16 19:12:40 +00:00
delete m_library;
m_library = CurLibTmp;
2008-04-16 19:12:40 +00:00
if( success )
2008-04-16 19:12:40 +00:00
{
if( createLib )
{
msg = fn.GetFullPath() + _( " - OK" );
DisplayInfoMessage( this, _( "This library will not be available \
until it is loaded by Eeschema.\n\nModify the Eeschema library configuration \
if you want to include it as part of this project." ) );
}
else
msg = fn.GetFullPath() + _( " - Export OK" );
} // Error
2008-04-16 19:12:40 +00:00
else
msg = _( "Error creating " ) + fn.GetFullName();
SetStatusText( msg );
}