kicad/pcbnew
Maciej Suminski 15b8d3d20a Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time).
Now, nets are saved with consecutive net codes (both modern & legacy plugins).
Zones are saved together with their nets, without depending on the fact if there are any pads with such net. Therefore validation of zone net names was removed (pcbnew/class_board.cpp).

Performed tests:
- Changed a pad's net name from empty to existent - ok, name was changed.
- Changed a pad's net name from empty to nonexistent - ok, error message is displayed, net name stays empty.
- Changed a pad's net name from existent to empty - ok, net name became empty
- Changed a pad's net name from existent to nonexistent - ok, error message is displayed, net name is not changed.

- Drawn a zone that belongs to a net, then modified schematics so the net does not exist anymore. After reloading the net list, all pads/tracks are updated. Zones still belongs to the net that does not exist in the schematic (but still exists in .kicad_pcb file). After running DRC, the zone becomes not filled.
- Undo & redo affects assignment of a polygon to a specific net (you may change net of a polygon, refill it and undo/redo the changes).

- KiCad s-expr & legacy, Eagle, P-CAD boards seem to load without any problem (they also contain correct net names assigned to the appropriate pads). All types of board file formats were loaded, then saved in sexpr format and reopened with a KiCad built from the master branch (without my modifications).
- A few boards were also saved using the legacy format and were opened with the master KiCad without any issues.

- Change a net name for a pad, restore with undo/redo - ok
- Remove everything, restore with undo - ok
- Remove everything, reload netlist - ok

