/** * @file cvpcb/loadcmp.cpp */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* Read libraries to find a module. * If this module is found, copy it into memory * * aFootprintName is the module name * return - a pointer to the loaded module or NULL. */ MODULE* DISPLAY_FOOTPRINTS_FRAME::Get_Module( const wxString& aFootprintName ) { CVPCB_MAINFRAME* parent = ( CVPCB_MAINFRAME* ) GetParent(); try { PLUGIN::RELEASER pi( IO_MGR::PluginFind( IO_MGR::LEGACY ) ); for( unsigned i = 0; i < parent->m_ModuleLibNames.GetCount(); ++i ) { wxFileName fn = parent->m_ModuleLibNames[i]; fn.SetExt( FootprintLibFileExtension ); wxString libPath = wxGetApp().FindLibraryPath( fn ); if( !libPath ) { wxString msg = wxString::Format( _("PCB foot print library file <%s> could not be found in the default search paths." ), fn.GetFullName().GetData() ); // @todo we should not be using wxMessageBox directly. wxMessageBox( msg, titleLibLoadError, wxOK | wxICON_ERROR, this ); continue; } MODULE* footprint = pi->FootprintLoad( libPath, aFootprintName ); if( footprint ) { footprint->SetParent( GetBoard() ); footprint->SetPosition( wxPoint( 0, 0 ) ); return footprint; } } } catch( IO_ERROR ioe ) { DisplayError( this, ioe.errorText ); return NULL; } wxString msg = wxString::Format( _( "Footprint '%s' not found" ), aFootprintName.GetData() ); DisplayError( this, msg ); return NULL; }