}
// build form
final FormBuilder f = new FormBuilder("preview.graphic");
f.addHeader("basic", new FormHeader("", null));
f.addElement("basic.path", new FormTextField(I18N.t("Pfad"), file.getAbsolutePath()));
f.addElement(
"basic.size",
new FormTextField(I18N.t("Größe"), I18N.t("{0}x{1}x{2}", image.getWidth(), image.getHeight(), image.getImage()
.getAccelerationPriority())));
YDialog.showForm(file.getName(), "graphic_info", f);
}