1. 15 Jan, 2012 2 commits
  2. 09 Jan, 2012 2 commits
  3. 05 Jan, 2012 1 commit
  4. 19 Dec, 2011 1 commit
    • jean-pierre charras's avatar
      Pcbnew: Enhanced algorithm to calculate board connections: · d41b81fc
      jean-pierre charras authored
      * A track is seen connected to a pad if the track end is inside the pad shape.
      * Pads inside pads are now seen connected, if the center of the pad is *inside* the other pad.
      * this is made to be sure a large copper area is shared by the 2 pads,  and to keep algorithm fast.
      d41b81fc
  5. 14 Dec, 2011 1 commit
  6. 10 Dec, 2011 1 commit
  7. 06 Dec, 2011 1 commit
  8. 05 Dec, 2011 1 commit
    • 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
  9. 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
  10. 28 Nov, 2011 1 commit
  11. 13 Sep, 2011 1 commit
  12. 07 Sep, 2011 1 commit
    • Andrey Fedorushkov's avatar
      pcbnew: · 9f98995a
      Andrey Fedorushkov authored
      * Add hotkey "P" - place item
      * Add record and play macros for sequence hotkey.
      Macros set to numeric key 0..9.
      <Ctrl>+<numkey> - start record macros
      <hotkey> <mouse move> ... <hotkey>|<mouse place>
      <Ctrl>+<numkey> - end record macros
      <numkey> - play macros
      * Add menu save/read macros to/from xml-file
      * Add configure rotate angle for rotate module: 45 or 90 deg.
      * fix segfault when move/drag segment if disconnected to pad
      9f98995a
  13. 19 Aug, 2011 1 commit
  14. 12 May, 2011 1 commit
  15. 06 Apr, 2011 1 commit
  16. 05 Apr, 2011 1 commit
  17. 04 Apr, 2011 1 commit
  18. 16 Mar, 2011 1 commit
  19. 05 Feb, 2011 1 commit
  20. 02 Feb, 2011 1 commit
    • Dick Hollenbeck's avatar
      ++common: · 0093f4f6
      Dick Hollenbeck authored
        * macros.h now has TO_UTF8() and FROM_UTF8() which are working converters
          to and from UTF-8 encoding for any wxWidgets build mode.  We can switch to
          them at any time.  I am using them now for specctra conversions and
          elsewhere where I wanted gauranteed UTF8 encoding.
        * added OUTPUTFORMATTER::Quoted( const wxString& ) to simplify converting
          to UTF8 encoded s-expression atoms.  The recommended technique is now simply:
              out->Quoted( wxString ).c_str()
      0093f4f6
  21. 30 Jan, 2011 2 commits
    • Dick Hollenbeck's avatar
      fix documentation bugs · 654b8909
      Dick Hollenbeck authored
      654b8909
    • Dick Hollenbeck's avatar
      ++all: · 604edcac
      Dick Hollenbeck authored
        * DSNLEXER::NextTok() now uses two separate modes to parse quoted strings.
          This gives us the freedom to control our own destiny separate from the
          constraints put on us by the Specctra DSN spec.
        * Added Documentation/s-expressions.txt to explain all this.
        * Enhanced our quoting protocol by moving away from doubling up double quotes
          to a C line escape mechanism.
        * Now support multi-line strings, which when properly escaped, can still be
          read in as a token originating on a single line.
      604edcac
  22. 23 Jan, 2011 1 commit
  23. 19 Jan, 2011 1 commit
    • Dick Hollenbeck's avatar
      ++all: · ed8c021f
      Dick Hollenbeck authored
        * TokenList2DsnLexer.cmake now supports comments, which start with a leading
          # character, and may be either on their own line or on a line after a token.
        * DSNLEXER::PopReader() now pops even the last LINE_READER* and returns it.
      ++pcbnew:
        * SPECCTRA_DB now inherits from new class SPECCTRA_LEXER, which led to a great
          deal of simplification and code factoring.
        * Moved specctra keywords into specctra.keywords.
      ed8c021f
  24. 17 Jan, 2011 1 commit
    • Dick Hollenbeck's avatar
      ++all: · 2f211c6b
      Dick Hollenbeck authored
        * TokenList2DsnLexer.cmake now wraps each token enum in its own namespace. It
          also no longer setup of the "using" directive in the header file, which was
          bad behavior.  C++ enum values will have name collisions unless the enums
          themselves are different namespaces.
      ++new:
        * Sweet library is now a DSO/DLL.
        * Brought in SWIG to do a wrap of the Sweet DSO/DLL for unit testing
          and scripting.  The SWIG DSO/DLLs are built separate from the Sweet DSO/DLL
          and are also optional.
      2f211c6b
  25. 01 Jan, 2011 1 commit
    • Dick Hollenbeck's avatar
      ++new: · 84ed5f50
      Dick Hollenbeck authored
        * Added the basic structure to the Sweet parser in sch_part.cpp.
        * Got inheritence working off of the 'extends' keyword and PART::inherit()
        * Tossed the units support out of sweet.keywords, since we agreed to go dimensionless.
      ++richio:
        * Added the problemInputLine support to PARSE_ERROR, so UI can show the
          offending line of bytes.  Yes bytes, not even guaranteed to be characters.
      84ed5f50
  26. 31 Dec, 2010 1 commit
  27. 30 Dec, 2010 1 commit
  28. 29 Dec, 2010 2 commits
  29. 28 Dec, 2010 1 commit
  30. 21 Dec, 2010 1 commit
  31. 20 Dec, 2010 1 commit
  32. 15 Dec, 2010 1 commit
    • jean-pierre charras's avatar
      Gerbview: · 8faf1e72
      jean-pierre charras authored
          Added: in file dialog, multiple file selection.
          Added: Draw mode selector (in left toolbar):
              Raw mode:
                  a Gerber image is drawn on screen without buffering.
                  Artifacts happen if there are negative items drawn, if more than one  Gerber file is shown.
              Stacked mode:
                  each Geber image is drawn in a buffer and after drawn on screen
                  No artifact with negative items.
                  Each Gerber image covers previous images.
              OR mode (transparency mode):
                  each Geber image is drawn in a buffer and after drawn on screen
                  No artifact with negative items.
                  Each Gerber image is "ORed" with previous images, like in Pcbnew.
          Try to optimize Draw function in buffered modes.
              (Useful for PC that have problems with "blit" graphic function)
          Fix minor issues.
      8faf1e72
  33. 14 Dec, 2010 1 commit
  34. 13 Dec, 2010 3 commits