1. 07 Dec, 2011 7 commits
  2. 06 Dec, 2011 4 commits
  3. 05 Dec, 2011 4 commits
    • Dick Hollenbeck's avatar
      Fix problem with BOARD bounding box in saved *.brd files, · fafd74ca
      Dick Hollenbeck authored
      and TEXTE_MODULE size in kicad_plugin.
      Link in io_mgr and kicad_plugin but do not call them yet
      fafd74ca
    • Dick Hollenbeck's avatar
    • Dick Hollenbeck's avatar
      ++PCBNew · 40ee7265
      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(), since BOARD::m_PcbFrame gone.
        * 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 of 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 ways of
          destroying the derived classes 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()
      40ee7265
    • 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
  4. 04 Dec, 2011 1 commit
    • jean-pierre charras's avatar
      Pcbnew: · f311bb4d
      jean-pierre charras authored
          Enhanced algorithms to calculate board connections:
          Previously, a track was seen connected to a pad only if the track end is
          exactly on the pad position.
          Now a track is seen connected to a pad if the track end is inside the pad shape.
          Algorithm to calculate pads connections to track is still very fast.
          However some other functions (drag pads, track len calculation ...)
          still need the track end exactly on the pad position.
      Dead code removal.
      f311bb4d
  5. 03 Dec, 2011 1 commit
  6. 02 Dec, 2011 6 commits
  7. 01 Dec, 2011 5 commits
    • Dick Hollenbeck's avatar
    • Dick Hollenbeck's avatar
      KICAD_PLUG work · 1b5edd6d
      Dick Hollenbeck authored
      1b5edd6d
    • Wayne Stambaugh's avatar
      Improve Eeschema find code and add initial replace plumbing. · d9e0ab02
      Wayne Stambaugh authored
      * Replace Eeschema find code with a collector based implementation.
      * Fixed a search bug when all subsequent searches of an item would ignore
        the remaining valid child items when an item had more than one child
        item that matched the search criteria.
      * Add SCH_FIND_COLLECTOR class to find all items that meet the specified
        search criteria.
      * Add SCH_FIND_COLLECT0R_DATA to keep track of information for all matching
        items.
      * Use collector to iterate over the list of items that match the search
        criteria rather than trying to start at the last matched item.
      * Remove unused searching methods from sheet path and sheet path list
        objects.
      * Add replace and replace all functionality to Eeschema find dialog.
      * Push matching methods down to EDA_ITEM class so they can be used by
        other derived objects.
      * Add method to EDA_ITEM to test if item supports replacing.
      * Add flag to find/replace data to support replace feature.
      * Disable wild card matching check box when dialog is in replace mode as
        wild card replacement is not supported at this time.
      * The usual Doxygen comment and coding policy fixes.
      d9e0ab02
    • Dick Hollenbeck's avatar
      6c2fcf7e
    • Dick Hollenbeck's avatar
      3bb91baf
  8. 30 Nov, 2011 5 commits
  9. 29 Nov, 2011 2 commits
  10. 28 Nov, 2011 1 commit
  11. 27 Nov, 2011 1 commit
  12. 26 Nov, 2011 1 commit
  13. 25 Nov, 2011 2 commits