- 14 Apr, 2015 1 commit
-
-
jean-pierre charras authored
-
- 31 Mar, 2015 1 commit
-
-
Wayne Stambaugh authored
* Fix bug (and Coverity error) when deleting environment variable map entries. * Remove debug logging code inadvertently left over from development.
-
- 29 Mar, 2015 1 commit
-
-
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.
-
- 22 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Make hotkey string info translatable in dialogs. These strings are now prefixed by _HKI , which can be used by translation tools to extract them.
-
- 06 Mar, 2015 1 commit
-
-
unknown authored
Minot fixes: Minor coding style issues fix (tab -> spaces). Add missing GetClass to all classes derived from EDA_ITEM. Make debug method Show() only compiled in debug mode.
-
- 05 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Minor fixes: coding style in 3d-viewer and minor code cleanup, and some fixes in bom python scripts, which did not work when a non ascii char (but a valid utf8 symbol) was found in xml netlist. Add comments.
-
- 02 Mar, 2015 1 commit
-
-
jean-pierre charras authored
-
- 17 Jan, 2015 1 commit
-
-
jean-pierre charras authored
Minor and very minors fixes: move -DKICAD_USE_WEBKIT definition to the main CMakeLists.txt. Remove duplicate semi-colon at end of some lines.
-
- 31 Dec, 2014 1 commit
-
-
jean-pierre charras authored
Page layout selection: fix Bug #1405972, and add minor enhancement in page layout selection dialog (the new layout is shown after selection). When the filename is not absolute, the page layout file is now searched first in project folder, and then in kicad template folder, if not found in project.
-
- 18 Dec, 2014 1 commit
-
-
jean-pierre charras authored
Allows use of modifier shift key with letters A ... Z in hot keys (including hot key editor). Thanks to John Bird, who helped me with his patch.
-
- 19 Nov, 2014 1 commit
-
-
jean-pierre charras authored
Try to fix an issue on Ubuntu/Unity for some dialogs which are not displayed. For most, adding GetSizer()->Fit( this ) in dialog constructor fix the issue, but at least one dialog still is not displayed.
-
- 17 Oct, 2014 2 commits
-
-
unknown authored
Fix bug: Dialog "Page settings" does not always detect page format. Formats A, B, C, D, E, Custom (User) are detected right but A0-A4, US* are wrong.
-
Mark Roszko authored
Set wxNO_BORDER for the tab page.
-
- 16 Oct, 2014 2 commits
-
-
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).
-
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.
-
- 13 Aug, 2014 1 commit
-
-
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.
-
- 11 Jun, 2014 1 commit
-
-
Dick Hollenbeck authored
to a new BOARD in the footprint editor. This is PAGE_INFO::A4 and company. *) Remove static storage of the BOARD in the module editor.
-
- 03 Apr, 2014 1 commit
-
-
jean-pierre charras authored
-
- 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
-
- 09 Dec, 2013 1 commit
-
-
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.
-
- 18 Nov, 2013 2 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
- 17 Nov, 2013 1 commit
-
-
Dick Hollenbeck authored
columns. DIALOG_SHIM would resize each separate usage to the same size. DIALOG_SHIM now supports and alternate m_hash_key in lieu of the class name, optionally.
-
- 11 Oct, 2013 1 commit
-
-
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)
-
- 21 Sep, 2013 1 commit
-
-
jean-pierre charras authored
-
- 20 Sep, 2013 1 commit
-
-
Maciej Suminski authored
-
- 06 Sep, 2013 1 commit
-
-
Maciej Suminski authored
-
- 09 Aug, 2013 1 commit
-
-
jean-pierre charras authored
Replace the wxFilePickedCtrl in Option Page dialog by an usual wxButton + wxTextCtrl, because under wxWdgets 2.8.12 the look and the behavior is very different between Windows and Linux.
-
- 19 Jul, 2013 1 commit
-
-
jean-pierre charras authored
-
- 19 Jun, 2013 1 commit
-
-
jean-pierre charras authored
Pcbnew: netlist dialog: add silent mode option, and tool tip to the 2 options (dry run and silent mode) dialog_display_info_HTML_base: derived now from dialog_shim.
-
- 28 May, 2013 1 commit
-
-
jean-pierre charras authored
because under Linux and wxWidgets 2.9, wxStaticBoxSizer are very ugly (text not readable in this dialog) (Does not happen with wxWidgets 2.8) Eeschema hotkeys: remove duplicate keys in key editor.
-
- 26 May, 2013 1 commit
-
-
Dick Hollenbeck authored
File "rules" has instructional text as comments near top. 2) Convert all text files in repo to LF line ending form. Any checkout done with "rules" in play will convert the working tree to native line ending, while keeping repo as LF line ending.
-
- 25 May, 2013 1 commit
-
-
jean-pierre charras authored
Pcbnew: fix bug in drag module: connected tracks were not dragged. worksheet: code cleaning.
-
- 23 May, 2013 1 commit
-
-
Lorenzo Marcantonio authored
-
- 22 May, 2013 1 commit
-
-
jean-pierre charras authored
-
- 18 Apr, 2013 2 commits
-
-
Dick Hollenbeck authored
-
Dick Hollenbeck authored
-
- 09 Apr, 2013 1 commit
-
-
Lorenzo Marcantonio authored
-
- 27 Mar, 2013 1 commit
-
-
Andrey Fedorushkov authored
pcbnew: fix print format in THROW_IO_ERROR fix properties file export_vrml.cpp
-