Methods Summary |
---|
public static javax.swing.Icon | createFrameCloseIcon()
if (frame_closeIcon == null) {
frame_closeIcon = new FrameButtonIcon("window.closebutton");
}
return frame_closeIcon;
|
public static javax.swing.Icon | createFrameIconifyIcon()
if (frame_iconifyIcon == null) {
frame_iconifyIcon = new FrameButtonIcon("window.minbutton");
}
return frame_iconifyIcon;
|
public static javax.swing.Icon | createFrameMaximizeIcon()
if (frame_maxIcon == null) {
frame_maxIcon = new FrameButtonIcon("window.maxbutton");
}
return frame_maxIcon;
|
public static javax.swing.Icon | createFrameMinimizeIcon()
if (frame_minIcon == null) {
frame_minIcon = new FrameButtonIcon("window.restorebutton");
}
return frame_minIcon;
|
public static javax.swing.Icon | createFrameResizeIcon()
if(frame_resizeIcon == null)
frame_resizeIcon = new ResizeIcon();
return frame_resizeIcon;
|
public static javax.swing.Icon | getCheckBoxIcon()
if (checkBoxIcon == null) {
checkBoxIcon = new CheckBoxIcon();
}
return checkBoxIcon;
|
public static javax.swing.Icon | getCheckBoxMenuItemIcon()
if (checkBoxMenuItemIcon == null) {
checkBoxMenuItemIcon = new CheckBoxMenuItemIcon();
}
return checkBoxMenuItemIcon;
|
public static javax.swing.Icon | getMenuArrowIcon()
if (menuArrowIcon == null) {
menuArrowIcon = new MenuArrowIcon();
}
return menuArrowIcon;
|
public static javax.swing.Icon | getMenuItemArrowIcon()
if (menuItemArrowIcon == null) {
menuItemArrowIcon = new MenuItemArrowIcon();
}
return menuItemArrowIcon;
|
public static javax.swing.Icon | getMenuItemCheckIcon()
if (menuItemCheckIcon == null) {
menuItemCheckIcon = new MenuItemCheckIcon();
}
return menuItemCheckIcon;
|
public static javax.swing.Icon | getRadioButtonIcon()
if (radioButtonIcon == null) {
radioButtonIcon = new RadioButtonIcon();
}
return radioButtonIcon;
|
public static javax.swing.Icon | getRadioButtonMenuItemIcon()
if (radioButtonMenuItemIcon == null) {
radioButtonMenuItemIcon = new RadioButtonMenuItemIcon();
}
return radioButtonMenuItemIcon;
|