• Dick Hollenbeck's avatar
    ++PCBNew · b26580d5
    Dick Hollenbeck authored
      * Removed Pcb_Frame argument from BOARD() constructor, since it precludes
        having a BOARD being edited by more than one editor, it was a bad design.
        And this meant removing m_PcbFrame from BOARD.
      * removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
      * Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
      * added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
      * a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
        such as dialog_mask_clearance, dialog_drc, etc.
      * Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
        with build_version.h's #define BOARD_FILE_VERSION, although there may be a
        better place for this constant.
      * Made the public functions in PARAM_CFG_ARRAY be type const.
        void SaveParam(..) const and void ReadParam(..) const
      * PARAM_CFG_BASE now has virtual destructor since we have various way of
        destroying the derived class and boost::ptr_vector must be told about this.
      * Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
        an automatic PARAM_CFG_ARRAY which is on the stack.\
      * PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
        since it has to access the current BOARD and the BOARD can change.
        Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
      * Made the m_BoundingBox member private, this was a brutally hard task,
        and indicative of the lack of commitment to accessors and object oriented
        design on the part of KiCad developers.  We must do better.
        Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
      * Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
    b26580d5
Name
Last commit
Last update
..
dialogs Loading commit data...
gerber_test_files Loading commit data...
CMakeLists.txt Loading commit data...
Info.plist Loading commit data...
block.cpp Loading commit data...
class_DCodeSelectionbox.cpp Loading commit data...
class_DCodeSelectionbox.h Loading commit data...
class_GERBER.cpp Loading commit data...
class_GERBER.h Loading commit data...
class_am_param.cpp Loading commit data...
class_am_param.h Loading commit data...
class_aperture_macro.cpp Loading commit data...
class_aperture_macro.h Loading commit data...
class_excellon.h Loading commit data...
class_gerber_draw_item.cpp Loading commit data...
class_gerber_draw_item.h Loading commit data...
class_gerbview_layer_widget.cpp Loading commit data...
class_gerbview_layer_widget.h Loading commit data...
controle.cpp Loading commit data...
dcode.cpp Loading commit data...
dcode.h Loading commit data...
draw_gerber_screen.cpp Loading commit data...
events_called_functions.cpp Loading commit data...
excellon_read_drill_file.cpp Loading commit data...
export_to_pcbnew.cpp Loading commit data...
files.cpp Loading commit data...
gerbview.cpp Loading commit data...
gerbview.h Loading commit data...
gerbview.icns Loading commit data...
gerbview.rc Loading commit data...
gerbview_config.cpp Loading commit data...
gerbview_doc.icns Loading commit data...
gerbview_frame.cpp Loading commit data...
gerbview_frame.h Loading commit data...
gerbview_id.h Loading commit data...
hotkeys.cpp Loading commit data...
hotkeys.h Loading commit data...
initpcb.cpp Loading commit data...
locate.cpp Loading commit data...
menubar.cpp Loading commit data...
onleftclick.cpp Loading commit data...
onrightclick.cpp Loading commit data...
options.cpp Loading commit data...
pcbplot.cpp Loading commit data...
pcbplot.h Loading commit data...
readgerb.cpp Loading commit data...
rs274_read_XY_and_IJ_coordinates.cpp Loading commit data...
rs274d.cpp Loading commit data...
rs274x.cpp Loading commit data...
select_layers_to_pcb.cpp Loading commit data...
select_layers_to_pcb.h Loading commit data...
toolbars_gerber.cpp Loading commit data...