Differences observed between files saved by the master branch KiCad and this one:
- list of nets are not saved in any particular order, so net codes may differ
- the default net class does not contain the unconnected net
2014-01-28 10:19:51 +01:00
..
autorouter Pcbnew: Autoplace functions: renamed spread footprint functions. Rewritten. 2013-11-27 14:20:42 +01:00
dialogs Removed D_PAD::SetNetname() function and D_PAD::m_Netname, D_PAD::m_ShortNetname fields. 2014-01-14 10:41:52 +01:00
exporters Removed NETINFO_ITEM::SetNet() and NETINFO_ITEM::SetNetname() methods. 2014-01-09 15:51:47 +01:00
github 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
import_dxf Dxf export: fix an issue in exported arcs. Update libdfx. 2013-12-19 12:33:57 +01:00
pcad2kicadpcb_plugin NETINFO_ITEMs are not stored in a vector anymore, instead they are held in a unordered_map. Now, the net codes may be not consecutive. There is another way for assigning net codes (using a static int that holds a possible empty net code and a function that makes sure it is not used [getFreeNetCode()]). 2014-01-16 14:20:51 +01:00
router Ratsnest is updated, when there are tracks added using the P&S router. 2013-12-20 15:18:41 +01:00
scripting Footprint wizards: fix issues. 2013-11-01 21:51:37 +01:00
tools Hide m_galCanvas and m_galCanvasActive behind accessors. Fix DLIST concatonation API corner case. 2013-12-26 16:36:43 -06:00
CMakeLists.txt Move files relative to export code to subdir exporters. 2014-01-07 21:41:32 +01:00
Doxyfile_python Fixes typo in doxygen-python, and fixes unitest TestCase().discover on python < 2.7 2013-09-22 02:34:15 +04:00
Doxyfile_xml Adds target to build doxygen-python documentation, that take 2013-09-20 21:01:21 +04:00
Info.plist [MacOSX] Adding better support for Retina Display (NSHighResolutionCapable) 2013-12-31 12:03:02 +01:00
attribut.cpp Extremely trivial stuff (mostly cosmetics) 2013-03-28 07:40:19 +01:00
basepcbframe.cpp Hide m_galCanvas and m_galCanvasActive behind accessors. Fix DLIST concatonation API corner case. 2013-12-26 16:36:43 -06:00
block.cpp Pcbnew: Block selection enhancement, from Bug #593997 (whishlist) 2013-09-21 20:09:41 +02:00
block_module_editor.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
board_items_to_polygon_shape_transform.cpp Pcbnew, 3D viewer: fix incorrect position of multiline texts. 2013-12-27 08:24:36 +01:00
board_undo_redo.cpp Pcbnew: fix 45 degree rotation angle undo and global variable elimination. 2013-12-16 16:40:03 -05:00
build_BOM_from_board.cpp Convert footprint definitions from wxString to FPID. 2013-09-08 14:31:21 -04:00
class_board.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
class_board.h Added iterators for NETINFO_LIST (as net codes for existing net codes may be not consecutive). 2014-01-16 16:47:31 +01:00
class_board_connected_item.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
class_board_connected_item.h BOARD_CONNECTED_ITEMs do not store net code anymore (m_NetCode field), instead net info is stored using a pointer to NETINFO_ITEM. 2014-01-15 18:03:06 +01:00
class_board_design_settings.cpp BOARD_CONNECTED_ITEMs do not store net code anymore (m_NetCode field), instead net info is stored using a pointer to NETINFO_ITEM. 2014-01-15 18:03:06 +01:00
class_board_item.cpp Merged upstream and Mac OS X build fixes. 2013-08-27 11:03:06 +02:00
class_dimension.cpp All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_dimension.h All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_drawsegment.cpp All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_drawsegment.h Dxf export: fix an issue in exported arcs. Update libdfx. 2013-12-19 12:33:57 +01:00
class_drc_item.cpp Eeschema: fix compatibility with old schematic files, which can contain markers. 2013-09-11 17:30:21 +02:00
class_edge_mod.cpp Pcbnew: fix graphic item undo/redo bug. (--fixes lp:1252264) 2013-11-19 13:58:12 -05:00
class_edge_mod.h Pcbnew: fix graphic item undo/redo bug. (--fixes lp:1252264) 2013-11-19 13:58:12 -05:00
class_footprint_wizard.cpp Allow plugins to be reloaded without closing/opening pcbnew, next step is plugin editor, just a few lines away... 2013-03-16 04:27:48 +01:00
class_footprint_wizard.h Allow plugins to be reloaded without closing/opening pcbnew, next step is plugin editor, just a few lines away... 2013-03-16 04:27:48 +01:00
class_marker_pcb.cpp Better strings for the translators (converted concatenations to formats) 2013-04-09 19:49:01 +02:00
class_marker_pcb.h Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
class_mire.cpp All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_mire.h All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_module.cpp Pcbnew: remove broken patch for" Bug #1255059". 2013-12-14 20:03:38 +01:00
class_module.h All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_netclass.cpp Added iterators for NETINFO_LIST (as net codes for existing net codes may be not consecutive). 2014-01-16 16:47:31 +01:00
class_netclass.h merge 1 with tip 2012-06-03 22:06:51 +02:00
class_netinfo.h Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
class_netinfo_item.cpp NETINFO_ITEMs are not stored in a vector anymore, instead they are held in a unordered_map. Now, the net codes may be not consecutive. There is another way for assigning net codes (using a static int that holds a possible empty net code and a function that makes sure it is not used [getFreeNetCode()]). 2014-01-16 14:20:51 +01:00
class_netinfolist.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
class_pad.cpp Removed D_PAD::SetNetname() function and D_PAD::m_Netname, D_PAD::m_ShortNetname fields. 2014-01-14 10:41:52 +01:00
class_pad.h Removed D_PAD::SetNetname() function and D_PAD::m_Netname, D_PAD::m_ShortNetname fields. 2014-01-14 10:41:52 +01:00
class_pad_draw_functions.cpp Removed D_PAD::SetNetname() function and D_PAD::m_Netname, D_PAD::m_ShortNetname fields. 2014-01-14 10:41:52 +01:00
class_pcb_layer_box_selector.cpp pcbnew: fix wxWidgets 2.8 compatibility issue (temporary fix, still have a minor cosmetic issue), and add missing file. 2013-09-03 21:37:52 +02:00
class_pcb_layer_box_selector.h minor changes and refinement in class pcb layer box 2013-09-02 11:06:17 +02:00
class_pcb_layer_widget.cpp Hide m_galCanvas and m_galCanvasActive behind accessors. Fix DLIST concatonation API corner case. 2013-12-26 16:36:43 -06:00
class_pcb_layer_widget.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
class_pcb_text.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
class_pcb_text.h Fixed drawing of rotated texts that are not horizontally center aligned. 2013-12-16 10:36:33 +01:00
class_text_mod.cpp All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_text_mod.h All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_track.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
class_track.h All: GetBoundingBox returns now a const EDA_RECT. 2013-11-24 18:48:14 +01:00
class_zone.cpp BOARD_CONNECTED_ITEMs do not store net code anymore (m_NetCode field), instead net info is stored using a pointer to NETINFO_ITEM. 2014-01-15 18:03:06 +01:00
class_zone.h Removed: 2014-01-14 11:41:06 +01:00
class_zone_settings.cpp Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
class_zone_settings.h Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
classpcb.cpp REMOVE: USE_PCBNEW_NANOMETERS by making it the only way to go in pcbnew, effectively removing the deci-mils build. 2013-08-06 18:21:40 -05:00
clean.cpp Fix minor bugs in cleanup dialog options and plot solder mask function (thanks to Lorenzo to locate these bugs) 2013-09-18 21:21:11 +02:00
collectors.cpp formatting and fix selection clarification bug in pcbnew, could not move reference text when hidden under another footprint 2013-08-05 15:47:34 -05:00
collectors.h Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
connect.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
connect.h Eeschema: fix a bug which crashes Eeschema (when a label is being created, and its type is changed by popup menu, for instance to a text, before it was put on schematic) 2013-01-25 18:29:54 +01:00
controle.cpp formatting and fix selection clarification bug in pcbnew, could not move reference text when hidden under another footprint 2013-08-05 15:47:34 -05:00
cross-probing.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
deltrack.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
dimension.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
drag.h - New typedef LAYER_MSK to encapsulate a layer bitmap 2013-03-30 18:24:04 +01:00
dragsegm.cpp Eeschema: fix a *very subtle* bug noticeable only in complex hierachies, for multiple parts per package: 2013-07-05 19:48:01 +02:00
drc.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
drc_clearance_test_functions.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
drc_marker_functions.cpp Angle and distances cleanup (preparing for angles in doubles) 2013-05-01 19:32:36 +02:00
drc_stuff.h Eeschema: fix compatibility with old schematic files, which can contain markers. 2013-09-11 17:30:21 +02:00
eagle_plugin.cpp BOARD_CONNECTED_ITEMs do not store net code anymore (m_NetCode field), instead net info is stored using a pointer to NETINFO_ITEM. 2014-01-15 18:03:06 +01:00
eagle_plugin.h *) Implement "Copy On Write" (COW) support in GITHUB_PLUGIN. See class header 2013-11-27 00:04:04 -06:00
edgemod.cpp Eeschema: fix compatibility with old schematic files, which can contain markers. 2013-09-11 17:30:21 +02:00
edit.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
edit_pcb_text.cpp Pcbnew: Code cleaning and some minor fixes. 2013-11-20 18:26:47 +01:00
edit_track_width.cpp Move HitTestForCorner and HitTestForEdge code from class_zone to polygon/PolyLine.cpp, to avoid redundant code. 2013-12-29 11:15:06 +01:00
editedge.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
editmod.cpp Changed the way of refreshing canvases (both standard & GAL). 2013-09-20 17:29:32 +02:00
editrack-part2.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
editrack.cpp Merged upstream. 2013-09-20 17:54:35 +02:00
edtxtmod.cpp Changed the way of refreshing canvases (both standard & GAL). 2013-09-20 17:29:32 +02:00
event_handlers_tracks_vias_sizes.cpp Changed the way of refreshing canvases (both standard & GAL). 2013-09-20 17:29:32 +02:00
files.cpp remove USE_FP_LIB_TABLE code, make it the norm. Add lazy loading support to FOOTPRINT_INFO. 2013-12-12 10:01:03 -06:00
footprint_wizard.cpp Changed the way of refreshing canvases (both standard & GAL). 2013-09-20 17:29:32 +02:00
footprint_wizard_frame.cpp Make KiCad compile with minimal warnings against SVN HEAD of wxWidgets as of today. 2014-01-07 19:34:04 -06:00
footprint_wizard_frame.h Pcbnew: footprint wizard dialogs: minor fixes, and fixes a not working parmeters dialog under Windows, due to an incorrect Printf format. 2013-08-05 15:43:15 +02:00
globaleditpad.cpp Convert footprint definitions from wxString to FPID. 2013-09-08 14:31:21 -04:00
gpcb_plugin.cpp Make old behavior the default in EnumerateFootprint() changes. 2013-12-13 18:14:30 -05:00
gpcb_plugin.h Pcbnew: Geda plugin fixes. 2013-12-12 12:42:38 -05:00
help_common_strings.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
highlight.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
hotkeys.cpp painter: better size of pad nums and pad netnames in opengl mode 2013-11-04 18:18:19 +01:00
hotkeys.h Merged upstream. 2013-09-20 17:54:35 +02:00
hotkeys_board_editor.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
hotkeys_module_editor.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
initpcb.cpp Fixed high contrast mode in OpenGL. Split display settings loading into more appropriate places. 2013-07-25 18:04:15 +02:00
invoke_pcb_dialog.h *) Add PLUGIN::FootprintLibOptions( PROPERTIES* ), and extend DIALOG_FP_PLUGIN_OPTIONS to use it. 2013-11-11 18:17:27 -06:00
io_mgr.cpp 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
io_mgr.h 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
ioascii.cpp.notused more footprint support for LEGACY_PLUGIN 2012-04-16 20:35:43 -05:00
item_io.cpp.notused more footprint support for LEGACY_PLUGIN 2012-04-16 20:35:43 -05:00
kicad_netlist_reader.cpp Fix but reading empty footprints in netlist. (fixes lp:1226283) 2013-09-16 20:52:08 -04:00
kicad_plugin.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
kicad_plugin.h Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
layer_widget.cpp Make KiCad compile with minimal warnings against SVN HEAD of wxWidgets as of today. 2014-01-07 19:34:04 -06:00
layer_widget.h Removed arbitrary MAX_LAYER_ROWS limit (only used in one assertion, anyway) 2013-04-06 18:46:03 +02:00
legacy_netlist_reader.cpp Fix but reading empty footprints in netlist. (fixes lp:1226283) 2013-09-16 20:52:08 -04:00
legacy_plugin.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
legacy_plugin.h Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
librairi.cpp 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
loadcmp.cpp 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
magnetic_tracks_functions.cpp *) retain grid origin in the BOARD and save it in legacy and kicad board files. 2013-08-03 00:15:23 -05:00
menubar_modedit.cpp All: change some texts and messages hard to translate, or not translatable (and some incorrect messages). 2013-04-05 09:38:00 +02:00
menubar_pcbframe.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
minimun_spanning_tree.cpp Removed NETINFO_ITEM::SetNet() and NETINFO_ITEM::SetNetname() methods. 2014-01-09 15:51:47 +01:00
minimun_spanning_tree.h 1) Add "rules" to base of tree for copying into BZR_HOME/rules. 2013-05-25 23:36:44 -05:00
modedit.cpp remove USE_FP_LIB_TABLE code, make it the norm. Add lazy loading support to FOOTPRINT_INFO. 2013-12-12 10:01:03 -06:00
modedit_onclick.cpp Merged upstream. 2013-09-20 17:54:35 +02:00
modedit_undo_redo.cpp Pcbnew: fix issue in modedit, undo command: moved fields were not drawn afetr undo (due to incorrect flags state) 2013-12-03 09:50:58 +01:00
modeditoptions.cpp Pcbnew: Update incorrect or incomplete copyrights in many files. 2012-06-08 11:56:42 +02:00
module_editor_frame.h remove USE_FP_LIB_TABLE code, make it the norm. Add lazy loading support to FOOTPRINT_INFO. 2013-12-12 10:01:03 -06:00
moduleframe.cpp remove USE_FP_LIB_TABLE code, make it the norm. Add lazy loading support to FOOTPRINT_INFO. 2013-12-12 10:01:03 -06:00
modules.cpp Changed the way of refreshing canvases (both standard & GAL). 2013-09-20 17:29:32 +02:00
modview_frame.cpp comment out broken tool_modview.cpp's useless footprint select button. somebody needs to fix this. 2014-01-03 17:19:54 -06:00
modview_frame.h Pcbnew: footprint viewer wxAUI improvements. 2013-12-06 19:33:16 -05:00
move-drag_pads.cpp *) retain grid origin in the BOARD and save it in legacy and kicad board files. 2013-08-03 00:15:23 -05:00
move_or_drag_track.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
muonde.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
muwave_command.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
netlist.cpp remove USE_FP_LIB_TABLE code, make it the norm. Add lazy loading support to FOOTPRINT_INFO. 2013-12-12 10:01:03 -06:00
netlist_reader.cpp Fix but reading empty footprints in netlist. (fixes lp:1226283) 2013-09-16 20:52:08 -04:00
netlist_reader.h CvPcb footprint library table implementation. 2013-09-14 16:33:22 -04:00
onleftclick.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
onrightclick.cpp Pcbnew: Autoplace functions: renamed spread footprint functions. Rewritten. 2013-11-27 14:20:42 +01:00
pad_edition_functions.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
pcb_netlist.cpp CvPcb footprint library table implementation. 2013-09-14 16:33:22 -04:00
pcb_netlist.h Changed the way of looking up NETINFO_ITEM using net names (using boost::unordered_map). Added a hash function (wxString) for that. Introduced NETINFO_ITEM::GetNetItem( wxString ). BOARD::FindNet() uses the map. 2014-01-10 18:04:07 +01:00
pcb_painter.cpp Merge zone outline drawing fix request. 2013-12-22 11:30:46 -05:00
pcb_painter.h Added some comments and missing parameter names for pcb_painter.h. 2013-11-01 10:06:50 +01:00
pcb_parser.cpp Added NETINFO_MAPPING, to ease saving nets with consecutive net codes (without modifying the net codes during the run time). 2014-01-28 10:19:51 +01:00
pcb_parser.h BOARD_CONNECTED_ITEMs do not store net code anymore (m_NetCode field), instead net info is stored using a pointer to NETINFO_ITEM. 2014-01-15 18:03:06 +01:00
pcb_plot_params.cpp Show the "Description" field from fp-lib-table in pcbnew's module editor 'set current library' dialog. 2013-11-18 10:04:23 -06:00
pcb_plot_params.h More work on CPOLYGONS_LIST class. 2013-05-09 21:08:12 +02:00
pcbframe.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
pcbnew.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
pcbnew.h Factored out text anchor drawing 2013-04-09 18:00:46 +02:00
pcbnew.icns [MacOSX] Updated Icons - Document ones still missing :( 2012-09-27 19:20:44 +02:00
pcbnew.rc Remove old xpm icons files 2012-04-07 13:09:57 +02:00
pcbnew_config.cpp Make KiCad compile with minimal warnings against SVN HEAD of wxWidgets as of today. 2014-01-07 19:34:04 -06:00
pcbnew_config.h switch to <> for includes from "" per conversation with Jean-Pierre and Wayne, adjust search paths 2012-01-22 22:33:36 -06:00
pcbnew_doc.icns Update OS X icns icons 2010-05-13 21:03:12 +02:00
pcbnew_id.h Adds basic IDF3 export (board and cutouts / holes only) 2014-01-02 10:26:03 +01:00
pcbplot.cpp Decouple PLOT_CONTROLLER from UI dependencies. 2013-05-10 15:22:29 -04:00
pcbplot.h Decouple PLOT_CONTROLLER from UI dependencies. 2013-05-10 15:22:29 -04:00
plot_board_layers.cpp Plot functions: some enhancements in mirror mode (Pcbnew specific): boards are mirrored horizontally, and the page layout is no more mirrored, and therefore is always readable. 2013-12-06 19:31:15 +01:00
plot_brditems_plotter.cpp eeschema, Pcbnew: fix Bug #1255822 (incorrect position of multiline texts when plotting them) 2013-11-29 09:13:43 +01:00
plotcontroller.h Decouple PLOT_CONTROLLER from UI dependencies. 2013-05-10 15:22:29 -04:00
plugin.cpp 8 bit string relief via class UTF8 2014-01-01 20:17:07 -06:00
print_board_functions.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
printout_controler.cpp Pcbnew: Code cleaning and some minor fixes. 2013-11-20 18:26:47 +01:00
printout_controler.h - New typedef LAYER_MSK to encapsulate a layer bitmap 2013-03-30 18:24:04 +01:00
protos.h Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
ratsnest.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
ratsnest_data.cpp Made two functions immune to empty containers. 2014-01-10 17:19:33 +01:00
ratsnest_data.h Fixed broken search filters. 2013-12-20 11:54:48 +01:00
ratsnest_viewitem.cpp Fixed broken search filters. 2013-12-20 11:54:48 +01:00
ratsnest_viewitem.h Added ratsnest for GAL 2013-11-25 16:50:03 +01:00
sel_layer.cpp Eeschema: Rework on netlist generator: code clenenig and enhancement. 2013-09-25 21:09:57 +02:00
specctra.cpp Fixed LAYER_NUM usage in the specctra code. 2013-05-05 12:11:30 +02:00
specctra.h 3D board display: better rendering of the board: the board polygon outlines (generated by the specctra function) is now used to create the 3D body of the board. 2013-10-04 10:42:09 +02:00
specctra.keywords ++all: 2011-01-19 14:46:07 -06:00
specctra_export.cpp Removed: 2014-01-14 11:41:06 +01:00
specctra_import.cpp REMOVE: USE_PCBNEW_NANOMETERS by making it the only way to go in pcbnew, effectively removing the deci-mils build. 2013-08-06 18:21:40 -05:00
specctra_test.cpp Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
swap_layers.cpp Minor code cleaning: Remove unused file, remove obsolete or useless defines 2013-11-15 10:28:31 +01:00
target_edit.cpp Pcbnew: Code cleaning and some minor fixes. 2013-11-20 18:26:47 +01:00
tool_modedit.cpp Reverted back the ( i ) parameters for python, applied the PyGILState_Ensure from Dick into his PyLOCK class 2013-03-12 01:37:45 +01:00
tool_modview.cpp comment out broken tool_modview.cpp's useless footprint select button. somebody needs to fix this. 2014-01-03 17:19:54 -06:00
tool_onrightclick.cpp dialog information hiding, initial Fit() 2013-07-09 00:48:26 -05:00
tool_pcb.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
toolbars_update_user_interface.cpp Restored previous function names. 2013-09-20 16:32:11 +02:00
tr_modif.cpp Move HitTestForCorner and HitTestForEdge code from class_zone to polygon/PolyLine.cpp, to avoid redundant code. 2013-12-29 11:15:06 +01:00
tracepcb.cpp Code cleanup: Pcbnew: move files relative to exort functions to the new folder exporters 2014-01-08 15:18:51 +01:00
xchgmod.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
zone_filling_algorithm.cpp Pcbnew: fix bug 1179877, due a bad default copy constructor, after my changes about CPOLYGONS_LIST class. 2013-05-14 20:47:01 +02:00
zones.h Pcbnew: Add keepout areas (Copper zones without tracks or/and vias). 2012-07-13 20:55:29 +02:00
zones_by_polygon.cpp Added NETINFO_LIST::UNCONNECTED constant. 2014-01-15 09:34:16 +01:00
zones_by_polygon_fill_functions.cpp Removed: 2014-01-14 11:41:06 +01:00
zones_convert_brd_items_to_polygons_with_Boost.cpp Pcbnew: fix bug 1179877, due a bad default copy constructor, after my changes about CPOLYGONS_LIST class. 2013-05-14 20:47:01 +02:00
zones_convert_to_polygons_aux_functions.cpp More work on CPOLYGONS_LIST class. 2013-05-09 21:08:12 +02:00
zones_functions_for_undo_redo.cpp Removed: 2014-01-14 11:41:06 +01:00
zones_functions_for_undo_redo.h Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
zones_non_copper_type_functions.cpp Implemented the LAYER_NUM typedef (LAYER was already taken as a class name...) to represent a layer number. 2013-03-31 15:27:46 +02:00
zones_polygons_insulated_copper_islands.cpp More work on CPOLYGONS_LIST class. 2013-05-09 21:08:12 +02:00
zones_polygons_test_connections.cpp More work on CPOLYGONS_LIST class. 2013-05-09 21:08:12 +02:00
zones_test_and_combine_areas.cpp Pcbnew: Block selection enhancement, from Bug #593997 (whishlist) 2013-09-21 20:09:41 +02:00