- 26 Jun, 2014 1 commit
-
-
jean-pierre charras authored
Pspice netlist generator: add option to use net numbers as net names (feature removed a long time ago, but needed by Oscad team) Note these options are saved in project config.
-
- 20 Jun, 2014 1 commit
-
-
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.
-
- 10 Jun, 2014 1 commit
-
-
Dick Hollenbeck authored
Change class PROJECT to use a generalized wxString in place of the RETAINED_PATH items, so that new session and project specific strings of any purpose can be saved there, for the life of a session.
-
- 05 Jun, 2014 1 commit
-
-
Dick Hollenbeck authored
Fix segfault when deleting last user path from eeschema libpaths and then pressing cancel.
-
- 04 Jun, 2014 1 commit
-
-
jean-pierre charras authored
-
- 03 Jun, 2014 2 commits
-
-
Dick Hollenbeck authored
remove global g_UserLibDirBuffer which was a project specific global, and no longer used with FP_LIB_TABLE support.
-
Dick Hollenbeck authored
-
- 16 May, 2014 2 commits
-
-
jean-pierre charras authored
-
Lorenzo Marcantonio authored
Made the project default text size apply to all text things in eeschema, instead of the hardcoded value
-
- 12 May, 2014 1 commit
-
-
Lorenzo Marcantonio authored
-
- 05 May, 2014 2 commits
-
-
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.
-
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.
-
- 04 May, 2014 4 commits
-
-
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.
-
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.
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
- 09 Apr, 2014 1 commit
-
-
Dick Hollenbeck authored
was used locally. Then comment it out in favor of a newer strategy for filling in nicknames in cvpcb. Add MODULE* FootprintLoadWithOptionalNickname( const FPID& aFootprintId ) throw( IO_ERROR, PARSE_ERROR ); from code found elsewhere.
-
- 20 Mar, 2014 1 commit
-
-
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.
-
- 27 Feb, 2014 1 commit
-
-
jean-pierre charras authored
-
- 24 Feb, 2014 2 commits
-
-
HennerZeller authored
Eeschema: * Preselect the currently chosen component in the browser when pressing the thumbnail view. * Various smallish documentation updates in the component chooser area.
-
Henner Zeller authored
* Pressing 'Enter' while the focus is in the tree did not work due to the double-click wxWidgets workaround. Make it work. * More clearly document what is happening and how it can be tested.
-
- 22 Feb, 2014 1 commit
-
-
jean-pierre charras authored
Eeschema: Remove usage of tabs in dialog_choose_component.cpp strings, because they do not work very well on Linux, and do not work on Windows. Fix incorrect rotation of components (CCW instaed of CW)
-
- 21 Feb, 2014 1 commit
-
-
Wayne Stambaugh authored
* Manually change fbp file minor version number so dialog could be edited with latest release version of wxFormBuilder. * Give component view panel more weight for improved component view size. * Add padding around dialog button sizer.
-
- 19 Feb, 2014 1 commit
-
-
Henner Zeller authored
* Improve component chooser redraw to fit in wxWidgets redraw strategies. * Use LIB_COMPONENT::Draw and LIB_COMPONENT::GetBoundingBox for drawing the component * Make resize redrawing work properly.
-
- 18 Feb, 2014 1 commit
-
-
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
-
- 14 Feb, 2014 2 commits
-
-
Henner Zeller authored
* make some more fields 'const' that can. * Instead of previous/next _visible_ element, Go through previous and next element. Otherwise the cursor stops moving if the item is only partially visible.
-
Henner Zeller authored
-
- 18 Jan, 2014 1 commit
-
-
maciej. authored
-
- 08 Jan, 2014 1 commit
-
-
Dick Hollenbeck authored
-
- 14 Dec, 2013 1 commit
-
-
jean-pierre charras authored
Minor change: Eeschema+Pcbnew: display timestamp in edit dialogs (for footprints, sheets, components)
-
- 09 Dec, 2013 2 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
- 08 Dec, 2013 1 commit
-
-
Dick Hollenbeck authored
eeschema/dialogs/dialog_lib_new_component.cpp was not expanding part name field nor setting initial focus.
-
- 27 Nov, 2013 1 commit
-
-
Dick Hollenbeck authored
Better GITHUB class header documentation, better eeschema library field dialog stretching and title.
-
- 18 Nov, 2013 2 commits
-
-
Dick Hollenbeck authored
-
jean-pierre charras authored
-
- 17 Nov, 2013 1 commit
-
-
Wayne Stambaugh authored
-
- 15 Nov, 2013 1 commit
-
-
jean-pierre charras authored
-
- 09 Nov, 2013 1 commit
-
-
Wayne Stambaugh authored
* Replace all occurrences of the word "part" with "unit" when referring to multiple unit components for improved consistency. * Replace "shared by" with "common to" when referring to objects (lines, arcs, pins, etc.) that are common to all units. * Improve wording in library component properties dialog.
-
- 27 Oct, 2013 1 commit
-
-
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.
-