1. 26 Jun, 2014 1 commit
  2. 20 Jun, 2014 1 commit
    • jean-pierre charras's avatar
      Remove 2 global variables: g_DrawBgColor and g_ShowPageLimits. · 7c99a242
      jean-pierre charras authored
      They are now member of EDA_DRAW_FRAME.
      This change could fix Bug #1330781 (Background color change in Eeschema affects background color in Pcbnew)
      Show page limits has meaning only for the schematic editor,  the board editor and the page layout editor.
      Draw background color selection exists only in eeschema and  page layout editor.
      In pcbnew, only a black background is allowed.
      A side effect is now the user should set the background color in schematic editor, and the library editor (2 different options).
      The default is still the white color.
      7c99a242
  3. 10 Jun, 2014 1 commit
  4. 05 Jun, 2014 1 commit
  5. 04 Jun, 2014 1 commit
  6. 03 Jun, 2014 2 commits
  7. 16 May, 2014 2 commits
  8. 12 May, 2014 1 commit
  9. 05 May, 2014 2 commits
    • Dick Hollenbeck's avatar
      Modular-Kicad milestone B), glamorous portions: · 3b071287
      Dick Hollenbeck authored
      *) Eeschema can now show the footprint editor.
      
      *) Eeschema can now invoke the footprint picker from the library part field editor.
      
      *) KIWAY_PLAYER::ShowModal() takes aResultantFocusWindow that tells what window
         to give the focus to.  Required since frames are often near the top of the
         hierarchy and they are invoked by a peer, not a parent.
      3b071287
    • Dick Hollenbeck's avatar
      Modular-Kicad milestone B), glamorous portions: · 55e61bc6
      Dick Hollenbeck authored
      *) Eeschema can now show the footprint editor.
      
      *) Eeschema can now invoke the footprint picker from the library part field editor.
      
      *) KIWAY_PLAYER::ShowModal() takes aResultantFocusWindow that tells what window
         to give the focus to.  Required since frames are often near the top of the
         hierarchy and they are invoked by a peer, not a parent.
      55e61bc6
  10. 04 May, 2014 4 commits
    • Dick Hollenbeck's avatar
      Modular-Kicad milestone B), minor portions: · a2227a75
      Dick Hollenbeck authored
      *) KIWAY_PLAYER::IsModal() is now a retained state, controlled by SetModal()
      
      *) Fully re-work the KIWAY_PLAYER::ShowModal() to use a nested event loop.
      
      *) Add support to DIALOG_SHIM for a "quasi-modal" dialog presentation and mode.
         See top of dialog_shim.cpp about that for benefits and need.
      
      *) You can now pick footprint from the schematic component field dialog, although
         if you do this before you open the BOARD, you will only get the global footprint
         libraries, not also the project specific ones.  Opening the BOARD first avoids this
         problem.
      
      This is the first example of cross KIFACE invocation, it is also the first
      instance of using a TOP_FRAME other than FRAME_PCB as the first thing. It works,
      but it's missing support for opening the project specific table because
      historically the FRAME_PCB did that. This is now starting to expose all the near
      term needs for KIWAY_PLAYER <-> PROJECT interaction, independence and out of
      sequence usage.
      
      A fix for this will be coming in a few days.
      
      However it mostly starts to show why the KIWAY is terribly useful and important.
      a2227a75
    • Dick Hollenbeck's avatar
      Modular-Kicad milestone B), minor portions: · fef168aa
      Dick Hollenbeck authored
      *) KIWAY_PLAYER::IsModal() is now a retained state, controlled by SetModal()
      
      *) Fully re-work the KIWAY_PLAYER::ShowModal() to use a nested event loop.
      
      *) Add support to DIALOG_SHIM for a "quasi-modal" dialog presentation and mode.
         See top of dialog_shim.cpp about that for benefits and need.
      
      *) You can now pick footprint from the schematic component field dialog, although
         if you do this before you open the BOARD, you will only get the global footprint
         libraries, not also the project specific ones.  Opening the BOARD first avoids this
         problem.
      
      This is the first example of cross KIFACE invocation, it is also the first
      instance of using a TOP_FRAME other than FRAME_PCB as the first thing. It works,
      but it's missing support for opening the project specific table because
      historically the FRAME_PCB did that. This is now starting to expose all the near
      term needs for KIWAY_PLAYER <-> PROJECT interaction, independence and out of
      sequence usage.
      
      A fix for this will be coming in a few days.
      
      However it mostly starts to show why the KIWAY is terribly useful and important.
      fef168aa
    • Dick Hollenbeck's avatar
    • Dick Hollenbeck's avatar
  11. 09 Apr, 2014 1 commit
  12. 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
  13. 27 Feb, 2014 1 commit
  14. 24 Feb, 2014 2 commits
  15. 22 Feb, 2014 1 commit
  16. 21 Feb, 2014 1 commit
  17. 19 Feb, 2014 1 commit
  18. 18 Feb, 2014 1 commit
    • Henner Zeller's avatar
      Eeschema component selection dialog improvements. · 392e3a0a
      Henner Zeller authored
      * Allow to select units in components that have more than one right in the
        component chooser dialog.
      * Keep chosen unit in history.
      * Show preview of current component unit as thumbnail image next to the
        description box.
      * Fixes lp:1280567
      392e3a0a
  19. 14 Feb, 2014 2 commits
  20. 18 Jan, 2014 1 commit
  21. 08 Jan, 2014 1 commit
  22. 14 Dec, 2013 1 commit
  23. 09 Dec, 2013 2 commits
  24. 08 Dec, 2013 1 commit
  25. 27 Nov, 2013 1 commit
  26. 18 Nov, 2013 2 commits
  27. 17 Nov, 2013 1 commit
  28. 15 Nov, 2013 1 commit
  29. 09 Nov, 2013 1 commit
  30. 27 Oct, 2013 1 commit
    • Wayne Stambaugh's avatar
      Eeschema find/replace bug fixes and improvements (fixes 1208616). · f0b2565f
      Wayne Stambaugh authored
      * Fix replace bug to handle case sensitivity properly.
      * Fix replace bug where the item index was getting updated incorrectly.
      * Fix replace infinite loop bug on replace all.
      * Make find/replace view update code a separate function.
      * Rearrange find/replace trace string to add tracing to EDA_ITEM::Replace().
      * Add IsComplexHierarchy method to SCH_SHEET_LIST for future find/replace
        improvements.
      f0b2565f