1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-07-24 22:25:06 +00:00

Progress on wireframe visualization

Added some more plumbing.  Updated visualization set edit dialog,
which now does word-wrapping correctly in the buttons.  Added Alt+V
as the hotkey for Create/Edit Visualization Set, which allows you
to double-tap it to leap into the visualization editor.

Experimented with Path drawing, which looks like it could do just
what we need.

Also, show the file size in KB in the code/data/junk breakdown at the
bottom of the window.  (Technically it's KiB, but that looked funny.)
This commit is contained in:
Andy McFadden
2020-03-01 18:18:31 -08:00
parent e8870c30e8
commit 38ca9005c4
11 changed files with 185 additions and 35 deletions

View File

@@ -697,7 +697,7 @@ namespace SourceGen {
float dataPerc = (mProject.ByteCounts.DataByteCount * 100.0f) / total;
float junkPerc = (mProject.ByteCounts.JunkByteCount * 100.0f) / total;
mMainWin.ByteCountText = string.Format(Res.Strings.STATUS_BYTE_COUNT_FMT,
codePerc, dataPerc, junkPerc);
total / 1024.0f, codePerc, dataPerc, junkPerc);
}
#endregion Init and settings