1. 30 Dec, 2011 1 commit
  2. 29 Dec, 2011 1 commit
  3. 22 Dec, 2011 1 commit
  4. 21 Dec, 2011 2 commits
    • Wayne Stambaugh's avatar
      Eeschema find and replace improvements. · 85d2f2f1
      Wayne Stambaugh authored
      * Add check box and flag to ignore replacing the component reference
        designator field.
      * Fix a resizing bug when switching between the find and replace modes of
        the find/replace dialog.
      * Fix replace component reference designator field bug.
      * Force rebuild of search list when schematic is modified and the replace
        dialog is closed.
      * Prevent finding the next item when the find/replace dialog is closed.
      * Respect warp mouse pointer setting when closing find/replace dialog.
      * Fix duplicate mnemonic control accelerator keys in find/replace dialog.
      85d2f2f1
    • Wayne Stambaugh's avatar
      More encapsulation work and other minor improvements. · 6c28cdc6
      Wayne Stambaugh authored
      * EDA_RECT and EDA_ITEM completely encapsulated.
      * Removed unnecessary EDA_ITEM member m_Selected and replaced functionality
        with SELECTED flag bit.
      6c28cdc6
  5. 18 Dec, 2011 1 commit
  6. 17 Dec, 2011 1 commit
  7. 16 Dec, 2011 2 commits
    • Wayne Stambaugh's avatar
      Encapsulate EDA_APP class. · 0e27f45f
      Wayne Stambaugh authored
      0e27f45f
    • Wayne Stambaugh's avatar
      More encapsulation work and other minor improvements. · fac288cf
      Wayne Stambaugh authored
      * EDA_DRAW_FRAME completely encapsulated except for DrawFrame member.
      * Moved members specific to Pcbnew from EDA_DRAW_FRAME to PCB_BASE_FRAME
        or PCB_EDIT_FRAME as appropriate.
      * Replace EDA_TOOLBAR with wxAuiToolBar as EDA_TOOL bar provided no
        additional functionality and made code less readable.
      * Remove EDA_TOOLBAR class definition from wxstruct.h and delete file
        wineda_toolbar.cpp.
      * Rename tool bar members to something more descriptive since the
        horizontal and vertical references wont mean anything once the
        tool bars are movable.
      * Lots of dead code removal.
      fac288cf
  8. 15 Dec, 2011 1 commit
  9. 14 Dec, 2011 3 commits
  10. 13 Dec, 2011 1 commit
    • Wayne Stambaugh's avatar
      Add Eeschema replace code. · a63a2006
      Wayne Stambaugh authored
      * Enable replace toolbar button and menu entry.
      * Improve find replace logging granularity.
      * Fix find and replace dialog control hiding and disabling.
      * Minor improvements to the SCH_FIND_REPLACE_DATA object.
      * Move find collector list iterator into the collector object.
      * Add visibility override flag to EDA_ITEM to temporarily show items that
        are hidden during find and replace.
      a63a2006
  11. 12 Dec, 2011 2 commits
  12. 10 Dec, 2011 1 commit
  13. 09 Dec, 2011 1 commit
  14. 08 Dec, 2011 3 commits
  15. 07 Dec, 2011 1 commit
  16. 06 Dec, 2011 3 commits
  17. 05 Dec, 2011 2 commits
    • Dick Hollenbeck's avatar
    • 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
  18. 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
  19. 02 Dec, 2011 1 commit
  20. 01 Dec, 2011 2 commits
    • 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
  21. 30 Nov, 2011 3 commits
  22. 29 Nov, 2011 2 commits
  23. 24 Nov, 2011 2 commits
  24. 17 Nov, 2011 2 commits