1. 09 Nov, 2013 1 commit
  2. 24 May, 2013 1 commit
  3. 28 Apr, 2013 1 commit
    • Lorenzo Marcantonio's avatar
      Removed the SAFE_DELETE macro. · 3b1ddd95
      Lorenzo Marcantonio authored
      In most case the assignment to null was not necessary since it was easily provable that the (local) variable wouldn't have referenced after that anyway.
      3b1ddd95
  4. 09 Apr, 2013 1 commit
  5. 18 Mar, 2013 1 commit
    • Wayne Stambaugh's avatar
      More encapsulation work. · 7d0ec1a1
      Wayne Stambaugh authored
      * Complete encapsulation of the MODULE class.
      * Complete encapsulation of the EDA_TEXT class.
      * Encapsulate most of the ZONE_CONTAINER class.
      * Add pcbcommon library as a dependency for reSWIGging the scripting
        support.  This should cover most dependency cases.
      7d0ec1a1
  6. 07 Feb, 2013 1 commit
  7. 01 Jan, 2013 1 commit
  8. 29 Oct, 2012 1 commit
  9. 25 Oct, 2012 1 commit
  10. 28 Sep, 2012 1 commit
  11. 06 Mar, 2012 1 commit
  12. 19 Feb, 2012 1 commit
  13. 23 Jan, 2012 1 commit
  14. 29 Dec, 2011 1 commit
  15. 27 Dec, 2011 1 commit
  16. 22 Dec, 2011 1 commit
  17. 16 Dec, 2011 1 commit
    • 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
  18. 11 Nov, 2011 1 commit
    • Wayne Stambaugh's avatar
      Remove message dialogs from COMPONENT_LIBRARY class. · 7a5e6a2d
      Wayne Stambaugh authored
      * Move the component library save file creation and write error dialogs
        into the appropriate frame object.
      * Change the save component library and document definitions take an
        OUTPUTFORMATTER object instead of a file name.
      * Change the component alias save document definition function to take
        an OUTPUTFORMATTER object instead of a file handle.
      7a5e6a2d
  19. 08 Nov, 2011 1 commit
    • Wayne Stambaugh's avatar
      Minor fixes, dead code removal, and coding policy fixes. · cd0b2316
      Wayne Stambaugh authored
      * Use version of DateAndTime that returns a wxString and delete the
        version that takes a char* as it is no longer required.
      * Merge StrNumICmp() and StrLenNumICmp() into StrLenNumCmp() to create a
        single function for comparing strings with integers and remove a lot
        of duplicate code.
      * Remove unused strupper from string.cpp.
      * Use wxArrayString for sorting the EDA_LIST_DIALOG contents.
      cd0b2316
  20. 28 Oct, 2011 1 commit
    • Wayne Stambaugh's avatar
      Fix schematic library pin editing bug. Fixes lp:809506 · a834c47b
      Wayne Stambaugh authored
      * Change edit pin per part flag to only have effect when editing
        component with multiple parts or alternate body styles.
      * Move global edit pin pert part variable into library editor frame
        object.
      * Note that this only fixes the bug when the component does not have
        multiple parts or alternate body styles.
      a834c47b
  21. 30 Sep, 2011 1 commit
    • Wayne Stambaugh's avatar
      Application name capitalization fixes. · 4b853ded
      Wayne Stambaugh authored
      * Correct all user strings and comments for the correct capitalization of
        application names according to JP.  They are KiCad, Pcbnew, CvPcb,
        Eeschema, and GerbView.
      * Add a note the the user interface policy about the correct capitalization.
      4b853ded
  22. 06 Sep, 2011 1 commit
  23. 18 Aug, 2011 1 commit
    • Wayne Stambaugh's avatar
      Add user write permission tests to EESchama and other minor fixes. · c64a6937
      Wayne Stambaugh authored
      * Add general purpose user write permission test function to base
        window class.
      * Check user write permissions before saving project, schematic and
        library files.
      * Remove displaying file dialog every time the project file is saved.
      * Display absolute paths for non-root sheet file in title bar.
      * Remove redundant command table entry from schematic editor.
      * Remove unused variables to fix GCC 4.6 warnings.
      * The usual Doxygen comment and coding style policy fixes.
      c64a6937
  24. 12 Aug, 2011 1 commit
    • Wayne Stambaugh's avatar
      Prevent component library editor from saving read only files (fixes lp:811118) · e7eef8cf
      Wayne Stambaugh authored
      * Disable save library command when user does not have permission to write
        the active library.
      * Append the active library file name displayed in the title bar with read
        only when the user does not have write permission.
      * Test the selected folder permissions when user chooses the save library
        as command.
      * The obligatory coding style policy fixes.
      e7eef8cf
  25. 28 May, 2011 1 commit
  26. 24 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      Improve handling of tool bar command IDs. · cb647737
      Wayne Stambaugh authored
      * Make EDA_DRAW_FRAME current tool ID member variable private.
      * Added global no tool selected ID to replace application specific no
        tool selected IDs.
      * Change SetToolID to prevent setting the tool ID to anything less than
        the new global no tool selected ID and assert on debug builds.
      * Change command and update user interface command event handlers to use
        new global no tool selected ID.
      * Fixed schematic library editor add pin hot key handler.
      cb647737
  27. 21 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      Use wxUpdateUIEvent in CVPcb and other minor changes. · c02d90e9
      Wayne Stambaugh authored
      * CVPcb now uses wxUpdateUIEvent instead of set toolbars.
      * Removed duplicate event handlers in CVPcb that were factored into
        EDA_DRAW_FRAME.
      * Fix definition of GeneralControle() in CVPcb that prevented it from being
        called.
      * Remove rarely used and scary refresh code GeneralControle() method in all
        main frame windows.
      * Factor zoom menu and tool bar command IDs down to EDA_DRAW_FRAME.
      c02d90e9
  28. 11 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      Draw panel object refactoring and other minor code cleaning. · 7b8b51b2
      Wayne Stambaugh authored
      * Rename all member variables and methods that reference the cross hair
        code in draw panel object from cursor to cross hair to eliminate confusion
        between the two concepts.
      * Rename cursor capture call backs in draw panel object to improve code
        readability.
      * Create helper class for turning off the cross hair while drawing.
      * Remove redundant block clear code.
      * Remove redundant mouse capture call back reset code when end capture
        call back is called.
      * Remove unused function definitions in base draw frame object.
      * Lots of minor coding policy and doxygen comment fixes.
      7b8b51b2
  29. 05 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      EESchema improvements and other minor fixes. · 0d8cb9b5
      Wayne Stambaugh authored
      * Remove base screen methods from draw frame object and correct current
        screen methods in derived objects.
      * Move restore old wires function code into schematic screen object.
      * Make add junction method use current screen position instead of store
        position.
      * Move poly line ghosting function into the delete current segment method
        as that was the only place is was being used.
      * Add method to base schematic object of testing if object has a label
        that can be incremented.
      * Simplified the schematic hierarchy traversing code.
      * PCBNew Doxygen warning fixes.
      0d8cb9b5
  30. 03 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      Changes to use cursor position as parameter and snap to grid settings. · 50f063da
      Wayne Stambaugh authored
      * Changed managed cursor callback definition to include the current
        cursor drawing position.
      * Modified all managed cursor callbacks to match new definition.
      * Added snap to grid option to base drawing frame object.
      * Changed add no connect managed cursor callback to use new position
        parameter instead of the stored one.
      * Lots of coding policy fixes.
      50f063da
  31. 30 Jan, 2011 1 commit
    • Wayne Stambaugh's avatar
      Use wxDC for all coordinate manipulations. · d657b430
      Wayne Stambaugh authored
      * Remove all occurrences if #ifdef USE_WX_ZOOM and all associated code within
        the #else/#endif block ( old zoom code ).
      * Removed the build option for USE_WX_ZOOM from CMakeList.txt and config.h.in.
      * Removed all scaling code in base screen object.
      * Fixed buffered paint and buffered client DC on Windows.  Buffering works
        properly on Linux and Windows.
      * Modified kicad_device_context.h to automatically uses buffering on platforms
        where double buffering is supported natively.
      * Remove all of the scaled versions of the drawing functions in gr_basic.cpp
        and any support code.
      * Removed all traces of ActiveScreen global variable from eeschema and
        gerbview.
      * Renamed Recadre_Trace to RedrawScreen in draw frame object.
      * Renamed PostDirtyRect to RefreshDrawingRect in draw panel object.
      * Lots of code cleaning an Doxygen comment improvements.
      d657b430
  32. 02 Dec, 2010 1 commit
  33. 20 Nov, 2010 1 commit
  34. 19 Nov, 2010 1 commit
  35. 12 Nov, 2010 1 commit
  36. 10 Nov, 2010 1 commit
  37. 25 Oct, 2010 1 commit
  38. 22 Oct, 2010 2 commits
    • Vovanium's avatar
      Make option not uppercasing component names. I'm so bored with my Eeschema is... · 15652d8d
      Vovanium authored
      Make option not uppercasing component names. I'm so bored with my Eeschema is convert ADuC, Si, component names to ADUC, SI etc., so I contribute this patch so anyone now may keep components
      15652d8d
    • Wayne Stambaugh's avatar
      Component library editor bug fixes and other minor fixes. · 185a2544
      Wayne Stambaugh authored
      * Fix bug that prevented component from being replaced in library when
        the component root name was changed.
      * Fix drawing bug when changing text or field item string while move in
        progress.
      * Fix drawing bug when rotating text item while move in progress.
      * Prevent undo or redo when editing a component draw item.
      * Fix assert bug when replacing component in library when the component
        root name was changed.
      * Fix bug in field editor caused by new root alias implementation that
        prevented any field from being changed.
      * Fix minor spacing issues with EESchema find dialog.
      * Deprecate remaining internal linked list code from component library
        objects.
      * Rename pin object files to match new library object file naming
        scheme.
      * Move LIB_TEXT object definition into it's own header file.
      185a2544
  39. 04 Oct, 2010 1 commit
    • Wayne Stambaugh's avatar
      Initial work on new component library stucture. · 3335ccd9
      Wayne Stambaugh authored
      * Use C++ map in component library instead of boost::ptr_vector.
      * Drop Boost pointer containers for standard C++ containers.
      * Moved duplicate name user interface elements from library object to
        library editor.
      * Added code to support direct addition and replacement of component
        alias objects into libraries.
      * Removed temporary strings used to add and remove alias objects.
      * Libraries only store alias objects, components now accessed thru alias.
      * Simplify library API for adding, removing, and replacing components.
      * Updated edit component in library dialog and library editor to reflect
        component library object changes.
      * Fixed bug in library viewer when displaying alias name.
      * Made a few header files compile stand alone per the new coding policy.
      * Remove some dead code and the usual code formatting fixes.
      3335ccd9