1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-09-30 02:19:27 +03:00

eeshow/: fix some whitespace issues

- trailing space
- space before semicolon
- indentation with spaces instead of tabs (copy & paste)
This commit is contained in:
Werner Almesberger 2016-08-04 19:25:31 -03:00
parent e18c146323
commit 1c6116a8d6
11 changed files with 23 additions and 15 deletions

View File

@ -8,6 +8,8 @@ Parsing and input processing:
Data model: Data model:
- implement destructors - implement destructors
- check for memory leaks - check for memory leaks
- sheets appearing multiple times are parsed anew each time. Should we try
to combine them ?
Visualization (dwg.c and such): Visualization (dwg.c and such):
- glabel: build for "right" style, then rotate poly (like hlabel) - glabel: build for "right" style, then rotate poly (like hlabel)
@ -21,6 +23,8 @@ Visualization (dwg.c and such):
Rendering: Rendering:
- better text size guessing also for FIG - 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 fonts attributes ?
- support line thickness ? - support line thickness ?
- ~ as overline (grep for ~ in out.fig) - ~ as overline (grep for ~ in out.fig)
@ -34,3 +38,7 @@ GUI:
- fonts grow beyond their bounding boxes when zooming in - fonts grow beyond their bounding boxes when zooming in
- dragging can be slow. maybe reusing old content and only redrawing new - dragging can be slow. maybe reusing old content and only redrawing new
will help ? will help ?
On-going:
- use Pango to support markup in overlay boxes:
https://developer.gnome.org/pango/unstable/PangoMarkupFormat.html