mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-08 11:31:22 +00:00
Added viewFileIcon.
This commit is contained in:
parent
2d1b20771e
commit
34351d2d14
@ -49,6 +49,7 @@ public class ImageManager {
|
|||||||
private Image importWizardLogo;
|
private Image importWizardLogo;
|
||||||
private Image compileIcon;
|
private Image compileIcon;
|
||||||
private Image compileWizardLogo;
|
private Image compileWizardLogo;
|
||||||
|
private Image viewFileIcon;
|
||||||
/**
|
/**
|
||||||
* Construct the ImageManager.
|
* Construct the ImageManager.
|
||||||
*/
|
*/
|
||||||
@ -71,6 +72,7 @@ public class ImageManager {
|
|||||||
importWizardLogo = createImage(display, "ImportWizardLogo.gif");
|
importWizardLogo = createImage(display, "ImportWizardLogo.gif");
|
||||||
compileIcon = createImage(display, "compile.gif");
|
compileIcon = createImage(display, "compile.gif");
|
||||||
compileWizardLogo = createImage(display, "CompileWizardLogo.gif");
|
compileWizardLogo = createImage(display, "CompileWizardLogo.gif");
|
||||||
|
viewFileIcon = createImage(display, "viewfile.gif");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Dispose of resources.
|
* Dispose of resources.
|
||||||
@ -94,6 +96,7 @@ public class ImageManager {
|
|||||||
importWizardLogo.dispose();
|
importWizardLogo.dispose();
|
||||||
compileIcon.dispose();
|
compileIcon.dispose();
|
||||||
compileWizardLogo.dispose();
|
compileWizardLogo.dispose();
|
||||||
|
viewFileIcon.dispose();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Creates an image.
|
* Creates an image.
|
||||||
@ -255,4 +258,11 @@ public class ImageManager {
|
|||||||
return compileWizardLogo;
|
return compileWizardLogo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the viewFileIcon.
|
||||||
|
* @return Image
|
||||||
|
*/
|
||||||
|
public Image getViewFileIcon() {
|
||||||
|
return viewFileIcon;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user