Compilation cleanup, TODO.txt update about library creation
This commit is contained in:
parent
3f761c890c
commit
173b869dcb
|
@ -7,6 +7,20 @@
|
|||
|
||||
* add MODULE::Add (see BOARD:Add), to make it more clean
|
||||
|
||||
* Saving modules to library (in librairi.cpp)
|
||||
|
||||
see:
|
||||
- void PCB_EDIT_FRAME::ArchiveModulesOnBoard( const wxString& aLibName, bool aNewModulesOnly )
|
||||
|
||||
|
||||
- bool PCB_BASE_FRAME::Save_Module_In_Library( const wxString& aLibName,
|
||||
MODULE* aModule,
|
||||
bool aOverwrite,
|
||||
bool aDisplayDialog )
|
||||
|
||||
What do we do about this?, ask Dick, these functions should be transplanted
|
||||
to kicad plugin?
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,11 @@
|
|||
%module pcbnew
|
||||
%include "kicad.i"
|
||||
|
||||
// ignore a couple of items that generate warnings from swig built code
|
||||
|
||||
%ignore BOARD_ITEM::ZeroOffset;
|
||||
%ignore D_PAD::m_PadSketchModePenSize;
|
||||
|
||||
// this is what it must be included in the wrapper .cxx code to compile
|
||||
|
||||
%{
|
||||
|
|
|
@ -53,6 +53,11 @@
|
|||
%ignore InitKiCadAbout;
|
||||
%ignore GetCommandOptions;
|
||||
|
||||
%rename(getWxRect) operator wxRect;
|
||||
%ignore operator <<;
|
||||
%ignore operator =;
|
||||
|
||||
|
||||
%{
|
||||
#include <cstddef>
|
||||
#include <dlist.h>
|
||||
|
@ -61,7 +66,9 @@
|
|||
#include <wx_python_helpers.h>
|
||||
#include <cstddef>
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include <class_title_block.h>
|
||||
#include <class_colors_design_settings.h>
|
||||
#include <class_marker_base.h>
|
||||
|
|
Loading…
Reference in New Issue