mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-06 00:25:21 +00:00
*) 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.
77 lines
2.7 KiB
Plaintext
77 lines
2.7 KiB
Plaintext
KiCad TODO List
|
|
===============
|
|
|
|
WXMAC Platform
|
|
--------------
|
|
* Fix hotkey list to match CMD key
|
|
* Fix AddHotkeyName to let wxWidgets handle Ctrl to CMD key
|
|
* Fix toolbar button tooltips.
|
|
|
|
Common
|
|
------
|
|
* Grep for @TODO or TODO for sourcecode tasks
|
|
* Use Doxygen compatible comments on member functions (.h files)
|
|
* Add tooltip text to all non-obvious controls in every dialog window.
|
|
Use wxFormBuilder.
|
|
* Component and module search displays in which library the
|
|
module or component lives.
|
|
* List auto up and down scrolling.
|
|
* Push file open semantics down to one of the base frame classes ( likely candidate is
|
|
WinEDA_BasicFrame ) so that file open behavior is consistent across all applications.
|
|
|
|
* Look over Brian's python BOM generation scripts, which are now in
|
|
scripts/python/ky and sort them out.
|
|
Code came from Brian in this posting's attachment, which is ky2.zip:
|
|
https://lists.launchpad.net/kicad-developers/msg06763.html
|
|
but is now in scripts/python/ky temporarily.
|
|
|
|
|
|
|
|
Eeschema
|
|
--------
|
|
* Drag and drop between two Eeschema windows.
|
|
|
|
Wayne:
|
|
E3) Hook up perform last library search hot key to replace search libraries for
|
|
component support removed from find dialog.
|
|
E4) Change add component dialog search text control to combobox and add component
|
|
search history save and restore capability. Also add session save and restore
|
|
to component history list control. Add advanced search capability similar to
|
|
new find dialog.
|
|
E6) Start initial work for changing component library file format to use Dick's
|
|
dsnlexer. See note C2 above. Come up with a workable library file format to
|
|
handle the wishes of the library implementation group. Add initial clipboard
|
|
support to the library editor.
|
|
|
|
|
|
|
|
PCBNew
|
|
------
|
|
|
|
*) Make the zone hit testing be done in screen coordinates, not internal units.
|
|
See the @todos in class_zone.cpp. A fixed distance in internal units becomes
|
|
a variable distance based on zoom factor, leading to inconsistent results at
|
|
various zoom factors. I believe that a fixed distance in pixels might make
|
|
for a friendlier UI.
|
|
|
|
*) Add a hot key to toggle the 45 degree constraint on and off so that it can be
|
|
changed when drawing a trace.
|
|
|
|
*) Paste (module ...) from clipboard into module editor.
|
|
|
|
|
|
|
|
|
|
Dick's Final TODO List:
|
|
======================
|
|
*) Milestone B of Modular KiCad Blueprint:
|
|
* Put SEARCH_STACK::LastVisitedPath() out of its misery.
|
|
* Combine CVPCB into PCBNEW.
|
|
|
|
*) Milestone C of Modular KiCad Blueprint
|
|
* SWIG class KIWAY, PROJECT, and KIWAY_MGR and fill out KIWAY_MGR as needed.
|
|
* Implement PROJECT::Substitute().
|
|
* Other stuff in blueprint milestone.
|
|
|
|
*) Get licensing cleaned up.
|