|
KiCad PCB EDA Suite
|
#include <set>#include <wx/string.h>#include <font/fontconfig.h>#include <project.h>#include <pcb_io_altium_designer.h>#include <altium_pcb.h>#include <altium_pcb_compound_file.h>#include <io/io_utils.h>#include <io/altium/altium_binary_parser.h>#include <io/altium/altium_project_variants.h>#include <pcb_io/pcb_io.h>#include <reporter.h>#include <board.h>#include <footprint.h>#include <compoundfilereader.h>#include <utf.h>Go to the source code of this file.
Functions | |
| void | ApplyAltiumProjectVariantsToBoard (BOARD *aBoard, const std::vector< ALTIUM_PROJECT_VARIANT > &aVariants) |
| Pcbnew PLUGIN for Altium *.PcbDoc format. | |
| void | ApplyAltiumProjectParametersToProject (PROJECT *aProject, const std::map< wxString, wxString > &aParameters) |
| Register Altium project parameters as KiCad project text variables so that imported board text referencing special strings (e.g. | |
| void ApplyAltiumProjectParametersToProject | ( | PROJECT * | aProject, |
| const std::map< wxString, wxString > & | aParameters ) |
Register Altium project parameters as KiCad project text variables so that imported board text referencing special strings (e.g.
".PCB_Revision") resolves to its value.
Existing project variables are not overwritten, and names that collide with KiCad's reserved or contextually resolved variables are skipped to preserve native resolution.
Definition at line 128 of file pcb_io_altium_designer.cpp.
References PROJECT::GetTextVars(), PROJECT::IncrementTextVarsTicker(), and name.
Referenced by PCB_IO_ALTIUM_CIRCUIT_MAKER::LoadBoard(), PCB_IO_ALTIUM_CIRCUIT_STUDIO::LoadBoard(), PCB_IO_ALTIUM_DESIGNER::LoadBoard(), and PCB_IO_SOLIDWORKS::LoadBoard().
| void ApplyAltiumProjectVariantsToBoard | ( | BOARD * | aBoard, |
| const std::vector< ALTIUM_PROJECT_VARIANT > & | aVariants ) |
Pcbnew PLUGIN for Altium *.PcbDoc format.
Apply parsed Altium project variants to a board by setting FOOTPRINT_VARIANT data on each footprint whose reference matches a variant entry.
Definition at line 51 of file pcb_io_altium_designer.cpp.
References BOARD::AddVariant(), FOOTPRINT::AddVariant(), ALTIUM_VARIANT_ENTRY::alternateFields, AltiumUniqueIdToKiid(), ALTIUM_VARIANT_ENTRY::designator, BOARD::Footprints(), ALTIUM_VARIANT_ENTRY::kind, path, FOOTPRINT_VARIANT::SetDNP(), FOOTPRINT_VARIANT::SetExcludedFromBOM(), FOOTPRINT_VARIANT::SetExcludedFromPosFiles(), FOOTPRINT_VARIANT::SetFieldValue(), BOARD::SetVariantDescription(), and ALTIUM_VARIANT_ENTRY::uniqueId.
Referenced by PCB_IO_ALTIUM_CIRCUIT_MAKER::LoadBoard(), PCB_IO_ALTIUM_CIRCUIT_STUDIO::LoadBoard(), PCB_IO_ALTIUM_DESIGNER::LoadBoard(), and PCB_IO_SOLIDWORKS::LoadBoard().