KiCad PCB EDA Suite
|
Scripting helper functions for pcbnew functionality. More...
#include <Python.h>
#include "pcbnew_scripting_helpers.h"
#include <action_plugin.h>
#include <board.h>
#include <board_design_settings.h>
#include <pcb_marker.h>
#include <cstdlib>
#include <drawing_sheet/ds_data_model.h>
#include <drc/drc_engine.h>
#include <drc/drc_item.h>
#include <fp_lib_table.h>
#include <core/ignore.h>
#include <io_mgr.h>
#include <string_utils.h>
#include <macros.h>
#include <project.h>
#include <project_pcb.h>
#include <project/net_settings.h>
#include <project/project_file.h>
#include <settings/settings_manager.h>
#include <specctra.h>
#include <project/project_local_settings.h>
#include <wildcards_and_files_ext.h>
#include <locale_io.h>
#include <wx/app.h>
#include <wx/crt.h>
Go to the source code of this file.
Functions | |
BOARD * | GetBoard () |
void | ScriptingSetPcbEditFrame (PCB_EDIT_FRAME *aPcbEditFrame) |
void | ScriptingOnDestructPcbEditFrame (PCB_EDIT_FRAME *aPcbEditFrame) |
BOARD * | LoadBoard (wxString &aFileName) |
SETTINGS_MANAGER * | GetSettingsManager () |
PROJECT * | GetDefaultProject () |
BOARD * | LoadBoard (wxString &aFileName, IO_MGR::PCB_FILE_T aFormat) |
BOARD * | NewBoard (wxString &aFileName) |
Creates a new board and project with the given filename (will overwrite existing files!) More... | |
BOARD * | CreateEmptyBoard () |
Construct a default BOARD with a temporary (no filename) project. More... | |
bool | SaveBoard (wxString &aFileName, BOARD *aBoard, IO_MGR::PCB_FILE_T aFormat, bool aSkipSettings) |
bool | SaveBoard (wxString &aFileName, BOARD *aBoard, bool aSkipSettings) |
Saves a copy of the given board and its associated project to the given path. More... | |
FP_LIB_TABLE * | GetFootprintLibraryTable () |
wxArrayString | GetFootprintLibraries () |
Get the nicknames of all of the footprint libraries configured in pcbnew in both the project and global library tables. More... | |
wxArrayString | GetFootprints (const wxString &aNickName) |
Get the names of all of the footprints available in a footprint library. More... | |
bool | ExportSpecctraDSN (wxString &aFullFilename) |
Will export the current BOARD to a specctra dsn file. More... | |
bool | ExportSpecctraDSN (BOARD *aBoard, wxString &aFullFilename) |
Will export the BOARD to a specctra dsn file. More... | |
bool | ExportVRML (const wxString &aFullFileName, double aMMtoWRMLunit, bool aExport3DFiles, bool aUseRelativePaths, const wxString &a3D_Subdir, double aXRef, double aYRef) |
Export the current BOARD to a VRML (wrl) file. More... | |
bool | ImportSpecctraSES (wxString &aFullFilename) |
Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and tracks in an existing and loaded BOARD. More... | |
bool | ImportSpecctraSES (BOARD *aBoard, wxString &aFullFilename) |
Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and Unlike first overload doesn't need a valid PCB_EDIT_FRAME set and can be used in a standalone python script. More... | |
bool | ExportFootprintsToLibrary (bool aStoreInNewLib, const wxString &aLibName, wxString *aLibPath) |
Save footprints in a library: More... | |
void | Refresh () |
Update the board display after modifying it by a python script (note: it is automatically called by action plugins, after running the plugin, so call this function is usually not needed inside action plugins. More... | |
void | UpdateUserInterface () |
Update the layer manager and other widgets from the board setup (layer and items visibility, colors ...) (note: it is automatically called by action plugins, after running the plugin, so call this function is usually not needed inside action plugins. More... | |
int | GetUserUnits () |
Return the currently selected user unit value for the interface. More... | |
std::deque< BOARD_ITEM * > | GetCurrentSelection () |
Get the list of selected objects. More... | |
void | FocusOnItem (BOARD_ITEM *aItem, PCB_LAYER_ID aLayer) |
Focus the view on the target item. More... | |
bool | IsActionRunning () |
Are we currently in an action plugin? More... | |
bool | WriteDRCReport (BOARD *aBoard, const wxString &aFileName, EDA_UNITS aUnits, bool aReportAllTrackErrors) |
Run the DRC check on the given board and writes the results to a report file. More... | |
wxString | GetLanguage () |
Get the language string from COMMON_SETTINGS. More... | |
Variables | |
static PCB_EDIT_FRAME * | s_PcbEditFrame = nullptr |
static SETTINGS_MANAGER * | s_SettingsManager = nullptr |
Scripting helper functions for pcbnew functionality.
Definition in file pcbnew_scripting_helpers.cpp.
BOARD * CreateEmptyBoard | ( | ) |
Construct a default BOARD with a temporary (no filename) project.
Definition at line 246 of file pcbnew_scripting_helpers.cpp.
References GetDefaultProject(), s_PcbEditFrame, and BOARD::SetProject().
Referenced by PCBNEW_JOBS_HANDLER::doFpExportSvg().
bool ExportFootprintsToLibrary | ( | bool | aStoreInNewLib, |
const wxString & | aLibName = wxEmptyString , |
||
wxString * | aLibPath = nullptr |
||
) |
Save footprints in a library:
aStoreInNewLib | set to true to save footprints in a existing lib. Existing footprints will be kept or updated. This lib should be in fp lib table, and is type is .pretty. Set to false to save footprints in a new lib. If it is an existing lib, previous footprints will be removed. |
aLibName | is the optional library name to create, stops dialog call. Must be called with aStoreInNewLib as true. |
Definition at line 417 of file pcbnew_scripting_helpers.cpp.
References PCB_EDIT_FRAME::ExportFootprintsToLibrary(), and s_PcbEditFrame.
bool ExportSpecctraDSN | ( | BOARD * | aBoard, |
wxString & | aFullFilename | ||
) |
Will export the BOARD to a specctra dsn file.
Unlike first overload doesn't need a valid PCB_EDIT_FRAME set and can be used in a standalone python script.
See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
Definition at line 358 of file pcbnew_scripting_helpers.cpp.
References DSN::ExportBoardToSpecctraFile().
bool ExportSpecctraDSN | ( | wxString & | aFullFilename | ) |
Will export the current BOARD to a specctra dsn file.
See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
Definition at line 344 of file pcbnew_scripting_helpers.cpp.
References PCB_EDIT_FRAME::ExportSpecctraFile(), and s_PcbEditFrame.
bool ExportVRML | ( | const wxString & | aFullFileName, |
double | aMMtoWRMLunit, | ||
bool | aExport3DFiles, | ||
bool | aUseRelativePaths, | ||
const wxString & | a3D_Subdir, | ||
double | aXRef, | ||
double | aYRef | ||
) |
Export the current BOARD to a VRML (wrl) file.
See ExportVRML_File in pcb_edit_frame.h for detailed documentation.
Definition at line 373 of file pcbnew_scripting_helpers.cpp.
References PCB_EDIT_FRAME::ExportVRML_File(), and s_PcbEditFrame.
void FocusOnItem | ( | BOARD_ITEM * | aItem, |
PCB_LAYER_ID | aLayer = UNDEFINED_LAYER |
||
) |
Focus the view on the target item.
aItem | is the target board item. |
aLayer | is the layer ID of the target item. |
Definition at line 473 of file pcbnew_scripting_helpers.cpp.
References PCB_BASE_FRAME::FocusOnItem(), and s_PcbEditFrame.
BOARD * GetBoard | ( | ) |
Definition at line 66 of file pcbnew_scripting_helpers.cpp.
References PCB_BASE_FRAME::GetBoard(), and s_PcbEditFrame.
Referenced by ZONE_FILLER_TOOL::CheckAllZones(), DISPLAY_FOOTPRINTS_FRAME::DISPLAY_FOOTPRINTS_FRAME(), PCBEXPR_LAYER_VALUE::EqualTo(), EVT_GRID_CMD_CELL_CHANGED(), EVT_TOOL_RANGE(), EDIT_TOOL::FilletTracks(), FOOTPRINT_EDIT_FRAME::FOOTPRINT_EDIT_FRAME(), GetFootprintLibraryTable(), PCB_DRAW_PANEL_GAL::GetMsgPanelInfo(), PCB_EDIT_FRAME::RecreateBOMFileFromBoard(), ROUTER_TOOL::SelectCopperLayerPair(), GLOBAL_EDIT_TOOL::SwapLayers(), and PCB_PROPERTIES_PANEL::UpdateData().
std::deque< BOARD_ITEM * > GetCurrentSelection | ( | ) |
Get the list of selected objects.
Definition at line 455 of file pcbnew_scripting_helpers.cpp.
References SELECTION::begin(), SELECTION::end(), PCB_EDIT_FRAME::GetCurrentSelection(), and s_PcbEditFrame.
Referenced by UNIT_SELECTOR_LEN::GetUnitScale(), UNIT_SELECTOR_THICKNESS::GetUnitScale(), UNIT_SELECTOR_FREQUENCY::GetUnitScale(), UNIT_SELECTOR_ANGLE::GetUnitScale(), UNIT_SELECTOR_RESISTOR::GetUnitScale(), UNIT_SELECTOR_LINEAR_RESISTANCE::GetUnitScale(), UNIT_SELECTOR_LEN_CABLE::GetUnitScale(), UNIT_SELECTOR_VOLTAGE::GetUnitScale(), UNIT_SELECTOR_POWER::GetUnitScale(), UNIT_SELECTOR_SPEED::GetUnitScale(), and UNIT_SELECTOR_TIME::GetUnitScale().
PROJECT * GetDefaultProject | ( | ) |
Definition at line 119 of file pcbnew_scripting_helpers.cpp.
References dummy, SETTINGS_MANAGER::GetProject(), GetSettingsManager(), SETTINGS_MANAGER::LoadProject(), and project.
Referenced by CreateEmptyBoard(), and LoadBoard().
wxArrayString GetFootprintLibraries | ( | ) |
Get the nicknames of all of the footprint libraries configured in pcbnew in both the project and global library tables.
Definition at line 313 of file pcbnew_scripting_helpers.cpp.
References GetFootprintLibraryTable(), LIB_TABLE::GetLogicalLibs(), and name.
FP_LIB_TABLE * GetFootprintLibraryTable | ( | ) |
Definition at line 297 of file pcbnew_scripting_helpers.cpp.
References GetBoard(), BOARD::GetProject(), PROJECT_PCB::PcbFootprintLibs(), and project.
Referenced by GetFootprintLibraries(), and GetFootprints().
wxArrayString GetFootprints | ( | const wxString & | aNickName | ) |
Get the names of all of the footprints available in a footprint library.
aNickName | is the nickname specifying which footprint library to fetch from. |
Definition at line 329 of file pcbnew_scripting_helpers.cpp.
References FP_LIB_TABLE::FootprintEnumerate(), and GetFootprintLibraryTable().
wxString GetLanguage | ( | ) |
Get the language string from COMMON_SETTINGS.
Definition at line 623 of file pcbnew_scripting_helpers.cpp.
References SETTINGS_MANAGER::GetCommonSettings(), GetSettingsManager(), COMMON_SETTINGS::SYSTEM::language, COMMON_SETTINGS::m_System, and s_PcbEditFrame.
SETTINGS_MANAGER * GetSettingsManager | ( | ) |
Definition at line 99 of file pcbnew_scripting_helpers.cpp.
References EDA_BASE_FRAME::GetSettingsManager(), ignore_unused(), s_PcbEditFrame, and s_SettingsManager.
Referenced by PANEL_COLOR_SETTINGS::createThemeList(), PCB_EDIT_FRAME::doAutoSave(), FOOTPRINT_EDIT_FRAME::doCloseWindow(), PCB_EDIT_FRAME::Files_io_from_id(), PANEL_FOOTPRINT_CHOOSER::FinishSetup(), GetDefaultProject(), GetLanguage(), LoadBoard(), FOOTPRINT_EDITOR_SETTINGS::migrateSchema0to1(), NewBoard(), PGM_SINGLE_TOP::OnPgmInit(), PCB_EDIT_FRAME::OpenProjectFiles(), PROJECT::PinLibrary(), SaveBoard(), PCB_EDIT_FRAME::SavePcbCopy(), PCB_EDIT_FRAME::SavePcbFile(), PCB_EDIT_FRAME::SaveProjectLocalSettings(), SCH_PREVIEW_PANEL::SCH_PREVIEW_PANEL(), DIALOG_PRINT_USING_PRINTER::TransferDataToWindow(), PANEL_PL_EDITOR_COLOR_SETTINGS::TransferDataToWindow(), and PROJECT::UnpinLibrary().
int GetUserUnits | ( | ) |
Return the currently selected user unit value for the interface.
Definition at line 446 of file pcbnew_scripting_helpers.cpp.
References UNITS_PROVIDER::GetUserUnits(), and s_PcbEditFrame.
Referenced by DRAWING_TOOL::drawArc(), DRAWING_TOOL::drawShape(), PCB_EDIT_FRAME::GenFootprintsReport(), SCH_EDIT_FRAME::SaveSettings(), and PCB_EDIT_FRAME::UpdateViaSizeSelectBox().
bool ImportSpecctraSES | ( | BOARD * | aBoard, |
wxString & | aFullFilename | ||
) |
Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and Unlike first overload doesn't need a valid PCB_EDIT_FRAME set and can be used in a standalone python script.
See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
Definition at line 402 of file pcbnew_scripting_helpers.cpp.
References DSN::ImportSpecctraSession().
bool ImportSpecctraSES | ( | wxString & | aFullFilename | ) |
Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and tracks in an existing and loaded BOARD.
See http://www.autotraxeda.com/docs/SPECCTRA/SPECCTRA.pdf for the specification.
Definition at line 389 of file pcbnew_scripting_helpers.cpp.
References PCB_EDIT_FRAME::ImportSpecctraSession(), and s_PcbEditFrame.
bool IsActionRunning | ( | ) |
Are we currently in an action plugin?
Definition at line 482 of file pcbnew_scripting_helpers.cpp.
References ACTION_PLUGINS::IsActionRunning().
BOARD * LoadBoard | ( | wxString & | aFileName | ) |
Definition at line 87 of file pcbnew_scripting_helpers.cpp.
References IO_MGR::KICAD_SEXP, KiCadPcbFileExtension, IO_MGR::LEGACY, LegacyPcbFileExtension, and LoadBoard().
Referenced by PCBNEW_JOBS_HANDLER::JobExportDrc(), PCBNEW_JOBS_HANDLER::JobExportDrill(), PCBNEW_JOBS_HANDLER::JobExportDxf(), PCBNEW_JOBS_HANDLER::JobExportGerber(), PCBNEW_JOBS_HANDLER::JobExportGerbers(), PCBNEW_JOBS_HANDLER::JobExportPdf(), PCBNEW_JOBS_HANDLER::JobExportPos(), PCBNEW_JOBS_HANDLER::JobExportStep(), PCBNEW_JOBS_HANDLER::JobExportSvg(), and LoadBoard().
BOARD * LoadBoard | ( | wxString & | aFileName, |
IO_MGR::PCB_FILE_T | aFormat | ||
) |
Definition at line 137 of file pcbnew_scripting_helpers.cpp.
References _, BOARD::Add(), BOARD::BuildConnectivity(), BOARD::BuildListOfNets(), DesignRulesFileExtension, dummy, GAL_LAYER_ID_BITMASK_END, GAL_LAYER_INDEX, PCB_BASE_FRAME::GetBoard(), GetDefaultProject(), BOARD::GetDesignSettings(), SETTINGS_MANAGER::GetProject(), GetSettingsManager(), DS_DATA_MODEL::GetTheInstance(), IO_MGR::Load(), SETTINGS_MANAGER::LoadProject(), BASE_SCREEN::m_DrawingSheetFileName, BOARD_DESIGN_SETTINGS::m_DRCEngine, BOARD::m_LegacyVisibleItems, BOARD::m_LegacyVisibleLayers, Prj(), project, ProjectFileExtension, Rescue, BOARD::ResolveDRCExclusions(), DS_DATA_MODEL::ResolvePath(), s_PcbEditFrame, BOARD::SetProject(), BOARD::SynchronizeNetsAndNetClasses(), and BOARD::UpdateUserUnits().
BOARD * NewBoard | ( | wxString & | aFileName | ) |
Creates a new board and project with the given filename (will overwrite existing files!)
aFileName | is the filename (including full path if desired) of the kicad_pcb to create |
Definition at line 218 of file pcbnew_scripting_helpers.cpp.
References dummy, BOARD::GetDesignSettings(), SETTINGS_MANAGER::GetProject(), GetSettingsManager(), SETTINGS_MANAGER::LoadProject(), BOARD_DESIGN_SETTINGS::m_DRCEngine, project, ProjectFileExtension, SaveBoard(), and BOARD::SetProject().
void Refresh | ( | ) |
Update the board display after modifying it by a python script (note: it is automatically called by action plugins, after running the plugin, so call this function is usually not needed inside action plugins.
Could be deprecated because modifying a board (especially deleting items) outside a action plugin can crash Pcbnew.
Definition at line 430 of file pcbnew_scripting_helpers.cpp.
References PCB_EDIT_FRAME::RebuildAndRefresh(), and s_PcbEditFrame.
Referenced by EDA_MSG_PANEL::AppendMessage(), BITMAP_BUTTON::Check(), EDA_3D_MODEL_VIEWER::Clear3DModel(), ACTION_TOOLBAR::doSelectAction(), SYMBOL_EDIT_FRAME::emptyScreen(), BITMAP_BUTTON::Enable(), SPLIT_BUTTON::Enable(), STD_BITMAP_BUTTON::Enable(), EDA_MSG_PANEL::EraseMsgBox(), FOOTPRINT_PREVIEW_PANEL::fitToCurrentFootprint(), PCB_EDIT_FRAME::ImportSpecctraSession(), ACTION_TOOLBAR::KiRealize(), SYMBOL_EDIT_FRAME::LoadOneLibrarySymbolAux(), PANEL_RF_ATTENUATORS::OnAttenuatorSelection(), APPEARANCE_CONTROLS::OnBoardChanged(), PCB_EDIT_FRAME::onBoardLoaded(), SEARCH_PANE_LISTVIEW::OnColClicked(), WX_COLLAPSIBLE_PANE_HEADER::onEnterWindow(), EDA_3D_CANVAS::OnEvent(), EDA_DRAW_PANEL_GAL::OnEvent(), BITMAP2CMP_FRAME::OnFileHistory(), WX_COLLAPSIBLE_PANE_HEADER::onFocus(), EDA_DRAW_PANEL_GAL::onIdle(), BITMAP_BUTTON::OnKillFocus(), SPLIT_BUTTON::OnKillFocus(), STD_BITMAP_BUTTON::OnKillFocus(), APPEARANCE_CONTROLS_3D::OnLanguageChanged(), APPEARANCE_CONTROLS::OnLanguageChanged(), APPEARANCE_CONTROLS::OnLayerChanged(), PANEL_SETUP_BOARD_STACKUP::OnLayersOptionsChanged(), WX_COLLAPSIBLE_PANE_HEADER::onLeaveWindow(), BITMAP_BUTTON::OnLeftButtonDown(), SPLIT_BUTTON::OnLeftButtonDown(), STD_BITMAP_BUTTON::OnLeftButtonDown(), BITMAP_BUTTON::OnLeftButtonUp(), SPLIT_BUTTON::OnLeftButtonUp(), STD_BITMAP_BUTTON::OnLeftButtonUp(), BITMAP2CMP_FRAME::OnLoadFile(), BITMAP_BUTTON::OnMouseEnter(), SPLIT_BUTTON::OnMouseEnter(), STD_BITMAP_BUTTON::OnMouseEnter(), BITMAP_BUTTON::OnMouseLeave(), SPLIT_BUTTON::OnMouseLeave(), STD_BITMAP_BUTTON::OnMouseLeave(), EDA_3D_MODEL_VIEWER::OnMouseMove(), EDA_3D_MODEL_VIEWER::OnMouseWheel(), BITMAP2CMP_PANEL::OnNegativeClicked(), DIALOG_TEMPLATE_SELECTOR::onNotebookResize(), LAYERS_MAP_DIALOG::OnResetClick(), LAYERS_MAP_DIALOG::OnSelectLayer(), BITMAP_BUTTON::OnSetFocus(), PANEL_PACKAGES_VIEW::OnSizeInfoBox(), SPLIT_BUTTON::onThemeChanged(), STD_BITMAP_BUTTON::onThemeChanged(), BITMAP2CMP_PANEL::OnThresholdChange(), PANEL_TRANSLINE::OnTransLineResetButtonClick(), PANEL_TRANSLINE::OnTranslineSelection(), ACTION_TOOLBAR::RefreshBitmaps(), PANEL_REGULATOR::RegulatorPageUpdate(), DIALOG_JUNCTION_PROPS::resetDefaults(), DIALOG_LINE_PROPERTIES::resetDefaults(), DIALOG_WIRE_BUS_PROPERTIES::resetDefaults(), TEMPLATE_WIDGET::Select(), EDA_3D_MODEL_VIEWER::Set3DModel(), WX_COLLAPSIBLE_PANE_HEADER::SetCollapsed(), STATUS_MIN_MAX_POPUP::SetCurrent(), SPLIT_BUTTON::SetLabel(), EDA_MSG_PANEL::SetMessage(), KISTATUSBAR::SetNotificationCount(), PANEL_PACKAGE::SetSelected(), FOOTPRINTS_LISTBOX::SetSelection(), LIBRARY_LISTBOX::SetSelection(), BITMAP2CMP_FRAME::ShowChangedLanguage(), PCB_CALCULATOR_FRAME::ShowChangedLanguage(), SCH_DRAW_PANEL::SwitchBackend(), PANEL_COLOR_CODE::ThemeChanged(), PANEL_RF_ATTENUATORS::ThemeChanged(), PANEL_COLOR_CODE::ToleranceSelection(), TEMPLATE_WIDGET::Unselect(), mpWindow::UpdateAll(), KIGFX::CAIRO_GAL::updatedGalDisplayOptions(), KIGFX::OPENGL_GAL::updatedGalDisplayOptions(), DIALOG_PAGES_SETTINGS::UpdateDrawingSheetExample(), and NUMBER_BADGE::UpdateNumber().
bool SaveBoard | ( | wxString & | aFileName, |
BOARD * | aBoard, | ||
bool | aSkipSettings = false |
||
) |
Saves a copy of the given board and its associated project to the given path.
Boards can only be saved in KiCad native format.
aFileName | is the full path to save a copy to. |
aBoard | is a pointer to a loaded BOARD to save. |
aSkipSettings | if true, only save the board file. This will lose settings changes that are saved in the project file |
Definition at line 291 of file pcbnew_scripting_helpers.cpp.
References IO_MGR::KICAD_SEXP, and SaveBoard().
bool SaveBoard | ( | wxString & | aFileName, |
BOARD * | aBoard, | ||
IO_MGR::PCB_FILE_T | aFormat, | ||
bool | aSkipSettings | ||
) |
Definition at line 260 of file pcbnew_scripting_helpers.cpp.
References BOARD::BuildConnectivity(), dummy, BOARD::GetProject(), GetSettingsManager(), ProjectFileExtension, IO_MGR::Save(), SETTINGS_MANAGER::SaveProjectAs(), and BOARD::SynchronizeNetsAndNetClasses().
Referenced by NewBoard(), and SaveBoard().
void ScriptingOnDestructPcbEditFrame | ( | PCB_EDIT_FRAME * | aPcbEditFrame | ) |
Definition at line 81 of file pcbnew_scripting_helpers.cpp.
References s_PcbEditFrame.
Referenced by PCB_EDIT_FRAME::~PCB_EDIT_FRAME().
void ScriptingSetPcbEditFrame | ( | PCB_EDIT_FRAME * | aPcbEditFrame | ) |
Definition at line 75 of file pcbnew_scripting_helpers.cpp.
References s_PcbEditFrame.
Referenced by PCB::IFACE::CreateKiWindow().
void UpdateUserInterface | ( | ) |
Update the layer manager and other widgets from the board setup (layer and items visibility, colors ...) (note: it is automatically called by action plugins, after running the plugin, so call this function is usually not needed inside action plugins.
Definition at line 439 of file pcbnew_scripting_helpers.cpp.
References s_PcbEditFrame, and PCB_EDIT_FRAME::UpdateUserInterface().
bool WriteDRCReport | ( | BOARD * | aBoard, |
const wxString & | aFileName, | ||
EDA_UNITS | aUnits, | ||
bool | aReportAllTrackErrors | ||
) |
Run the DRC check on the given board and writes the results to a report file.
Requires that the project for the board be loaded, and note that unlike the DRC dialog this does not attempt to fill zones, so zones must be valid before calling.
aBoard | is a valid loaded board. |
aFileName | is the full path and name of the report file to write. |
aUnits | is the units to use in the report. |
aReportAllTrackErrors | controls whether all errors or just the first error is reported for each track. |
Definition at line 488 of file pcbnew_scripting_helpers.cpp.
References PROJECT::AbsolutePath(), LSET::AllLayersMask(), ENUM_MAP< T >::Choices(), LIB_TABLE::Clear(), DesignRulesFileExtension, DRCE_DUPLICATE_FOOTPRINT, DRCE_EXTRA_FOOTPRINT, DRCE_MISSING_FOOTPRINT, DRCE_NET_CONFLICT, DRCE_UNCONNECTED_ITEMS, BOARD::FillItemMap(), BOARD::GetDesignSettings(), BOARD::GetFileName(), FP_LIB_TABLE::GetGlobalTableFileName(), BOARD::GetLayerName(), BOARD::GetProject(), BOARD_DESIGN_SETTINGS::GetSeverity(), GFootprintTable, ENUM_MAP< T >::Instance(), LIB_TABLE::Load(), BOARD_DESIGN_SETTINGS::m_DRCEngine, ENUM_MAP< T >::Map(), LSET::Name(), pcbIUScale, SETTINGS_MANAGER::Prj(), s_SettingsManager, TO_UTF8, ENUM_MAP< T >::Undefined(), UNDEFINED_LAYER, and IO_ERROR::What().
|
static |
Definition at line 62 of file pcbnew_scripting_helpers.cpp.
Referenced by CreateEmptyBoard(), ExportFootprintsToLibrary(), ExportSpecctraDSN(), ExportVRML(), FocusOnItem(), GetBoard(), GetCurrentSelection(), GetLanguage(), GetSettingsManager(), GetUserUnits(), ImportSpecctraSES(), LoadBoard(), Refresh(), ScriptingOnDestructPcbEditFrame(), ScriptingSetPcbEditFrame(), and UpdateUserInterface().
|
static |
Definition at line 63 of file pcbnew_scripting_helpers.cpp.
Referenced by GetSettingsManager(), and WriteDRCReport().