1. 14 Apr, 2015 1 commit
  2. 31 Mar, 2015 1 commit
  3. 29 Mar, 2015 1 commit
    • Wayne Stambaugh's avatar
      Add path (environment variable) configuration dialog. · 45d0448b
      Wayne Stambaugh authored
      * Create new dialog to edit environment variables.
      * Add helper class ENV_VAR_ITEM to manage environment variable values and
        if they were defined externally.
      * A path configuration dialog access to KiCad, CvPcb, Pcbnew, and Footprint Editor
        window menus.
      * Add validator for environment variables.
      45d0448b
  4. 22 Mar, 2015 1 commit
  5. 06 Mar, 2015 1 commit
  6. 05 Mar, 2015 1 commit
  7. 02 Mar, 2015 1 commit
  8. 17 Jan, 2015 1 commit
  9. 31 Dec, 2014 1 commit
  10. 18 Dec, 2014 1 commit
  11. 19 Nov, 2014 1 commit
  12. 17 Oct, 2014 2 commits
  13. 16 Oct, 2014 2 commits
    • Mark Roszko's avatar
      Make hotkey command titles use consistent capitalization. · 606f2e91
      Mark Roszko authored
      Rename "Switch highcontrast" to "Toggle High Contrast".
      Eliminate most of the abbreviated hotkey titles.
      Doxygenize dialog_hotkeys_editor.h and add missing license block.
      Display <unassigned> if key code is 0 (NULL).
      606f2e91
    • Mark Roszko's avatar
      Hotkey Editor Polishing · 651a92a8
      Mark Roszko authored
      Refactor hotkey editor to use tab control instead of one giant list.
      Each tab is a separate hotkey section.
      Modify EDA_HOTKEY_CONFIG to change the m_Comment member to m_Title for a new purpose.
      We want a pretty title in the hotkey editor. We use m_Title for the key export comment which
      still conveys the purpose just as easily.
      Refactored usage of wxGrid into wxListCtrl which allows capturing navigation characters
      and also works better (single selection is built in).
      Add hotkey overwrite prompts that are paired with "Common" section. It will check if a hotkey
      overlaps with the proper sections. i.e. Common with the all other sections; or Section 1 with just Common.
      Right-click menu removed due to wxListCtrl being able to catch the special keys properly.
      651a92a8
  14. 13 Aug, 2014 1 commit
    • Dick Hollenbeck's avatar
      Modular KiCad Blueprint Milestone B), major portions: · 7e483f69
      Dick Hollenbeck authored
        *) When kicad.exe closes a project, close any open KIFACEs so that they cannot
           get disassociated from their true PROJECT.
        *) Allow loading eeschema library editor from kicad.exe
        *) Allow loading pcbnew library editor from kicad.exe
        *) Rename LIB_COMPONENT to LIB_PART.
        *) Add class PART_LIBS, and PART_LIB.
        *) Make PART_LIBS non-global, i.e. PROJECT specific.
        *) Implement "data on demand" for PART_LIBS
        *) Implement "data on demand" for schematic SEARCH_STACK.
        *) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
        *) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
           a weak pointer.
        *) Remove all chdir() calls so projects don't need to be CWD.
        *) Romove APPEND support from OpenProjectFiles().
        *) Make OpenProjectFiles() robust, even for creating new projects.
        *) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
           and save them in the .eeschema config file, not in the project file.
        *) Fix bug with wxDir() while accessing protected dirs in kicad.exe
        *) Consolidate template copying into PROJECT class, not in kicad.exe source.
        *) Generally untangle eeschema, making its libraries not global but rather
           held in the PROJECT.
      7e483f69
  15. 11 Jun, 2014 1 commit
  16. 03 Apr, 2014 1 commit
  17. 20 Mar, 2014 1 commit
    • Dick Hollenbeck's avatar
      * KIWAY Milestone A): Make major modules into DLL/DSOs. · 2c67c3ff
      Dick Hollenbeck authored
      !   The initial testing of this commit should be done using a Debug build so that
          all the wxASSERT()s are enabled.  Also, be sure and keep enabled the
          USE_KIWAY_DLLs option.  The tree won't likely build without it.  Turning it
          off is senseless anyways.  If you want stable code, go back to a prior version,
          the one tagged with "stable".
      
      *   Relocate all functionality out of the wxApp derivative into more finely
          targeted purposes:
          a) DLL/DSO specific
          b) PROJECT specific
          c) EXE or process specific
          d) configuration file specific data
          e) configuration file manipulations functions.
      
          All of this functionality was blended into an extremely large wxApp derivative
          and that was incompatible with the desire to support multiple concurrently
          loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
          An amazing amount of organization come from simply sorting each bit of
          functionality into the proper box.
      
      *   Switch to wxConfigBase from wxConfig everywhere except instantiation.
      *   Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
          PGM_SINGLE_TOP,
      *   Remove "Return" prefix on many function names.
      *   Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
      *   Fix building boost for use in a DSO on linux.
      *   Remove some of the assumptions in the CMakeLists.txt files that windows had
          to be the host platform when building windows binaries.
      *   Reduce the number of wxStrings being constructed at program load time via
          static construction.
      *   Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
          these functions are useful even when the wxConfigBase comes from another
          source, as is the case in the KICAD_MANAGER_FRAME.
      *   Move the setting of the KIPRJMOD environment variable into class PROJECT,
          so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
      *   Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
          its child wxFrames and wxDialogs now have a Kiway() member function which
          returns a KIWAY& that that window tree branch is in support of.  This is like
          wxWindows DNA in that child windows get this member with proper value at time
          of construction.
      *   Anticipate some of the needs for milestones B) and C) and make code
          adjustments now in an effort to reduce work in those milestones.
      *   No testing has been done for python scripting, since milestone C) has that
          being largely reworked and re-thought-out.
      2c67c3ff
  18. 27 Feb, 2014 1 commit
  19. 09 Dec, 2013 1 commit
    • Dick Hollenbeck's avatar
      *) Change FOOTPRINT_LIST::ReadFootprintFiles( FP_LIB_TABLE*, const wxString*) · dba4fcce
      Dick Hollenbeck authored
         To use multiple working threads.  This entailed adding KiCad typedefs:
      *) Add typedefs for MUTEX and MUTLOCK which mask the actual choices for the project.
      *) Add FOOTPRINT_LIST::DisplayErrors( wxWindow* ) which is a single strategy for
         showing aggregated load errors.  Although what's there is only scaffolding
         and needs a volunteer who knows HTML pretty well.
      *) Ensure all callers of ReadFootprintFiles() use the new DisplayErrors() function.   
      *) Push utf8.cpp and utf8.h into common library for open use.
      dba4fcce
  20. 18 Nov, 2013 2 commits
  21. 17 Nov, 2013 1 commit
  22. 11 Oct, 2013 1 commit
    • jean-pierre charras's avatar
      Remove wxUSE_UNICODE definition from CMakeLists.txt, because this define comes... · a8e57e10
      jean-pierre charras authored
      Remove wxUSE_UNICODE definition from CMakeLists.txt, because this define comes from wxWidgets and should not be made inside kicad
      Remove KICAD_GOST option because it is  now useless: the 2 GOST options are now selectable at run time and are:
      * specific page layouts (now user definable, and the GOST page layouts are available in template folder)
      * notation for multiple parts per package (made in eeschema, preference menu)
      a8e57e10
  23. 21 Sep, 2013 1 commit
  24. 20 Sep, 2013 1 commit
  25. 06 Sep, 2013 1 commit
  26. 09 Aug, 2013 1 commit
  27. 19 Jul, 2013 1 commit
  28. 19 Jun, 2013 1 commit
  29. 28 May, 2013 1 commit
  30. 26 May, 2013 1 commit
  31. 25 May, 2013 1 commit
  32. 23 May, 2013 1 commit
  33. 22 May, 2013 1 commit
  34. 18 Apr, 2013 2 commits
  35. 09 Apr, 2013 1 commit
  36. 27 Mar, 2013 1 commit