mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-11-19 16:33:00 +00:00
Added SaveAs icon.
This commit is contained in:
parent
9a3e36d142
commit
b1d2b65b89
@ -50,6 +50,7 @@ public class ImageManager {
|
||||
private Image compileIcon;
|
||||
private Image compileWizardLogo;
|
||||
private Image viewFileIcon;
|
||||
private Image saveAsIcon;
|
||||
/**
|
||||
* Construct the ImageManager.
|
||||
*/
|
||||
@ -73,6 +74,7 @@ public class ImageManager {
|
||||
compileIcon = createImage(display, "compile.gif");
|
||||
compileWizardLogo = createImage(display, "CompileWizardLogo.gif");
|
||||
viewFileIcon = createImage(display, "viewfile.gif");
|
||||
saveAsIcon = createImage(display, "saveas.gif");
|
||||
}
|
||||
/**
|
||||
* Dispose of resources.
|
||||
@ -97,6 +99,7 @@ public class ImageManager {
|
||||
compileIcon.dispose();
|
||||
compileWizardLogo.dispose();
|
||||
viewFileIcon.dispose();
|
||||
saveAsIcon.dispose();
|
||||
}
|
||||
/**
|
||||
* Creates an image.
|
||||
@ -265,4 +268,12 @@ public class ImageManager {
|
||||
public Image getViewFileIcon() {
|
||||
return viewFileIcon;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the saveAsIcon.
|
||||
* @return Image
|
||||
*/
|
||||
public Image getSaveAsIcon() {
|
||||
return saveAsIcon;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user