public SplashWindow(final TemplateImageLoader loader) {
super(new Frame());
parent = (Frame) getParent();
final String imageName = AboutIsis.getImageName();
final TemplateImage templateImage = loader.getTemplateImage(imageName);
if (templateImage == null) {
throw new IsisException("Failed to find splash image " + imageName);
}
logo = templateImage.getImage();
textFont = new Font("SansSerif", Font.PLAIN, 10);
titleFont = new Font("SansSerif", Font.BOLD, 11);
logoFont = new Font("Serif", Font.PLAIN, 36);
textLineHeight = (int) (getFontMetrics(textFont).getHeight() * 0.85);