mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-02 19:29:17 +00:00
Added ImportWizard logo.
This commit is contained in:
parent
0bd753ae16
commit
c8c9b6f376
@ -46,6 +46,7 @@ public class ImageManager {
|
||||
private Image newDiskIcon;
|
||||
private Image aboutIcon;
|
||||
private Image diskImageWizardLogo;
|
||||
private Image importWizardLogo;
|
||||
/**
|
||||
* Construct the ImageManager.
|
||||
*/
|
||||
@ -65,6 +66,7 @@ public class ImageManager {
|
||||
newDiskIcon = createImage(display, "newdisk.gif");
|
||||
aboutIcon = createImage(display, "about.gif");
|
||||
diskImageWizardLogo = createImage(display, "DiskImageWizardLogo.gif");
|
||||
importWizardLogo = createImage(display, "ImportWizardLogo.gif");
|
||||
}
|
||||
/**
|
||||
* Dispose of resources.
|
||||
@ -85,6 +87,7 @@ public class ImageManager {
|
||||
newDiskIcon.dispose();
|
||||
aboutIcon.dispose();
|
||||
diskImageWizardLogo.dispose();
|
||||
importWizardLogo.dispose();
|
||||
}
|
||||
/**
|
||||
* Creates an image.
|
||||
@ -221,4 +224,12 @@ public class ImageManager {
|
||||
public Image getDiskImageWizardLogo() {
|
||||
return diskImageWizardLogo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the importWizardLogo.
|
||||
* @return Image
|
||||
*/
|
||||
public Image getImportWizardLogo() {
|
||||
return importWizardLogo;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user