mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-05 08:50:18 +02:00
65 lines
2.6 KiB
Plaintext
65 lines
2.6 KiB
Plaintext
Parsing and input processing:
|
|
- unify alignment, direction
|
|
- find libraries (e.g., from .pro)
|
|
- parse .kicad_wks
|
|
- on parse error, politely complain, don't terminate;
|
|
convert abort / assert(0) to proper error indications
|
|
- quoted strings can have embedded double quotes, with \" (see parse_field)
|
|
- check what happens with UTF-8 (c4puter/motherboard)
|
|
|
|
Data model:
|
|
- implement destructors
|
|
- check for memory leaks
|
|
- sheets appearing multiple times are parsed anew each time. Should we try
|
|
to combine them ?
|
|
- likewise, reuse sheets and libraries that are the same in the next/previous
|
|
revision (according to their OID)
|
|
|
|
Visualization (dwg.c and such):
|
|
- glabel: build for "right" style, then rotate poly (like hlabel)
|
|
- show open pins / wires
|
|
- check remaining alignment / direction / rotation cases in switch statements
|
|
- support mirroring (and detect-complain if unexpected) [should be done now]
|
|
- pin shapes (inverted, clock, etc.)
|
|
- optionally display pin type
|
|
- record.c (bb_rot): implement bounding boxes for text
|
|
- nesting gfx in diff is a huge kludge, caused by global vars in gfx.c
|
|
|
|
Rendering:
|
|
- better text size guessing also for FIG
|
|
- consider switching to Hershey fonts (that's what eeschema uses, right ?)
|
|
(goal: prevent font geometry from changing when scaling)
|
|
- support fonts attributes ?
|
|
- support line thickness ?
|
|
- ~ as overline (grep for ~ in out.fig)
|
|
- PDF TOC
|
|
- let user set PNG size [we have zoom level]
|
|
- return indication of whether diff found any differences
|
|
- in diff, pass only options understood by cairo_png
|
|
- find out why in Cairo PDF non-dashed lines disappear if CAIRO_LINE_CAP_ROUND
|
|
|
|
GUI:
|
|
- fonts grow beyond their bounding boxes when zooming in
|
|
- dragging can be slow. maybe reusing old content and only redrawing new
|
|
will help ?
|
|
- glabels: on hover, show clickable list of sheets where else label is used
|
|
- highlight nets ?
|
|
- we use find_corresponding_sheet way too often. Consider changing curr_sheet
|
|
to new_sheet and old_sheet.
|
|
|
|
GUI/history
|
|
- revision selection is still a bit inconvenient and lacks quick way for
|
|
showing un-diffed sheets. Should add "delta" button.
|
|
- use Tab to rapidly toggle between old/new sheet
|
|
- should have quick way to show diff of a single commit
|
|
- in history, set font to non-bold if showing details
|
|
- add scrolling to history, for hot-keys
|
|
- add manual selection with Up/Down/Enter
|
|
- highlight subsheets containing differences
|
|
- "what I am selecting" indication (color of frames of sheets in history)
|
|
is not very clear.
|
|
|
|
GUI/sheets:
|
|
- need a way to change new/old sheet association, in case automatic selection
|
|
fails (reserved hotkeys: Left/Right)
|