2016-08-03 16:57:42 +03:00
|
|
|
Parsing and input processing:
|
2016-08-02 17:00:08 +03:00
|
|
|
- unify alignment, direction
|
|
|
|
- find libraries (e.g., from .pro)
|
|
|
|
- on parse error, politely complain, don't terminate;
|
|
|
|
convert abort / assert(0) to proper error indications
|
2016-08-16 11:19:23 +03:00
|
|
|
- quoted strings can have embedded double quotes, with \" (see parse_field)
|
|
|
|
- check what happens with UTF-8 (c4puter/motherboard)
|
2016-08-03 16:57:42 +03:00
|
|
|
|
|
|
|
Data model:
|
2016-08-02 17:00:08 +03:00
|
|
|
- implement destructors
|
|
|
|
- check for memory leaks
|
2016-08-05 01:25:31 +03:00
|
|
|
- sheets appearing multiple times are parsed anew each time. Should we try
|
|
|
|
to combine them ?
|
2016-08-10 01:46:18 +03:00
|
|
|
- likewise, reuse sheets and libraries that are the same in the next/previous
|
|
|
|
revision (according to their OID)
|
2016-08-03 16:57:42 +03:00
|
|
|
|
|
|
|
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
|
2016-08-02 17:00:08 +03:00
|
|
|
- record.c (bb_rot): implement bounding boxes for text
|
|
|
|
- nesting gfx in diff is a huge kludge, caused by global vars in gfx.c
|
2016-08-03 16:57:42 +03:00
|
|
|
|
|
|
|
Rendering:
|
|
|
|
- better text size guessing also for FIG
|
2016-08-05 01:25:31 +03:00
|
|
|
- consider switching to Hershey fonts (that's what eeschema uses, right ?)
|
|
|
|
(goal: prevent font geometry from changing when scaling)
|
2016-08-03 16:57:42 +03:00
|
|
|
- support fonts attributes ?
|
|
|
|
- support line thickness ?
|
|
|
|
- ~ as overline (grep for ~ in out.fig)
|
|
|
|
- let user set PNG size [we have zoom level]
|
2016-08-02 17:00:08 +03:00
|
|
|
- return indication of whether diff found any differences
|
|
|
|
- in diff, pass only options understood by cairo_png
|
2016-08-02 23:26:02 +03:00
|
|
|
- find out why in Cairo PDF non-dashed lines disappear if CAIRO_LINE_CAP_ROUND
|
2016-08-20 01:14:49 +03:00
|
|
|
- non-interactive diff mode currently requires both sheets to have identical
|
|
|
|
size
|
2016-08-22 19:15:27 +03:00
|
|
|
- diff area algorithm will fill anything resembling a closed path, no matter
|
|
|
|
how little is inside (e.g., a changed large but empty rectangle will be
|
|
|
|
filled)
|
2016-08-03 16:57:42 +03:00
|
|
|
|
|
|
|
GUI:
|
|
|
|
- fonts grow beyond their bounding boxes when zooming in
|
|
|
|
- dragging can be slow. maybe reusing old content and only redrawing new
|
|
|
|
will help ?
|
2016-08-10 01:46:18 +03:00
|
|
|
- highlight nets ?
|
2016-08-11 02:41:33 +03:00
|
|
|
- we use find_corresponding_sheet way too often. Consider changing curr_sheet
|
|
|
|
to new_sheet and old_sheet.
|
2016-08-19 19:26:24 +03:00
|
|
|
- introduce location string, as command-line argument, e.g.,
|
|
|
|
[top-sheet/]rev-old,rev-new[,x,y[,zoom]]
|
2016-08-20 13:50:15 +03:00
|
|
|
or maybe (allowing for sheets from completely different sources):
|
|
|
|
[revA]:[topA]:[sheetA][,[revB]:[topB]:[sheetB]][@x,y[,zoom]]
|
2016-08-21 17:38:29 +03:00
|
|
|
[revA]:[topA]:[sheetA][,[revB]:[topB]:[sheetB]][@x,y[,radius]]
|
2016-08-19 19:26:24 +03:00
|
|
|
- set/use location string via clipboard
|
2016-08-21 08:03:00 +03:00
|
|
|
- incremental search with / ? and maybe Ctrl-S and Ctrl-R
|
|
|
|
https://www.gnu.org/software/emacs/manual/html_node/emacs/Repeat-Isearch.html#Repeat-Isearch
|
|
|
|
- allow changing font size
|
|
|
|
- maybe allow changing diff contrast
|
2016-08-05 01:25:31 +03:00
|
|
|
|
2016-08-10 01:46:18 +03:00
|
|
|
GUI/history
|
|
|
|
- should have quick way to show diff of a single commit
|
|
|
|
- in history, set font to non-bold if showing details
|
2016-08-21 08:03:00 +03:00
|
|
|
- add scrolling with keys to history
|
2016-08-10 01:46:18 +03:00
|
|
|
- add manual selection with Up/Down/Enter
|
|
|
|
- "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
|
2016-08-14 19:01:35 +03:00
|
|
|
fails (reserved hotkeys: Left/Right)
|
2016-08-18 19:53:37 +03:00
|
|
|
|
|
|
|
GUI/glabels:
|
|
|
|
- maybe indicate how many times label is used on each sheet
|
|
|
|
- maybe indicate how it is used
|
2016-08-20 15:04:27 +03:00
|
|
|
- there can be "hanging" pop-ups, by design. See comment in
|
|
|
|
gui/glabel.c:hover_glabel
|