KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcbnew_scripting_helpers.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2013 NBEE Embedded Systems SL, Miguel Angel Ajo <[email protected]>
5 * Copyright (C) 2013-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef __PCBNEW_SCRIPTING_HELPERS_H
26#define __PCBNEW_SCRIPTING_HELPERS_H
27
28#include <deque>
29#include <io_mgr.h>
30
31class PCB_EDIT_FRAME;
32class BOARD;
34class BOARD_ITEM;
35enum class EDA_UNITS;
36
37/* we could be including all these methods as static in a class, but
38 * we want plain pcbnew.<method_name> access from python
39 */
40
41#ifndef SWIG
42void ScriptingSetPcbEditFrame( PCB_EDIT_FRAME* aPCBEdaFrame );
44
45#endif
46
47// For Python scripts: return the current board.
49
50BOARD* LoadBoard( wxString& aFileName, IO_MGR::PCB_FILE_T aFormat );
51
52// Default LoadBoard() to load .kicad_pcb files:.
53BOARD* LoadBoard( wxString& aFileName );
54
61BOARD* NewBoard( wxString& aFileName );
62
64
71
81bool SaveBoard( wxString& aFileName, BOARD* aBoard, bool aSkipSettings = false );
82
89wxArrayString GetFootprintLibraries();
90
97wxArrayString GetFootprints( const wxString& aNickName );
98
106bool ExportSpecctraDSN( wxString& aFullFilename );
107
117bool ExportSpecctraDSN( BOARD* aBoard, wxString& aFullFilename );
118
125bool ExportVRML( const wxString& aFullFileName, double aMMtoWRMLunit, bool aExport3DFiles,
126 bool aUseRelativePaths, const wxString& a3D_Subdir, double aXRef, double aYRef );
127
136bool ImportSpecctraSES( wxString& aFullFilename );
137
149bool ExportFootprintsToLibrary( bool aStoreInNewLib, const wxString& aLibName = wxEmptyString,
150 wxString* aLibPath = nullptr );
151
160void Refresh();
161
169
175int GetUserUnits();
176
180std::deque<BOARD_ITEM*> GetCurrentSelection();
181
185bool IsActionRunning();
186
199bool WriteDRCReport( BOARD* aBoard, const wxString& aFileName, EDA_UNITS aUnits,
200 bool aReportAllTrackErrors );
201
202#endif // __PCBNEW_SCRIPTING_HELPERS_H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:77
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:271
PCB_FILE_T
The set of file types that the IO_MGR knows about, and for which there has been a plugin written,...
Definition: io_mgr.h:54
The main frame for Pcbnew.
EDA_UNITS
Definition: eda_units.h:44
bool ImportSpecctraSES(wxString &aFullFilename)
Import a specctra *.ses file and use it to relocate MODULEs and to replace all vias and tracks in an ...
SETTINGS_MANAGER * GetSettingsManager()
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.
BOARD * CreateEmptyBoard()
Construct a default BOARD with a temporary (no filename) project.
void ScriptingOnDestructPcbEditFrame(PCB_EDIT_FRAME *aPCBEdaFrame)
bool SaveBoard(wxString &aFileName, BOARD *aBoard, bool aSkipSettings=false)
Saves a copy of the given board and its associated project to the given path.
wxArrayString GetFootprintLibraries()
Get the nicknames of all of the footprint libraries configured in pcbnew in both the project and glob...
int GetUserUnits()
Return the currently selected user unit value for the interface.
wxArrayString GetFootprints(const wxString &aNickName)
Get the names of all of the footprints available in a footprint library.
bool IsActionRunning()
Are we currently in an action plugin?
BOARD * LoadBoard(wxString &aFileName, IO_MGR::PCB_FILE_T aFormat)
void UpdateUserInterface()
Update the layer manager and other widgets from the board setup (layer and items visibility,...
void ScriptingSetPcbEditFrame(PCB_EDIT_FRAME *aPCBEdaFrame)
bool ExportSpecctraDSN(wxString &aFullFilename)
Will export the current BOARD to a specctra dsn file.
void Refresh()
Update the board display after modifying it by a python script (note: it is automatically called by a...
std::deque< BOARD_ITEM * > GetCurrentSelection()
Get the list of selected objects.
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.
BOARD * GetBoard()
BOARD * NewBoard(wxString &aFileName)
Creates a new board and project with the given filename (will overwrite existing files!...
bool ExportFootprintsToLibrary(bool aStoreInNewLib, const wxString &aLibName=wxEmptyString, wxString *aLibPath=nullptr)
Save footprints in a library: