From 88bf05b9ad4ff97b3f1c79d593a7a870356548f5 Mon Sep 17 00:00:00 2001 From: Robert Greene Date: Thu, 4 Dec 2003 05:57:24 +0000 Subject: [PATCH] Added Compile Wizard logo. --- .../applecommander/ui/swt/ImageManager.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/com/webcodepro/applecommander/ui/swt/ImageManager.java b/src/com/webcodepro/applecommander/ui/swt/ImageManager.java index 039201b..62caaa0 100644 --- a/src/com/webcodepro/applecommander/ui/swt/ImageManager.java +++ b/src/com/webcodepro/applecommander/ui/swt/ImageManager.java @@ -1,6 +1,6 @@ /* * AppleCommander - An Apple ][ image utility. - * Copyright (C) 2002 by Robert Greene + * Copyright (C) 2002-3 by Robert Greene * robgreene at users.sourceforge.net * * This program is free software; you can redistribute it and/or modify it @@ -48,6 +48,7 @@ public class ImageManager { private Image diskImageWizardLogo; private Image importWizardLogo; private Image compileIcon; + private Image compileWizardLogo; /** * Construct the ImageManager. */ @@ -69,6 +70,7 @@ public class ImageManager { diskImageWizardLogo = createImage(display, "DiskImageWizardLogo.gif"); importWizardLogo = createImage(display, "ImportWizardLogo.gif"); compileIcon = createImage(display, "compile.gif"); + compileWizardLogo = createImage(display, "CompileWizardLogo.gif"); } /** * Dispose of resources. @@ -91,6 +93,7 @@ public class ImageManager { diskImageWizardLogo.dispose(); importWizardLogo.dispose(); compileIcon.dispose(); + compileWizardLogo.dispose(); } /** * Creates an image. @@ -243,4 +246,13 @@ public class ImageManager { public Image getCompileIcon() { return compileIcon; } + + /** + * Returns the compileWizardLogo. + * @return Image + */ + public Image getCompileWizardLogo() { + return compileWizardLogo; + } + }