1. 04 Jan, 2013 1 commit
  2. 02 Aug, 2012 1 commit
  3. 01 Aug, 2012 2 commits
  4. 23 Jan, 2012 1 commit
  5. 31 Dec, 2011 1 commit
  6. 16 Dec, 2011 1 commit
  7. 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
  8. 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
  9. 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
  10. 06 Sep, 2011 1 commit
  11. 01 Sep, 2011 1 commit
    • Wayne Stambaugh's avatar
      Add menu item function fixes and other minor improvements. · 4a7dc4ad
      Wayne Stambaugh authored
      * Rename all ADD_MENUITEM_* functions to AddMenuItem and move them to
        wxstruct.h since they are used by the Kicad main frame classes.
      * Move SET_BITMAP and SETBITMAPS definitions to wxstruct.h.
      * Fix a bug in SET_BITMAPS that prevented enabling menu item images on
        OSX.
      * Rename MsgItem to EDA_MSG_ITEM.
      * Remove redundant includes from modified files.
      * Doxygen and coding style policy fixes.
      4a7dc4ad
  12. 29 Aug, 2011 1 commit
    • Wayne Stambaugh's avatar
      Add CMake code to enable or disable using images in menu items. · c5c98f95
      Wayne Stambaugh authored
      * Add USE_IMAGES_IN_MENUS definition to override the default platform
        behavior for adding images to menu items.
      * Update COMPILING.txt to document how to use USE_IMAGES_IN_MENUS.
      * Fix Windows segfault when creating language selection submenu introduced
        by new bitmap code in r3087.
      * Changed per email from JP from CVPcb to CvPcb because I'm getting old and
        blind and misread the email.
      * Lot's of Doxygen comment and coding style policy fixes.
      c5c98f95
  13. 21 Dec, 2010 1 commit
  14. 12 Nov, 2010 2 commits
  15. 04 Oct, 2010 1 commit
  16. 28 Feb, 2010 1 commit
    • dickelbeck's avatar
      from Florian Delizy · 52dbb13c
      dickelbeck authored
      This patch applies on the very last svn  (r2402) and removes all
      disfunctionnal python code (including deletion of unused strings)
      
      
      
      52dbb13c
  17. 16 Jan, 2010 1 commit
  18. 23 Nov, 2009 1 commit
  19. 03 Jul, 2009 1 commit
  20. 21 May, 2009 1 commit
    • stambaughw's avatar
      Build improvements, compiler warning fixes and build fixes, and lots of clean up. · 8bf79111
      stambaughw authored
      * Created separate SVN version header.
      * Add true config.h for platform dependency checks.
      * Add dependency check cmake module.
      * Remove some leftover hand crafted make files.
      * Remove non-cmake build instructions from COMPILING.txt.
      * Fix split _() strings causing Visual C++ compiler error.
      * Fix lots of compiler warnings.
      * Change project file parameter container from wxArray to boost::vector_ptr.
      * Removed lots of redundant header definitions.
      * Fixed green_xpm redefinition in ercgreen.xpm.
      * Remove some dead code and unnecessary class methods.
      8bf79111
  21. 29 Apr, 2009 1 commit
    • stambaughw's avatar
      EESchema UI normalization and configuration updates and Gerbview parser bug fix. · 5114b863
      stambaughw authored
      * All - add wxList implementation for dynamic declaration of application settings.
      * EESchema: remove non-standard fonts and dialog button text colors from all UI controls.
      * EESchema: update project file and application settings from static to dynamic method.
      * EESchema: save and restore show hidden pins state between sessions.
      * EESchema: global variable reductions.
      * EESchema: use EVT_UPDATE_UI instead of SetToolbars() to set control states.
      * EESchema: remove unused DialogBlocks BOM dialog project file.
      * GerbView: remove non-standard fonts and dialog button text colors from all UI controls.
      * GerbView: fix infinite loop when parsing RS274X aperture definitions with whitespace.
      * GerbView: add file name to export to PCBNew select layer dialog.
      5114b863
  22. 23 Apr, 2009 1 commit
    • stambaughw's avatar
      CVPcb code refactoring, global variable elimination, and UI updates. · aa51c05d
      stambaughw authored
      * Add methods to read and write project file parameters using dynamically defined list.
      * Remove all global variables defined in CVPcb code.
      * Dynamically define project file settings so class member variables can be used.
      * Separate reading and writing application settings from project file settings.
      * Make application UI objects and dialogs respect system UI font.
      * Remove non-standard widget colors from CVPcb dialogs.
      * Changed CVPcb object link list implementation to use wxList.
      * Changed project library and path dialog to make OK button save project file instead of confusing "Save Cfg" button.
      * Eliminate some duplicate file wildcard and extension definitions.
      * The usual code reformatting, commenting, and spelling fixes.
      aa51c05d
  23. 18 Apr, 2009 1 commit
  24. 15 Apr, 2009 2 commits
    • stambaughw's avatar
      Minor search path updates, initial UI clean up, and more wxDC zoom work. · cc661bdc
      stambaughw authored
      * Add default OS program install path(s) to search path list as fail safe.
      * Remove unnecessary wxGetApp calls in WinEDA_App class methods.
      * Remove non-standard message panel font and changed background to system menu color.
      * Remove italic fonts from menus.
      * Remove non-standard font in Kicad app project tree.
      * Remove font selection dialog menu items from apps for removed fonts.
      * Remove all global variables and settings associated with the removed fonts.
      * Fixed PCBNew export and import library file dialog response tests from wxCANCEL to wxID_CANCEL.
      cc661bdc
    • charras's avatar
      50d1bcb1
  25. 14 Apr, 2009 1 commit
  26. 12 Apr, 2009 1 commit
  27. 09 Apr, 2009 1 commit
    • stambaughw's avatar
      Change search path order, wxDC zoom updates, and code clean ups. · d96039a1
      stambaughw authored
      Add helpers for inserting paths to and removing paths from search list.
      Moved user defined path before default library paths in search list.
      Renamed m_Draw_Auxiliary_Axis to DrawAuxiliaryAxis.
      Changed parameter to fix wxDC set mode from FALSE to GR_COPY.
      Minor wxDC zoom improvements.
      d96039a1
  28. 08 Apr, 2009 1 commit
  29. 05 Apr, 2009 1 commit
  30. 28 Mar, 2009 1 commit
  31. 04 Feb, 2009 1 commit
  32. 29 Jan, 2009 1 commit
  33. 18 Jan, 2009 1 commit
  34. 17 Jan, 2009 1 commit
  35. 08 Dec, 2008 1 commit
  36. 05 Dec, 2008 1 commit
  37. 26 Oct, 2007 1 commit