- 15 Jan, 2012 2 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
- 09 Jan, 2012 2 commits
-
-
Dick Hollenbeck authored
Add shim class SCH_BASE_FRAME which introduces the data model SCH_SCREEN to the frame class hierarchy.
-
Dick Hollenbeck authored
-
- 05 Jan, 2012 1 commit
-
-
Dick Hollenbeck authored
-
- 19 Dec, 2011 1 commit
-
-
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.
-
- 14 Dec, 2011 1 commit
-
-
Dick Hollenbeck authored
-
- 10 Dec, 2011 1 commit
-
-
Dick Hollenbeck authored
-
- 06 Dec, 2011 1 commit
-
-
jean-pierre charras authored
-
- 05 Dec, 2011 1 commit
-
-
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()
-
- 04 Dec, 2011 1 commit
-
-
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.
-
- 28 Nov, 2011 1 commit
-
-
Dick Hollenbeck authored
-
- 13 Sep, 2011 1 commit
-
-
jean-pierre charras authored
Fix compatibility issues with old xpm icons. Add or update .xpm and .ico files for shortcuts and taskbars Remove artwork folder.
-
- 07 Sep, 2011 1 commit
-
-
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
-
- 19 Aug, 2011 1 commit
-
-
jean-pierre charras authored
Minor fixes and enhancements.
-
- 12 May, 2011 1 commit
-
-
Jerry Jacobs authored
-
- 06 Apr, 2011 1 commit
-
-
Jerry Jacobs authored
-
- 05 Apr, 2011 1 commit
-
-
jean-pierre charras authored
fix an issue created by commit 2954. Gerbview: display now an indicator of layers in use. minor code cleanup.
-
- 04 Apr, 2011 1 commit
-
-
Jerry Jacobs authored
-
- 16 Mar, 2011 1 commit
-
-
jean-pierre charras authored
Gerbview: Added: read Excellon files created by Pcbnew. The full Excellon command set is not supported, but drill files created by Pcbnew are supported.
-
- 05 Feb, 2011 1 commit
-
-
jean-pierre charras authored
Change in CvPcb: CvPcb does not use now .dcm files, only .mod files to read modules keywords and doc
-
- 02 Feb, 2011 1 commit
-
-
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()
-
- 30 Jan, 2011 2 commits
-
-
Dick Hollenbeck authored
-
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.
-
- 23 Jan, 2011 1 commit
-
-
jean-pierre charras authored
-
- 19 Jan, 2011 1 commit
-
-
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.
-
- 17 Jan, 2011 1 commit
-
-
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.
-
- 01 Jan, 2011 1 commit
-
-
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.
-
- 31 Dec, 2010 1 commit
-
-
Wayne Stambaugh authored
-
- 30 Dec, 2010 1 commit
-
-
Dick Hollenbeck authored
-
- 29 Dec, 2010 2 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
Completed most of /new class LIB_TABLE. Completed all of /new class LPID.
-
- 28 Dec, 2010 1 commit
-
-
Dick Hollenbeck authored
-
- 21 Dec, 2010 1 commit
-
-
Wayne Stambaugh authored
-
- 20 Dec, 2010 1 commit
-
-
jean-pierre charras authored
Eeschema: fix issues in drag command (mainly hotkey command and forgotten wire ends connected to components to drag). Rename EDA_Rect::Inside to EDA_Rect::Contains ( EDA_Rect::Inside( const EDA_Rect& aRect ) was very ambiguous ) Fix some Doxygen warnings and erroneous comments; Add comments.
-
- 15 Dec, 2010 1 commit
-
-
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.
-
- 14 Dec, 2010 1 commit
-
-
Wayne Stambaugh authored
-
- 13 Dec, 2010 3 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
Wayne Stambaugh authored
-