mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-18 01:14:42 -04:00
two different PNG sizes
This commit is contained in:
parent
667e38286d
commit
c55c2c223e
@ -198,7 +198,8 @@ public class Main extends JFrame implements ClosingWindowListener.ConfirmSave, E
|
|||||||
JMenu export = new JMenu(Lang.get("menu_export"));
|
JMenu export = new JMenu(Lang.get("menu_export"));
|
||||||
export.add(new ExportAction(Lang.get("menu_exportSVG"), "svg", GraphicSVGIndex::new));
|
export.add(new ExportAction(Lang.get("menu_exportSVG"), "svg", GraphicSVGIndex::new));
|
||||||
export.add(new ExportAction(Lang.get("menu_exportSVGLaTex"), "svg", GraphicSVGLaTeX::new));
|
export.add(new ExportAction(Lang.get("menu_exportSVGLaTex"), "svg", GraphicSVGLaTeX::new));
|
||||||
export.add(new ExportAction(Lang.get("menu_exportPNG"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 2)));
|
export.add(new ExportAction(Lang.get("menu_exportPNGSmall"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 1)));
|
||||||
|
export.add(new ExportAction(Lang.get("menu_exportPNGLarge"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 2)));
|
||||||
|
|
||||||
JMenu file = new JMenu(Lang.get("menu_file"));
|
JMenu file = new JMenu(Lang.get("menu_file"));
|
||||||
bar.add(file);
|
bar.add(file);
|
||||||
|
@ -230,7 +230,8 @@ menu_editAttributes_tt=Diese Attribute beeinflussen das Modell, wenn es in ander
|
|||||||
menu_fast=Schneller Lauf
|
menu_fast=Schneller Lauf
|
||||||
menu_fast_tt=F\u00FChrt das Modell aus, bis ein Stopsignal \u00FCber ein BRK-Element detektiert wird.
|
menu_fast_tt=F\u00FChrt das Modell aus, bis ein Stopsignal \u00FCber ein BRK-Element detektiert wird.
|
||||||
menu_export=Export
|
menu_export=Export
|
||||||
menu_exportPNG=Export PNG
|
menu_exportPNGSmall=Export PNG klein
|
||||||
|
menu_exportPNGLarge=Export PNG gro\u00DF
|
||||||
menu_exportSVG=Export SVG
|
menu_exportSVG=Export SVG
|
||||||
menu_exportSVGLaTex=Export SVG+LaTeX
|
menu_exportSVGLaTex=Export SVG+LaTeX
|
||||||
menu_delete=L\u00F6schen
|
menu_delete=L\u00F6schen
|
||||||
|
@ -218,7 +218,8 @@ menu_fast_tt=Runs the model until a break is detected by the BRK element.
|
|||||||
menu_export=Export
|
menu_export=Export
|
||||||
menu_exportSVG=Export SVG
|
menu_exportSVG=Export SVG
|
||||||
menu_exportSVGLaTex=Export SVG+LaTeX
|
menu_exportSVGLaTex=Export SVG+LaTeX
|
||||||
menu_exportPNG=Export PNG
|
menu_exportPNGSmall=Export PNG small
|
||||||
|
menu_exportPNGLarge=Export PNG large
|
||||||
menu_delete=Delete elements
|
menu_delete=Delete elements
|
||||||
menu_delete_tt=Delete selected single element or group of elements
|
menu_delete_tt=Delete selected single element or group of elements
|
||||||
menu_editRunAttributes=Simulation Settings
|
menu_editRunAttributes=Simulation Settings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user