2009-10-15 18:44:06 +00:00
|
|
|
KiCad TODO List
|
|
|
|
===============
|
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
WXMAC Platform
|
|
|
|
--------------
|
|
|
|
* Fix hotkey list to match CMD key
|
|
|
|
* Fix AddHotkeyName to let wxWidgets handle Ctrl to CMD key
|
|
|
|
* Fix toolbar button tooltips.
|
2009-11-06 17:21:21 +00:00
|
|
|
|
|
|
|
Common
|
|
|
|
------
|
|
|
|
* Grep for @TODO or TODO for sourcecode tasks
|
2013-04-25 16:29:35 +00:00
|
|
|
* Use Doxygen compatible comments on member functions (.h files)
|
2009-11-06 17:21:21 +00:00
|
|
|
* Add tooltip text to all non-obvious controls in every dialog window.
|
2010-09-02 08:23:38 +00:00
|
|
|
Use wxFormBuilder.
|
2009-11-06 17:21:21 +00:00
|
|
|
* Component and module search displays in which library the
|
|
|
|
module or component lives.
|
|
|
|
* List auto up and down scrolling.
|
2010-05-17 20:35:46 +00:00
|
|
|
* 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.
|
2010-03-08 19:43:29 +00:00
|
|
|
|
2011-10-20 15:49:07 +00:00
|
|
|
* Look over Brian's python BOM generation scripts, which are now in
|
2013-02-16 01:09:53 +00:00
|
|
|
scripts/python/ky and sort them out.
|
2011-10-20 15:49:07 +00:00
|
|
|
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.
|
2010-03-08 16:17:58 +00:00
|
|
|
|
|
|
|
|
2013-02-16 01:09:53 +00:00
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
Eeschema
|
2009-11-06 17:21:21 +00:00
|
|
|
--------
|
2013-04-25 16:29:35 +00:00
|
|
|
* Drag and drop between two Eeschema windows.
|
2009-11-06 17:21:21 +00:00
|
|
|
|
2010-02-08 18:15:42 +00:00
|
|
|
Wayne:
|
2010-03-16 18:22:59 +00:00
|
|
|
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.
|
2010-02-08 18:15:42 +00:00
|
|
|
|
|
|
|
|
2010-03-08 16:17:58 +00:00
|
|
|
|
2009-11-06 17:21:21 +00:00
|
|
|
PCBNew
|
|
|
|
------
|
2010-01-24 02:07:40 +00:00
|
|
|
|
2012-06-25 14:44:47 +00:00
|
|
|
*) 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.
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
*) Add a hot key to toggle the 45 degree constraint on and off so that it can be
|
|
|
|
changed when drawing a trace.
|
2012-02-20 15:21:42 +00:00
|
|
|
|
2013-11-12 20:58:33 +00:00
|
|
|
*) Paste (module ...) from clipboard into module editor.
|
|
|
|
|
2013-09-25 19:17:06 +00:00
|
|
|
|
2014-06-25 17:01:50 +00:00
|
|
|
|
|
|
|
|
2013-09-25 19:17:06 +00:00
|
|
|
Dick's Final TODO List:
|
|
|
|
======================
|
Modular KiCad Blueprint Milestone B), major portions:
*) 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.
2014-08-13 20:28:54 +00:00
|
|
|
*) Milestone B of Modular KiCad Blueprint:
|
|
|
|
* Put SEARCH_STACK::LastVisitedPath() out of its misery.
|
|
|
|
* Combine CVPCB into PCBNEW.
|
2014-06-10 15:56:43 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) 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.
2014-08-13 20:28:54 +00:00
|
|
|
*) 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.
|
2014-06-10 15:56:43 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) 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.
2014-08-13 20:28:54 +00:00
|
|
|
*) Get licensing cleaned up.
|