WindowsLookAndFeelpublic class WindowsLookAndFeel extends BasicLookAndFeel Implements the Windows95/98/NT/2000 Look and Feel.
UI classes not implemented specifically for Windows will
default to those implemented in Basic.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is appropriate
for short term storage or RMI between applications running the same
version of Swing. A future release of Swing will provide support for
long term persistence. |
Fields Summary |
---|
private Toolkit | toolkit | private boolean | updatePending | private boolean | useSystemFontSettings | private boolean | useSystemFontSizeSettings | private DesktopProperty | xpStyleColorName | private static boolean | isMnemonicHidden | private static boolean | isClassicWindows |
Methods Summary |
---|
protected javax.swing.Action | createAudioAction(java.lang.Object key)Returns an Action .
This Action contains the information and logic to render an
auditory cue. The Object that is passed to this
method contains the information needed to render the auditory
cue. Normally, this Object is a String
that points to a Toolkit desktopProperty .
This desktopProperty is resolved by AWT and the
Windows OS.
This Action 's actionPerformed method
is fired by the playSound method.
if (key != null) {
String audioKey = (String)key;
String audioValue = (String)UIManager.get(key);
return new AudioAction(audioKey, audioValue);
} else {
return null;
}
| public java.lang.String | getDescription()
return "The Microsoft Windows Look and Feel";
| private java.lang.Object | getDesktopFontValue(java.lang.String fontName, java.lang.Object backup, java.awt.Toolkit kit)If we support loading of fonts from the desktop this will return
a DesktopProperty representing the font. If the font can't be
represented in the current encoding this will return null and
turn off the use of system fonts.
if (useSystemFontSettings) {
return new WindowsFontProperty(fontName, backup, kit);
}
return null;
| public java.lang.String | getID()
return "Windows";
| private java.lang.Object[] | getLazyValueDefaults()
Object buttonBorder =
new XPBorderValue("button.pushbutton",
new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders",
"getButtonBorder"));
Object textFieldBorder =
new XPBorderValue("edit",
new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders",
"getTextFieldBorder"));
Object textFieldMargin =
new XPValue(new InsetsUIResource(1, 5, 2, 4),
new InsetsUIResource(1, 1, 1, 1));
Object spinnerBorder = textFieldBorder;
Object comboBoxBorder = new XPBorderValue("combobox", textFieldBorder);
// For focus rectangle for cells and trees.
Object focusCellHighlightBorder = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsBorders",
"getFocusCellHighlightBorder");
Object etchedBorder = new SwingLazyValue(
"javax.swing.plaf.BorderUIResource",
"getEtchedBorderUIResource");
Object internalFrameBorder = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsBorders",
"getInternalFrameBorder");
Object loweredBevelBorder = new SwingLazyValue(
"javax.swing.plaf.BorderUIResource",
"getLoweredBevelBorderUIResource");
Object marginBorder = new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders$MarginBorder");
Object menuBarBorder = new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders",
"getMenuBarBorder");
Object popupMenuBorder = new XPBorderValue("menu",
new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders",
"getInternalFrameBorder"));
// *** ProgressBar
Object progressBarBorder = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsBorders",
"getProgressBarBorder");
Object radioButtonBorder = new SwingLazyValue(
"javax.swing.plaf.basic.BasicBorders",
"getRadioButtonBorder");
Object scrollPaneBorder =
new XPBorderValue("listbox", textFieldBorder);
Object tableScrollPaneBorder =
new XPBorderValue("listbox", loweredBevelBorder);
Object tableHeaderBorder = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsBorders",
"getTableHeaderBorder");
// *** ToolBar
Object toolBarBorder = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsBorders",
"getToolBarBorder");
// *** ToolTips
Object toolTipBorder = new SwingLazyValue(
"javax.swing.plaf.BorderUIResource",
"getBlackLineBorderUIResource");
Object checkBoxIcon = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsIconFactory",
"getCheckBoxIcon");
Object radioButtonIcon = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsIconFactory",
"getRadioButtonIcon");
Object menuItemCheckIcon = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsIconFactory",
"getMenuItemCheckIcon");
Object menuItemArrowIcon = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsIconFactory",
"getMenuItemArrowIcon");
Object menuArrowIcon = new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsIconFactory",
"getMenuArrowIcon");
Object[] lazyDefaults = {
"Button.border", buttonBorder,
"CheckBox.border", radioButtonBorder,
"ComboBox.border", comboBoxBorder,
"DesktopIcon.border", internalFrameBorder,
"FormattedTextField.border", textFieldBorder,
"FormattedTextField.margin", textFieldMargin,
"InternalFrame.border", internalFrameBorder,
"List.focusCellHighlightBorder", focusCellHighlightBorder,
"Table.focusCellHighlightBorder", focusCellHighlightBorder,
"Menu.border", marginBorder,
"MenuBar.border", menuBarBorder,
"MenuItem.border", marginBorder,
"PasswordField.border", textFieldBorder,
"PasswordField.margin", textFieldMargin,
"PopupMenu.border", popupMenuBorder,
"ProgressBar.border", progressBarBorder,
"RadioButton.border", radioButtonBorder,
"ScrollPane.border", scrollPaneBorder,
"Spinner.border", spinnerBorder,
"Table.scrollPaneBorder", tableScrollPaneBorder,
"TableHeader.cellBorder", tableHeaderBorder,
"TextField.border", textFieldBorder,
"TextField.margin", textFieldMargin,
"TitledBorder.border",
new XPBorderValue("button.groupbox", etchedBorder),
"ToggleButton.border", radioButtonBorder,
"ToolBar.border", toolBarBorder,
"ToolTip.border", toolTipBorder,
"CheckBox.icon", checkBoxIcon,
"Menu.arrowIcon", menuArrowIcon,
"MenuItem.checkIcon", menuItemCheckIcon,
"MenuItem.arrowIcon", menuItemArrowIcon,
"RadioButton.icon", radioButtonIcon,
"InternalFrame.layoutTitlePaneAtOrigin",
new XPValue(Boolean.TRUE, Boolean.FALSE),
};
return lazyDefaults;
| public java.lang.String | getName()
return "Windows";
| protected void | initClassDefaults(javax.swing.UIDefaults table)Initialize the uiClassID to BasicComponentUI mapping.
The JComponent classes define their own uiClassID constants
(see AbstractComponent.getUIClassID). This table must
map those constants to a BasicComponentUI class of the
appropriate type.
super.initClassDefaults(table);
final String windowsPackageName = "com.sun.java.swing.plaf.windows.";
Object[] uiDefaults = {
"ButtonUI", windowsPackageName + "WindowsButtonUI",
"CheckBoxUI", windowsPackageName + "WindowsCheckBoxUI",
"CheckBoxMenuItemUI", windowsPackageName + "WindowsCheckBoxMenuItemUI",
"LabelUI", windowsPackageName + "WindowsLabelUI",
"RadioButtonUI", windowsPackageName + "WindowsRadioButtonUI",
"RadioButtonMenuItemUI", windowsPackageName + "WindowsRadioButtonMenuItemUI",
"ToggleButtonUI", windowsPackageName + "WindowsToggleButtonUI",
"ProgressBarUI", windowsPackageName + "WindowsProgressBarUI",
"SliderUI", windowsPackageName + "WindowsSliderUI",
"SeparatorUI", windowsPackageName + "WindowsSeparatorUI",
"SplitPaneUI", windowsPackageName + "WindowsSplitPaneUI",
"SpinnerUI", windowsPackageName + "WindowsSpinnerUI",
"TabbedPaneUI", windowsPackageName + "WindowsTabbedPaneUI",
"TextAreaUI", windowsPackageName + "WindowsTextAreaUI",
"TextFieldUI", windowsPackageName + "WindowsTextFieldUI",
"PasswordFieldUI", windowsPackageName + "WindowsPasswordFieldUI",
"TextPaneUI", windowsPackageName + "WindowsTextPaneUI",
"EditorPaneUI", windowsPackageName + "WindowsEditorPaneUI",
"TreeUI", windowsPackageName + "WindowsTreeUI",
"ToolBarUI", windowsPackageName + "WindowsToolBarUI",
"ToolBarSeparatorUI", windowsPackageName + "WindowsToolBarSeparatorUI",
"ComboBoxUI", windowsPackageName + "WindowsComboBoxUI",
"TableHeaderUI", windowsPackageName + "WindowsTableHeaderUI",
"InternalFrameUI", windowsPackageName + "WindowsInternalFrameUI",
"DesktopPaneUI", windowsPackageName + "WindowsDesktopPaneUI",
"DesktopIconUI", windowsPackageName + "WindowsDesktopIconUI",
"FileChooserUI", windowsPackageName + "WindowsFileChooserUI",
"MenuUI", windowsPackageName + "WindowsMenuUI",
"MenuItemUI", windowsPackageName + "WindowsMenuItemUI",
"MenuBarUI", windowsPackageName + "WindowsMenuBarUI",
"PopupMenuUI", windowsPackageName + "WindowsPopupMenuUI",
"ScrollBarUI", windowsPackageName + "WindowsScrollBarUI",
"RootPaneUI", windowsPackageName + "WindowsRootPaneUI"
};
table.putDefaults(uiDefaults);
| protected void | initComponentDefaults(javax.swing.UIDefaults table)
super.initComponentDefaults( table );
initResourceBundle(table);
// *** Shared Fonts
Integer twelve = new Integer(12);
Integer eight = new Integer(8);
Integer ten = new Integer(10);
Integer fontPlain = new Integer(Font.PLAIN);
Integer fontBold = new Integer(Font.BOLD);
Object dialogPlain12 = new SwingLazyValue(
"javax.swing.plaf.FontUIResource",
null,
new Object[] {"Dialog", fontPlain, twelve});
Object sansSerifPlain12 = new SwingLazyValue(
"javax.swing.plaf.FontUIResource",
null,
new Object[] {"SansSerif", fontPlain, twelve});
Object monospacedPlain12 = new SwingLazyValue(
"javax.swing.plaf.FontUIResource",
null,
new Object[] {"MonoSpaced", fontPlain, twelve});
Object dialogBold12 = new SwingLazyValue(
"javax.swing.plaf.FontUIResource",
null,
new Object[] {"Dialog", fontBold, twelve});
// *** Colors
// XXX - some of these doens't seem to be used
ColorUIResource red = new ColorUIResource(Color.red);
ColorUIResource black = new ColorUIResource(Color.black);
ColorUIResource white = new ColorUIResource(Color.white);
ColorUIResource yellow = new ColorUIResource(Color.yellow);
ColorUIResource gray = new ColorUIResource(Color.gray);
ColorUIResource lightGray = new ColorUIResource(Color.lightGray);
ColorUIResource darkGray = new ColorUIResource(Color.darkGray);
ColorUIResource scrollBarTrack = lightGray;
ColorUIResource scrollBarTrackHighlight = darkGray;
// Set the flag which determines which version of Windows should
// be rendered. This flag only need to be set once.
// if version <= 4.0 then the classic LAF should be loaded.
String osVersion = System.getProperty("os.version");
if (osVersion != null) {
try {
Float version = Float.valueOf(osVersion);
if (version.floatValue() <= 4.0) {
isClassicWindows = true;
} else {
isClassicWindows = false;
}
} catch (NumberFormatException ex) {
isClassicWindows = false;
}
}
// *** Tree
ColorUIResource treeSelection = new ColorUIResource(0, 0, 128);
Object treeExpandedIcon = WindowsTreeUI.ExpandedIcon.createExpandedIcon();
Object treeCollapsedIcon = WindowsTreeUI.CollapsedIcon.createCollapsedIcon();
// *** Text
Object fieldInputMap = new UIDefaults.LazyInputMap(new Object[] {
"control C", DefaultEditorKit.copyAction,
"control V", DefaultEditorKit.pasteAction,
"control X", DefaultEditorKit.cutAction,
"COPY", DefaultEditorKit.copyAction,
"PASTE", DefaultEditorKit.pasteAction,
"CUT", DefaultEditorKit.cutAction,
"control INSERT", DefaultEditorKit.copyAction,
"shift INSERT", DefaultEditorKit.pasteAction,
"shift DELETE", DefaultEditorKit.cutAction,
"control A", DefaultEditorKit.selectAllAction,
"control BACK_SLASH", "unselect"/*DefaultEditorKit.unselectAction*/,
"shift LEFT", DefaultEditorKit.selectionBackwardAction,
"shift RIGHT", DefaultEditorKit.selectionForwardAction,
"control LEFT", DefaultEditorKit.previousWordAction,
"control RIGHT", DefaultEditorKit.nextWordAction,
"control shift LEFT", DefaultEditorKit.selectionPreviousWordAction,
"control shift RIGHT", DefaultEditorKit.selectionNextWordAction,
"HOME", DefaultEditorKit.beginLineAction,
"END", DefaultEditorKit.endLineAction,
"shift HOME", DefaultEditorKit.selectionBeginLineAction,
"shift END", DefaultEditorKit.selectionEndLineAction,
"BACK_SPACE", DefaultEditorKit.deletePrevCharAction,
"ctrl H", DefaultEditorKit.deletePrevCharAction,
"DELETE", DefaultEditorKit.deleteNextCharAction,
"RIGHT", DefaultEditorKit.forwardAction,
"LEFT", DefaultEditorKit.backwardAction,
"KP_RIGHT", DefaultEditorKit.forwardAction,
"KP_LEFT", DefaultEditorKit.backwardAction,
"ENTER", JTextField.notifyAction,
"control shift O", "toggle-componentOrientation"/*DefaultEditorKit.toggleComponentOrientation*/
});
Object passwordInputMap = new UIDefaults.LazyInputMap(new Object[] {
"control C", DefaultEditorKit.copyAction,
"control V", DefaultEditorKit.pasteAction,
"control X", DefaultEditorKit.cutAction,
"COPY", DefaultEditorKit.copyAction,
"PASTE", DefaultEditorKit.pasteAction,
"CUT", DefaultEditorKit.cutAction,
"control INSERT", DefaultEditorKit.copyAction,
"shift INSERT", DefaultEditorKit.pasteAction,
"shift DELETE", DefaultEditorKit.cutAction,
"control A", DefaultEditorKit.selectAllAction,
"control BACK_SLASH", "unselect"/*DefaultEditorKit.unselectAction*/,
"shift LEFT", DefaultEditorKit.selectionBackwardAction,
"shift RIGHT", DefaultEditorKit.selectionForwardAction,
"control LEFT", DefaultEditorKit.beginLineAction,
"control RIGHT", DefaultEditorKit.endLineAction,
"control shift LEFT", DefaultEditorKit.selectionBeginLineAction,
"control shift RIGHT", DefaultEditorKit.selectionEndLineAction,
"HOME", DefaultEditorKit.beginLineAction,
"END", DefaultEditorKit.endLineAction,
"shift HOME", DefaultEditorKit.selectionBeginLineAction,
"shift END", DefaultEditorKit.selectionEndLineAction,
"BACK_SPACE", DefaultEditorKit.deletePrevCharAction,
"ctrl H", DefaultEditorKit.deletePrevCharAction,
"DELETE", DefaultEditorKit.deleteNextCharAction,
"RIGHT", DefaultEditorKit.forwardAction,
"LEFT", DefaultEditorKit.backwardAction,
"KP_RIGHT", DefaultEditorKit.forwardAction,
"KP_LEFT", DefaultEditorKit.backwardAction,
"ENTER", JTextField.notifyAction,
"control shift O", "toggle-componentOrientation"/*DefaultEditorKit.toggleComponentOrientation*/
});
Object multilineInputMap = new UIDefaults.LazyInputMap(new Object[] {
"control C", DefaultEditorKit.copyAction,
"control V", DefaultEditorKit.pasteAction,
"control X", DefaultEditorKit.cutAction,
"COPY", DefaultEditorKit.copyAction,
"PASTE", DefaultEditorKit.pasteAction,
"CUT", DefaultEditorKit.cutAction,
"control INSERT", DefaultEditorKit.copyAction,
"shift INSERT", DefaultEditorKit.pasteAction,
"shift DELETE", DefaultEditorKit.cutAction,
"shift LEFT", DefaultEditorKit.selectionBackwardAction,
"shift RIGHT", DefaultEditorKit.selectionForwardAction,
"control LEFT", DefaultEditorKit.previousWordAction,
"control RIGHT", DefaultEditorKit.nextWordAction,
"control shift LEFT", DefaultEditorKit.selectionPreviousWordAction,
"control shift RIGHT", DefaultEditorKit.selectionNextWordAction,
"control A", DefaultEditorKit.selectAllAction,
"control BACK_SLASH", "unselect"/*DefaultEditorKit.unselectAction*/,
"HOME", DefaultEditorKit.beginLineAction,
"END", DefaultEditorKit.endLineAction,
"shift HOME", DefaultEditorKit.selectionBeginLineAction,
"shift END", DefaultEditorKit.selectionEndLineAction,
"control HOME", DefaultEditorKit.beginAction,
"control END", DefaultEditorKit.endAction,
"control shift HOME", DefaultEditorKit.selectionBeginAction,
"control shift END", DefaultEditorKit.selectionEndAction,
"UP", DefaultEditorKit.upAction,
"DOWN", DefaultEditorKit.downAction,
"BACK_SPACE", DefaultEditorKit.deletePrevCharAction,
"ctrl H", DefaultEditorKit.deletePrevCharAction,
"DELETE", DefaultEditorKit.deleteNextCharAction,
"RIGHT", DefaultEditorKit.forwardAction,
"LEFT", DefaultEditorKit.backwardAction,
"KP_RIGHT", DefaultEditorKit.forwardAction,
"KP_LEFT", DefaultEditorKit.backwardAction,
"PAGE_UP", DefaultEditorKit.pageUpAction,
"PAGE_DOWN", DefaultEditorKit.pageDownAction,
"shift PAGE_UP", "selection-page-up",
"shift PAGE_DOWN", "selection-page-down",
"ctrl shift PAGE_UP", "selection-page-left",
"ctrl shift PAGE_DOWN", "selection-page-right",
"shift UP", DefaultEditorKit.selectionUpAction,
"shift DOWN", DefaultEditorKit.selectionDownAction,
"ENTER", DefaultEditorKit.insertBreakAction,
"TAB", DefaultEditorKit.insertTabAction,
"control T", "next-link-action",
"control shift T", "previous-link-action",
"control SPACE", "activate-link-action",
"control shift O", "toggle-componentOrientation"/*DefaultEditorKit.toggleComponentOrientation*/
});
Object menuItemAcceleratorDelimiter = new String("+");
Object ControlBackgroundColor = new DesktopProperty(
"win.3d.backgroundColor",
table.get("control"),
toolkit);
Object ControlLightColor = new DesktopProperty(
"win.3d.lightColor",
table.get("controlHighlight"),
toolkit);
Object ControlHighlightColor = new DesktopProperty(
"win.3d.highlightColor",
table.get("controlLtHighlight"),
toolkit);
Object ControlShadowColor = new DesktopProperty(
"win.3d.shadowColor",
table.get("controlShadow"),
toolkit);
Object ControlDarkShadowColor = new DesktopProperty(
"win.3d.darkShadowColor",
table.get("controlDkShadow"),
toolkit);
Object ControlTextColor = new DesktopProperty(
"win.button.textColor",
table.get("controlText"),
toolkit);
Object MenuBackgroundColor = new DesktopProperty(
"win.menu.backgroundColor",
table.get("menu"),
toolkit);
Object MenuBarBackgroundColor = new DesktopProperty(
"win.menubar.backgroundColor",
table.get("menu"),
toolkit);
Object MenuTextColor = new DesktopProperty(
"win.menu.textColor",
table.get("menuText"),
toolkit);
Object SelectionBackgroundColor = new DesktopProperty(
"win.item.highlightColor",
table.get("textHighlight"),
toolkit);
Object SelectionTextColor = new DesktopProperty(
"win.item.highlightTextColor",
table.get("textHighlightText"),
toolkit);
Object WindowBackgroundColor = new DesktopProperty(
"win.frame.backgroundColor",
table.get("window"),
toolkit);
Object WindowTextColor = new DesktopProperty(
"win.frame.textColor",
table.get("windowText"),
toolkit);
Object WindowBorderWidth = new DesktopProperty(
"win.frame.sizingBorderWidth",
new Integer(1),
toolkit);
Object TitlePaneHeight = new DesktopProperty(
"win.frame.captionHeight",
new Integer(18),
toolkit);
Object TitleButtonWidth = new DesktopProperty(
"win.frame.captionButtonWidth",
new Integer(16),
toolkit);
Object TitleButtonHeight = new DesktopProperty(
"win.frame.captionButtonHeight",
new Integer(16),
toolkit);
Object InactiveTextColor = new DesktopProperty(
"win.text.grayedTextColor",
table.get("textInactiveText"),
toolkit);
Object ScrollbarBackgroundColor = new DesktopProperty(
"win.scrollbar.backgroundColor",
table.get("scrollbar"),
toolkit);
Object TextBackground = new XPColorValue("edit.fillcolor",
WindowBackgroundColor);
Object ReadOnlyTextBackground = new XPColorValue("edit.edittext(readonly).fillcolor",
ControlBackgroundColor);
Object DisabledTextBackground = new XPColorValue("edit.edittext(disabled).fillcolor",
ControlBackgroundColor);
Object MenuFont = dialogPlain12;
Object FixedControlFont = monospacedPlain12;
Object ControlFont = dialogPlain12;
Object MessageFont = dialogPlain12;
Object WindowFont = dialogBold12;
Object ToolTipFont = sansSerifPlain12;
Object IconFont = ControlFont;
Object scrollBarWidth = new DesktopProperty("win.scrollbar.width",
new Integer(16), toolkit);
Object showMnemonics = new DesktopProperty("win.menu.keyboardCuesOn",
Boolean.TRUE, toolkit);
if (useSystemFontSettings) {
MenuFont = getDesktopFontValue("win.menu.font", MenuFont, toolkit);
FixedControlFont = getDesktopFontValue("win.ansiFixed.font",
FixedControlFont, toolkit);
ControlFont = getDesktopFontValue("win.defaultGUI.font",
ControlFont, toolkit);
MessageFont = getDesktopFontValue("win.messagebox.font",
MessageFont, toolkit);
WindowFont = getDesktopFontValue("win.frame.captionFont",
WindowFont, toolkit);
IconFont = getDesktopFontValue("win.icon.font",
IconFont, toolkit);
ToolTipFont = getDesktopFontValue("win.tooltip.font", ToolTipFont,
toolkit);
}
if (useSystemFontSizeSettings) {
MenuFont = new WindowsFontSizeProperty("win.menu.font.height",
toolkit, "Dialog", Font.PLAIN, 12);
FixedControlFont = new WindowsFontSizeProperty(
"win.ansiFixed.font.height", toolkit, "MonoSpaced",
Font.PLAIN, 12);
ControlFont = new WindowsFontSizeProperty(
"win.defaultGUI.font.height", toolkit, "Dialog",
Font.PLAIN, 12);
MessageFont = new WindowsFontSizeProperty(
"win.messagebox.font.height",
toolkit, "Dialog", Font.PLAIN, 12);
WindowFont = new WindowsFontSizeProperty(
"win.frame.captionFont.height", toolkit,
"Dialog", Font.BOLD, 12);
ToolTipFont = new WindowsFontSizeProperty(
"win.tooltip.font.height", toolkit, "SansSerif",
Font.PLAIN, 12);
IconFont = new WindowsFontSizeProperty(
"win.icon.font.height", toolkit, "Dialog",
Font.PLAIN, 12);
}
if (!(this instanceof WindowsClassicLookAndFeel) &&
System.getProperty("os.name").startsWith("Windows XP") &&
AccessController.doPrivileged(new GetPropertyAction("swing.noxp")) == null) {
// This desktop property is not used directly, but is needed to
// trigger realoading of UI's.
this.xpStyleColorName =
new DesktopProperty("win.xpstyle.colorName", null, toolkit) {
/*initializer*/ {
// This call adds a property change listener for the property,
// which triggers a call to updateUI(). The value returned
// is not interesting here.
getValueFromDesktop();
}
protected void updateUI() {
super.updateUI();
// Make sure property change listener is readded each time
getValueFromDesktop();
}
};
}
Object[] defaults = {
// *** Auditory Feedback
// this key defines which of the various cues to render
// Overridden from BasicL&F. This L&F should play all sounds
// all the time. The infrastructure decides what to play.
// This is disabled until sound bugs can be resolved.
"AuditoryCues.playList", null, // table.get("AuditoryCues.cueList"),
"Application.useSystemFontSettings", Boolean.valueOf(useSystemFontSettings),
"TextField.focusInputMap", fieldInputMap,
"PasswordField.focusInputMap", passwordInputMap,
"TextArea.focusInputMap", multilineInputMap,
"TextPane.focusInputMap", multilineInputMap,
"EditorPane.focusInputMap", multilineInputMap,
// Buttons
"Button.font", ControlFont,
"Button.background", ControlBackgroundColor,
"Button.foreground", ControlTextColor,
"Button.shadow", ControlShadowColor,
"Button.darkShadow", ControlDarkShadowColor,
"Button.light", ControlLightColor,
"Button.highlight", ControlHighlightColor,
"Button.disabledForeground", InactiveTextColor,
"Button.disabledShadow", ControlHighlightColor,
"Button.focus", black,
"Button.dashedRectGapX", new Integer(5),
"Button.dashedRectGapY", new Integer(4),
"Button.dashedRectGapWidth", new Integer(10),
"Button.dashedRectGapHeight", new Integer(8),
"Button.textShiftOffset", new Integer(1),
// W2K keyboard navigation hidding.
"Button.showMnemonics", showMnemonics,
"Button.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"SPACE", "pressed",
"released SPACE", "released"
}),
"CheckBox.font", ControlFont,
"CheckBox.interiorBackground", WindowBackgroundColor,
"CheckBox.background", ControlBackgroundColor,
"CheckBox.foreground", ControlTextColor,
"CheckBox.shadow", ControlShadowColor,
"CheckBox.darkShadow", ControlDarkShadowColor,
"CheckBox.light", ControlLightColor,
"CheckBox.highlight", ControlHighlightColor,
"CheckBox.focus", black,
"CheckBox.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"SPACE", "pressed",
"released SPACE", "released"
}),
"CheckBoxMenuItem.font", MenuFont,
"CheckBoxMenuItem.background", MenuBackgroundColor,
"CheckBoxMenuItem.foreground", MenuTextColor,
"CheckBoxMenuItem.selectionForeground", SelectionTextColor,
"CheckBoxMenuItem.selectionBackground", SelectionBackgroundColor,
"CheckBoxMenuItem.acceleratorForeground", MenuTextColor,
"CheckBoxMenuItem.acceleratorSelectionForeground", SelectionTextColor,
"CheckBoxMenuItem.commandSound", "win.sound.menuCommand",
"ComboBox.font", ControlFont,
"ComboBox.background", WindowBackgroundColor,
"ComboBox.foreground", WindowTextColor,
"ComboBox.buttonBackground", ControlBackgroundColor,
"ComboBox.buttonShadow", ControlShadowColor,
"ComboBox.buttonDarkShadow", ControlDarkShadowColor,
"ComboBox.buttonHighlight", ControlHighlightColor,
"ComboBox.selectionBackground", SelectionBackgroundColor,
"ComboBox.selectionForeground", SelectionTextColor,
"ComboBox.disabledBackground", ControlBackgroundColor,
"ComboBox.disabledForeground", InactiveTextColor,
"ComboBox.ancestorInputMap", new UIDefaults.LazyInputMap(new Object[] {
"ESCAPE", "hidePopup",
"PAGE_UP", "pageUpPassThrough",
"PAGE_DOWN", "pageDownPassThrough",
"HOME", "homePassThrough",
"END", "endPassThrough",
"DOWN", "selectNext2",
"KP_DOWN", "selectNext2",
"UP", "selectPrevious2",
"KP_UP", "selectPrevious2",
"ENTER", "enterPressed",
"F4", "togglePopup"
}),
// DeskTop.
"Desktop.background", new DesktopProperty(
"win.desktop.backgroundColor",
table.get("desktop"),
toolkit),
"Desktop.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ctrl F5", "restore",
"ctrl F4", "close",
"ctrl F7", "move",
"ctrl F8", "resize",
"RIGHT", "right",
"KP_RIGHT", "right",
"LEFT", "left",
"KP_LEFT", "left",
"UP", "up",
"KP_UP", "up",
"DOWN", "down",
"KP_DOWN", "down",
"ESCAPE", "escape",
"ctrl F9", "minimize",
"ctrl F10", "maximize",
"ctrl F6", "selectNextFrame",
"ctrl TAB", "selectNextFrame",
"ctrl alt F6", "selectNextFrame",
"shift ctrl alt F6", "selectPreviousFrame",
"ctrl F12", "navigateNext",
"shift ctrl F12", "navigatePrevious"
}),
// DesktopIcon
"DesktopIcon.width", new Integer(160),
"EditorPane.font", ControlFont,
"EditorPane.background", WindowBackgroundColor,
"EditorPane.foreground", WindowTextColor,
"EditorPane.selectionBackground", SelectionBackgroundColor,
"EditorPane.selectionForeground", SelectionTextColor,
"EditorPane.caretForeground", WindowTextColor,
"EditorPane.inactiveForeground", InactiveTextColor,
"FileChooser.homeFolderIcon", new LazyWindowsIcon(null,
"icons/HomeFolder.gif"),
"FileChooser.listFont", IconFont,
"FileChooser.listViewBackground", new XPColorValue("listview.fillcolor",
WindowBackgroundColor),
"FileChooser.listViewBorder", new XPBorderValue("listview",
new SwingLazyValue(
"javax.swing.plaf.BorderUIResource",
"getLoweredBevelBorderUIResource")),
"FileChooser.listViewIcon", new LazyWindowsIcon("fileChooserIcon ListView",
"icons/ListView.gif"),
"FileChooser.listViewWindowsStyle", Boolean.TRUE,
"FileChooser.detailsViewIcon", new LazyWindowsIcon("fileChooserIcon DetailsView",
"icons/DetailsView.gif"),
"FileChooser.upFolderIcon", new LazyWindowsIcon("fileChooserIcon UpFolder",
"icons/UpFolder.gif"),
"FileChooser.newFolderIcon", new LazyWindowsIcon("fileChooserIcon NewFolder",
"icons/NewFolder.gif"),
"FileChooser.useSystemExtensionHiding", Boolean.TRUE,
"FileChooser.lookInLabelMnemonic", new Integer(KeyEvent.VK_I),
"FileChooser.fileNameLabelMnemonic", new Integer(KeyEvent.VK_N),
"FileChooser.filesOfTypeLabelMnemonic", new Integer(KeyEvent.VK_T),
"FileChooser.usesSingleFilePane", Boolean.TRUE,
"FileChooser.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ESCAPE", "cancelSelection",
"F2", "editFileName",
"F5", "refresh",
"BACK_SPACE", "Go Up",
"ENTER", "approveSelection"
}),
"FileView.directoryIcon", SwingUtilities2.makeIcon(getClass(),
WindowsLookAndFeel.class,
"icons/Directory.gif"),
"FileView.fileIcon", SwingUtilities2.makeIcon(getClass(),
WindowsLookAndFeel.class,
"icons/File.gif"),
"FileView.computerIcon", SwingUtilities2.makeIcon(getClass(),
WindowsLookAndFeel.class,
"icons/Computer.gif"),
"FileView.hardDriveIcon", SwingUtilities2.makeIcon(getClass(),
WindowsLookAndFeel.class,
"icons/HardDrive.gif"),
"FileView.floppyDriveIcon", SwingUtilities2.makeIcon(getClass(),
WindowsLookAndFeel.class,
"icons/FloppyDrive.gif"),
"InternalFrame.titleFont", WindowFont,
"InternalFrame.titlePaneHeight", TitlePaneHeight,
"InternalFrame.titleButtonWidth", TitleButtonWidth,
"InternalFrame.titleButtonHeight", TitleButtonHeight,
"InternalFrame.borderColor", ControlBackgroundColor,
"InternalFrame.borderShadow", ControlShadowColor,
"InternalFrame.borderDarkShadow", ControlDarkShadowColor,
"InternalFrame.borderHighlight", ControlHighlightColor,
"InternalFrame.borderLight", ControlLightColor,
"InternalFrame.borderWidth", WindowBorderWidth,
"InternalFrame.minimizeIconBackground", ControlBackgroundColor,
"InternalFrame.resizeIconHighlight", ControlLightColor,
"InternalFrame.resizeIconShadow", ControlShadowColor,
"InternalFrame.activeBorderColor", new DesktopProperty(
"win.frame.activeBorderColor",
table.get("windowBorder"),
toolkit),
"InternalFrame.inactiveBorderColor", new DesktopProperty(
"win.frame.inactiveBorderColor",
table.get("windowBorder"),
toolkit),
"InternalFrame.activeTitleBackground", new DesktopProperty(
"win.frame.activeCaptionColor",
table.get("activeCaption"),
toolkit),
"InternalFrame.activeTitleGradient", new DesktopProperty(
"win.frame.activeCaptionGradientColor",
table.get("activeCaption"),
toolkit),
"InternalFrame.activeTitleForeground", new DesktopProperty(
"win.frame.captionTextColor",
table.get("activeCaptionText"),
toolkit),
"InternalFrame.inactiveTitleBackground", new DesktopProperty(
"win.frame.inactiveCaptionColor",
table.get("inactiveCaption"),
toolkit),
"InternalFrame.inactiveTitleGradient", new DesktopProperty(
"win.frame.inactiveCaptionGradientColor",
table.get("inactiveCaption"),
toolkit),
"InternalFrame.inactiveTitleForeground", new DesktopProperty(
"win.frame.inactiveCaptionTextColor",
table.get("inactiveCaptionText"),
toolkit),
"InternalFrame.maximizeIcon",
WindowsIconFactory.createFrameMaximizeIcon(),
"InternalFrame.minimizeIcon",
WindowsIconFactory.createFrameMinimizeIcon(),
"InternalFrame.iconifyIcon",
WindowsIconFactory.createFrameIconifyIcon(),
"InternalFrame.closeIcon",
WindowsIconFactory.createFrameCloseIcon(),
"InternalFrame.icon",
new SwingLazyValue(
"com.sun.java.swing.plaf.windows.WindowsInternalFrameTitlePane$ScalableIconUIResource",
// The constructor takes one arg: an array of UIDefaults.LazyValue
// representing the icons
new Object[][] { {
SwingUtilities2.makeIcon(getClass(), BasicLookAndFeel.class, "icons/JavaCup16.png"),
SwingUtilities2.makeIcon(getClass(), WindowsLookAndFeel.class, "icons/JavaCup32.png")
} }),
// Internal Frame Auditory Cue Mappings
"InternalFrame.closeSound", "win.sound.close",
"InternalFrame.maximizeSound", "win.sound.maximize",
"InternalFrame.minimizeSound", "win.sound.minimize",
"InternalFrame.restoreDownSound", "win.sound.restoreDown",
"InternalFrame.restoreUpSound", "win.sound.restoreUp",
"InternalFrame.windowBindings", new Object[] {
"shift ESCAPE", "showSystemMenu",
"ctrl SPACE", "showSystemMenu",
"ESCAPE", "hideSystemMenu"},
// Label
"Label.font", ControlFont,
"Label.background", ControlBackgroundColor,
"Label.foreground", ControlTextColor,
"Label.disabledForeground", InactiveTextColor,
"Label.disabledShadow", ControlHighlightColor,
// List.
"List.font", ControlFont,
"List.background", WindowBackgroundColor,
"List.foreground", WindowTextColor,
"List.selectionBackground", SelectionBackgroundColor,
"List.selectionForeground", SelectionTextColor,
"List.lockToPositionOnScroll", Boolean.TRUE,
"List.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ctrl C", "copy",
"ctrl V", "paste",
"ctrl X", "cut",
"COPY", "copy",
"PASTE", "paste",
"CUT", "cut",
"UP", "selectPreviousRow",
"KP_UP", "selectPreviousRow",
"shift UP", "selectPreviousRowExtendSelection",
"shift KP_UP", "selectPreviousRowExtendSelection",
"ctrl shift UP", "selectPreviousRowExtendSelection",
"ctrl shift KP_UP", "selectPreviousRowExtendSelection",
"ctrl UP", "selectPreviousRowChangeLead",
"ctrl KP_UP", "selectPreviousRowChangeLead",
"DOWN", "selectNextRow",
"KP_DOWN", "selectNextRow",
"shift DOWN", "selectNextRowExtendSelection",
"shift KP_DOWN", "selectNextRowExtendSelection",
"ctrl shift DOWN", "selectNextRowExtendSelection",
"ctrl shift KP_DOWN", "selectNextRowExtendSelection",
"ctrl DOWN", "selectNextRowChangeLead",
"ctrl KP_DOWN", "selectNextRowChangeLead",
"LEFT", "selectPreviousColumn",
"KP_LEFT", "selectPreviousColumn",
"shift LEFT", "selectPreviousColumnExtendSelection",
"shift KP_LEFT", "selectPreviousColumnExtendSelection",
"ctrl shift LEFT", "selectPreviousColumnExtendSelection",
"ctrl shift KP_LEFT", "selectPreviousColumnExtendSelection",
"ctrl LEFT", "selectPreviousColumnChangeLead",
"ctrl KP_LEFT", "selectPreviousColumnChangeLead",
"RIGHT", "selectNextColumn",
"KP_RIGHT", "selectNextColumn",
"shift RIGHT", "selectNextColumnExtendSelection",
"shift KP_RIGHT", "selectNextColumnExtendSelection",
"ctrl shift RIGHT", "selectNextColumnExtendSelection",
"ctrl shift KP_RIGHT", "selectNextColumnExtendSelection",
"ctrl RIGHT", "selectNextColumnChangeLead",
"ctrl KP_RIGHT", "selectNextColumnChangeLead",
"HOME", "selectFirstRow",
"shift HOME", "selectFirstRowExtendSelection",
"ctrl shift HOME", "selectFirstRowExtendSelection",
"ctrl HOME", "selectFirstRowChangeLead",
"END", "selectLastRow",
"shift END", "selectLastRowExtendSelection",
"ctrl shift END", "selectLastRowExtendSelection",
"ctrl END", "selectLastRowChangeLead",
"PAGE_UP", "scrollUp",
"shift PAGE_UP", "scrollUpExtendSelection",
"ctrl shift PAGE_UP", "scrollUpExtendSelection",
"ctrl PAGE_UP", "scrollUpChangeLead",
"PAGE_DOWN", "scrollDown",
"shift PAGE_DOWN", "scrollDownExtendSelection",
"ctrl shift PAGE_DOWN", "scrollDownExtendSelection",
"ctrl PAGE_DOWN", "scrollDownChangeLead",
"ctrl A", "selectAll",
"ctrl SLASH", "selectAll",
"ctrl BACK_SLASH", "clearSelection",
"SPACE", "addToSelection",
"ctrl SPACE", "toggleAndAnchor",
"shift SPACE", "extendTo",
"ctrl shift SPACE", "moveSelectionTo"
}),
// PopupMenu
"PopupMenu.font", MenuFont,
"PopupMenu.background", MenuBackgroundColor,
"PopupMenu.foreground", MenuTextColor,
"PopupMenu.popupSound", "win.sound.menuPopup",
// Menus
"Menu.font", MenuFont,
"Menu.foreground", MenuTextColor,
"Menu.background", MenuBackgroundColor,
"Menu.useMenuBarBackgroundForTopLevel", Boolean.TRUE,
"Menu.selectionForeground", SelectionTextColor,
"Menu.selectionBackground", SelectionBackgroundColor,
"Menu.acceleratorForeground", MenuTextColor,
"Menu.acceleratorSelectionForeground", SelectionTextColor,
"Menu.menuPopupOffsetX", new Integer(0),
"Menu.menuPopupOffsetY", new Integer(0),
"Menu.submenuPopupOffsetX", new Integer(-4),
"Menu.submenuPopupOffsetY", new Integer(-3),
"Menu.crossMenuMnemonic", Boolean.FALSE,
// MenuBar.
"MenuBar.font", MenuFont,
"MenuBar.background", new XPValue(MenuBarBackgroundColor,
MenuBackgroundColor),
"MenuBar.foreground", MenuTextColor,
"MenuBar.shadow", ControlShadowColor,
"MenuBar.highlight", ControlHighlightColor,
"MenuBar.windowBindings", new Object[] {
"F10", "takeFocus" },
"MenuItem.font", MenuFont,
"MenuItem.acceleratorFont", MenuFont,
"MenuItem.foreground", MenuTextColor,
"MenuItem.background", MenuBackgroundColor,
"MenuItem.selectionForeground", SelectionTextColor,
"MenuItem.selectionBackground", SelectionBackgroundColor,
"MenuItem.disabledForeground", InactiveTextColor,
"MenuItem.acceleratorForeground", MenuTextColor,
"MenuItem.acceleratorSelectionForeground", SelectionTextColor,
"MenuItem.acceleratorDelimiter", menuItemAcceleratorDelimiter,
// Menu Item Auditory Cue Mapping
"MenuItem.commandSound", "win.sound.menuCommand",
"RadioButton.font", ControlFont,
"RadioButton.interiorBackground", WindowBackgroundColor,
"RadioButton.background", ControlBackgroundColor,
"RadioButton.foreground", ControlTextColor,
"RadioButton.shadow", ControlShadowColor,
"RadioButton.darkShadow", ControlDarkShadowColor,
"RadioButton.light", ControlLightColor,
"RadioButton.highlight", ControlHighlightColor,
"RadioButton.focus", black,
"RadioButton.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"SPACE", "pressed",
"released SPACE", "released"
}),
"RadioButtonMenuItem.font", MenuFont,
"RadioButtonMenuItem.foreground", MenuTextColor,
"RadioButtonMenuItem.background", MenuBackgroundColor,
"RadioButtonMenuItem.selectionForeground", SelectionTextColor,
"RadioButtonMenuItem.selectionBackground", SelectionBackgroundColor,
"RadioButtonMenuItem.disabledForeground", InactiveTextColor,
"RadioButtonMenuItem.acceleratorForeground", MenuTextColor,
"RadioButtonMenuItem.acceleratorSelectionForeground", SelectionTextColor,
"RadioButtonMenuItem.commandSound", "win.sound.menuCommand",
// OptionPane.
"OptionPane.font", MessageFont,
"OptionPane.messageFont", MessageFont,
"OptionPane.buttonFont", MessageFont,
"OptionPane.background", ControlBackgroundColor,
"OptionPane.foreground", ControlTextColor,
"OptionPane.messageForeground", ControlTextColor,
"OptionPane.errorIcon", new LazyWindowsIcon("optionPaneIcon Error",
"icons/Error.gif"),
"OptionPane.informationIcon", new LazyWindowsIcon("optionPaneIcon Information",
"icons/Inform.gif"),
"OptionPane.questionIcon", new LazyWindowsIcon("optionPaneIcon Question",
"icons/Question.gif"),
"OptionPane.warningIcon", new LazyWindowsIcon("optionPaneIcon Warning",
"icons/Warn.gif"),
"OptionPane.windowBindings", new Object[] {
"ESCAPE", "close" },
// Option Pane Auditory Cue Mappings
"OptionPane.errorSound", "win.sound.hand", // Error
"OptionPane.informationSound", "win.sound.asterisk", // Info Plain
"OptionPane.questionSound", "win.sound.question", // Question
"OptionPane.warningSound", "win.sound.exclamation", // Warning
"FormattedTextField.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ctrl C", DefaultEditorKit.copyAction,
"ctrl V", DefaultEditorKit.pasteAction,
"ctrl X", DefaultEditorKit.cutAction,
"COPY", DefaultEditorKit.copyAction,
"PASTE", DefaultEditorKit.pasteAction,
"CUT", DefaultEditorKit.cutAction,
"shift LEFT", DefaultEditorKit.selectionBackwardAction,
"shift KP_LEFT", DefaultEditorKit.selectionBackwardAction,
"shift RIGHT", DefaultEditorKit.selectionForwardAction,
"shift KP_RIGHT", DefaultEditorKit.selectionForwardAction,
"ctrl LEFT", DefaultEditorKit.previousWordAction,
"ctrl KP_LEFT", DefaultEditorKit.previousWordAction,
"ctrl RIGHT", DefaultEditorKit.nextWordAction,
"ctrl KP_RIGHT", DefaultEditorKit.nextWordAction,
"ctrl shift LEFT", DefaultEditorKit.selectionPreviousWordAction,
"ctrl shift KP_LEFT", DefaultEditorKit.selectionPreviousWordAction,
"ctrl shift RIGHT", DefaultEditorKit.selectionNextWordAction,
"ctrl shift KP_RIGHT", DefaultEditorKit.selectionNextWordAction,
"ctrl A", DefaultEditorKit.selectAllAction,
"HOME", DefaultEditorKit.beginLineAction,
"END", DefaultEditorKit.endLineAction,
"shift HOME", DefaultEditorKit.selectionBeginLineAction,
"shift END", DefaultEditorKit.selectionEndLineAction,
"BACK_SPACE", DefaultEditorKit.deletePrevCharAction,
"ctrl H", DefaultEditorKit.deletePrevCharAction,
"DELETE", DefaultEditorKit.deleteNextCharAction,
"RIGHT", DefaultEditorKit.forwardAction,
"LEFT", DefaultEditorKit.backwardAction,
"KP_RIGHT", DefaultEditorKit.forwardAction,
"KP_LEFT", DefaultEditorKit.backwardAction,
"ENTER", JTextField.notifyAction,
"ctrl BACK_SLASH", "unselect",
"control shift O", "toggle-componentOrientation",
"ESCAPE", "reset-field-edit",
"UP", "increment",
"KP_UP", "increment",
"DOWN", "decrement",
"KP_DOWN", "decrement",
}),
// *** Panel
"Panel.font", ControlFont,
"Panel.background", ControlBackgroundColor,
"Panel.foreground", WindowTextColor,
// *** PasswordField
"PasswordField.font", FixedControlFont,
"PasswordField.background", TextBackground,
"PasswordField.foreground", WindowTextColor,
"PasswordField.inactiveForeground", InactiveTextColor, // for disabled
"PasswordField.inactiveBackground", ReadOnlyTextBackground, // for readonly
"PasswordField.disabledBackground", DisabledTextBackground, // for disabled
"PasswordField.selectionBackground", SelectionBackgroundColor,
"PasswordField.selectionForeground", SelectionTextColor,
"PasswordField.caretForeground",WindowTextColor,
// *** ProgressBar
"ProgressBar.font", ControlFont,
"ProgressBar.foreground", SelectionBackgroundColor,
"ProgressBar.background", ControlBackgroundColor,
"ProgressBar.shadow", ControlShadowColor,
"ProgressBar.highlight", ControlHighlightColor,
"ProgressBar.selectionForeground", ControlBackgroundColor,
"ProgressBar.selectionBackground", SelectionBackgroundColor,
"ProgressBar.cellLength", new Integer(7),
"ProgressBar.cellSpacing", new Integer(2),
// *** RootPane.
// These bindings are only enabled when there is a default
// button set on the rootpane.
"RootPane.defaultButtonWindowKeyBindings", new Object[] {
"ENTER", "press",
"released ENTER", "release",
"ctrl ENTER", "press",
"ctrl released ENTER", "release"
},
// *** ScrollBar.
"ScrollBar.background", ScrollbarBackgroundColor,
"ScrollBar.foreground", ControlBackgroundColor,
"ScrollBar.track", white,
"ScrollBar.trackForeground", ScrollbarBackgroundColor,
"ScrollBar.trackHighlight", black,
"ScrollBar.trackHighlightForeground", scrollBarTrackHighlight,
"ScrollBar.thumb", ControlBackgroundColor,
"ScrollBar.thumbHighlight", ControlHighlightColor,
"ScrollBar.thumbDarkShadow", ControlDarkShadowColor,
"ScrollBar.thumbShadow", ControlShadowColor,
"ScrollBar.width", scrollBarWidth,
"ScrollBar.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"RIGHT", "positiveUnitIncrement",
"KP_RIGHT", "positiveUnitIncrement",
"DOWN", "positiveUnitIncrement",
"KP_DOWN", "positiveUnitIncrement",
"PAGE_DOWN", "positiveBlockIncrement",
"ctrl PAGE_DOWN", "positiveBlockIncrement",
"LEFT", "negativeUnitIncrement",
"KP_LEFT", "negativeUnitIncrement",
"UP", "negativeUnitIncrement",
"KP_UP", "negativeUnitIncrement",
"PAGE_UP", "negativeBlockIncrement",
"ctrl PAGE_UP", "negativeBlockIncrement",
"HOME", "minScroll",
"END", "maxScroll"
}),
// *** ScrollPane.
"ScrollPane.font", ControlFont,
"ScrollPane.background", ControlBackgroundColor,
"ScrollPane.foreground", ControlTextColor,
"ScrollPane.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"RIGHT", "unitScrollRight",
"KP_RIGHT", "unitScrollRight",
"DOWN", "unitScrollDown",
"KP_DOWN", "unitScrollDown",
"LEFT", "unitScrollLeft",
"KP_LEFT", "unitScrollLeft",
"UP", "unitScrollUp",
"KP_UP", "unitScrollUp",
"PAGE_UP", "scrollUp",
"PAGE_DOWN", "scrollDown",
"ctrl PAGE_UP", "scrollLeft",
"ctrl PAGE_DOWN", "scrollRight",
"ctrl HOME", "scrollHome",
"ctrl END", "scrollEnd"
}),
// *** Separator
"Separator.background", ControlHighlightColor,
"Separator.foreground", ControlShadowColor,
// *** Slider.
"Slider.foreground", ControlBackgroundColor,
"Slider.background", ControlBackgroundColor,
"Slider.highlight", ControlHighlightColor,
"Slider.shadow", ControlShadowColor,
"Slider.focus", ControlDarkShadowColor,
"Slider.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"RIGHT", "positiveUnitIncrement",
"KP_RIGHT", "positiveUnitIncrement",
"DOWN", "negativeUnitIncrement",
"KP_DOWN", "negativeUnitIncrement",
"PAGE_DOWN", "negativeBlockIncrement",
"LEFT", "negativeUnitIncrement",
"KP_LEFT", "negativeUnitIncrement",
"UP", "positiveUnitIncrement",
"KP_UP", "positiveUnitIncrement",
"PAGE_UP", "positiveBlockIncrement",
"HOME", "minScroll",
"END", "maxScroll"
}),
// Spinner
"Spinner.font", FixedControlFont,
"Spinner.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"UP", "increment",
"KP_UP", "increment",
"DOWN", "decrement",
"KP_DOWN", "decrement",
}),
// *** SplitPane
"SplitPane.background", ControlBackgroundColor,
"SplitPane.highlight", ControlHighlightColor,
"SplitPane.shadow", ControlShadowColor,
"SplitPane.darkShadow", ControlDarkShadowColor,
"SplitPane.dividerSize", new Integer(5),
"SplitPane.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"UP", "negativeIncrement",
"DOWN", "positiveIncrement",
"LEFT", "negativeIncrement",
"RIGHT", "positiveIncrement",
"KP_UP", "negativeIncrement",
"KP_DOWN", "positiveIncrement",
"KP_LEFT", "negativeIncrement",
"KP_RIGHT", "positiveIncrement",
"HOME", "selectMin",
"END", "selectMax",
"F8", "startResize",
"F6", "toggleFocus",
"ctrl TAB", "focusOutForward",
"ctrl shift TAB", "focusOutBackward"
}),
// *** TabbedPane
"TabbedPane.tabsOverlapBorder", new XPValue(Boolean.TRUE, Boolean.FALSE),
"TabbedPane.tabInsets", new XPValue(new InsetsUIResource(1, 4, 1, 4),
new InsetsUIResource(0, 4, 1, 4)),
"TabbedPane.tabAreaInsets", new XPValue(new InsetsUIResource(3, 2, 2, 2),
new InsetsUIResource(3, 2, 0, 2)),
"TabbedPane.font", ControlFont,
"TabbedPane.background", ControlBackgroundColor,
"TabbedPane.foreground", ControlTextColor,
"TabbedPane.highlight", ControlHighlightColor,
"TabbedPane.light", ControlLightColor,
"TabbedPane.shadow", ControlShadowColor,
"TabbedPane.darkShadow", ControlDarkShadowColor,
"TabbedPane.focus", ControlTextColor,
"TabbedPane.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"RIGHT", "navigateRight",
"KP_RIGHT", "navigateRight",
"LEFT", "navigateLeft",
"KP_LEFT", "navigateLeft",
"UP", "navigateUp",
"KP_UP", "navigateUp",
"DOWN", "navigateDown",
"KP_DOWN", "navigateDown",
"ctrl DOWN", "requestFocusForVisibleComponent",
"ctrl KP_DOWN", "requestFocusForVisibleComponent",
}),
"TabbedPane.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ctrl TAB", "navigateNext",
"ctrl shift TAB", "navigatePrevious",
"ctrl PAGE_DOWN", "navigatePageDown",
"ctrl PAGE_UP", "navigatePageUp",
"ctrl UP", "requestFocus",
"ctrl KP_UP", "requestFocus",
}),
// *** Table
"Table.font", ControlFont,
"Table.foreground", ControlTextColor, // cell text color
"Table.background", WindowBackgroundColor, // cell background color
"Table.highlight", ControlHighlightColor,
"Table.light", ControlLightColor,
"Table.shadow", ControlShadowColor,
"Table.darkShadow", ControlDarkShadowColor,
"Table.selectionForeground", SelectionTextColor,
"Table.selectionBackground", SelectionBackgroundColor,
"Table.gridColor", gray, // grid line color
"Table.focusCellBackground", WindowBackgroundColor,
"Table.focusCellForeground", ControlTextColor,
"Table.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ctrl C", "copy",
"ctrl V", "paste",
"ctrl X", "cut",
"COPY", "copy",
"PASTE", "paste",
"CUT", "cut",
"RIGHT", "selectNextColumn",
"KP_RIGHT", "selectNextColumn",
"shift RIGHT", "selectNextColumnExtendSelection",
"shift KP_RIGHT", "selectNextColumnExtendSelection",
"ctrl shift RIGHT", "selectNextColumnExtendSelection",
"ctrl shift KP_RIGHT", "selectNextColumnExtendSelection",
"ctrl RIGHT", "selectNextColumnChangeLead",
"ctrl KP_RIGHT", "selectNextColumnChangeLead",
"LEFT", "selectPreviousColumn",
"KP_LEFT", "selectPreviousColumn",
"shift LEFT", "selectPreviousColumnExtendSelection",
"shift KP_LEFT", "selectPreviousColumnExtendSelection",
"ctrl shift LEFT", "selectPreviousColumnExtendSelection",
"ctrl shift KP_LEFT", "selectPreviousColumnExtendSelection",
"ctrl LEFT", "selectPreviousColumnChangeLead",
"ctrl KP_LEFT", "selectPreviousColumnChangeLead",
"DOWN", "selectNextRow",
"KP_DOWN", "selectNextRow",
"shift DOWN", "selectNextRowExtendSelection",
"shift KP_DOWN", "selectNextRowExtendSelection",
"ctrl shift DOWN", "selectNextRowExtendSelection",
"ctrl shift KP_DOWN", "selectNextRowExtendSelection",
"ctrl DOWN", "selectNextRowChangeLead",
"ctrl KP_DOWN", "selectNextRowChangeLead",
"UP", "selectPreviousRow",
"KP_UP", "selectPreviousRow",
"shift UP", "selectPreviousRowExtendSelection",
"shift KP_UP", "selectPreviousRowExtendSelection",
"ctrl shift UP", "selectPreviousRowExtendSelection",
"ctrl shift KP_UP", "selectPreviousRowExtendSelection",
"ctrl UP", "selectPreviousRowChangeLead",
"ctrl KP_UP", "selectPreviousRowChangeLead",
"HOME", "selectFirstColumn",
"shift HOME", "selectFirstColumnExtendSelection",
"ctrl shift HOME", "selectFirstRowExtendSelection",
"ctrl HOME", "selectFirstRow",
"END", "selectLastColumn",
"shift END", "selectLastColumnExtendSelection",
"ctrl shift END", "selectLastRowExtendSelection",
"ctrl END", "selectLastRow",
"PAGE_UP", "scrollUpChangeSelection",
"shift PAGE_UP", "scrollUpExtendSelection",
"ctrl shift PAGE_UP", "scrollLeftExtendSelection",
"ctrl PAGE_UP", "scrollLeftChangeSelection",
"PAGE_DOWN", "scrollDownChangeSelection",
"shift PAGE_DOWN", "scrollDownExtendSelection",
"ctrl shift PAGE_DOWN", "scrollRightExtendSelection",
"ctrl PAGE_DOWN", "scrollRightChangeSelection",
"TAB", "selectNextColumnCell",
"shift TAB", "selectPreviousColumnCell",
"ENTER", "selectNextRowCell",
"shift ENTER", "selectPreviousRowCell",
"ctrl A", "selectAll",
"ctrl SLASH", "selectAll",
"ctrl BACK_SLASH", "clearSelection",
"ESCAPE", "cancel",
"F2", "startEditing",
"SPACE", "addToSelection",
"ctrl SPACE", "toggleAndAnchor",
"shift SPACE", "extendTo",
"ctrl shift SPACE", "moveSelectionTo"
}),
"TableHeader.font", ControlFont,
"TableHeader.foreground", ControlTextColor, // header text color
"TableHeader.background", ControlBackgroundColor, // header background
// *** TextArea
"TextArea.font", FixedControlFont,
"TextArea.background", WindowBackgroundColor,
"TextArea.foreground", WindowTextColor,
"TextArea.inactiveForeground", InactiveTextColor,
"TextArea.selectionBackground", SelectionBackgroundColor,
"TextArea.selectionForeground", SelectionTextColor,
"TextArea.caretForeground", WindowTextColor,
// *** TextField
"TextField.font", ControlFont,
"TextField.background", TextBackground,
"TextField.foreground", WindowTextColor,
"TextField.shadow", ControlShadowColor,
"TextField.darkShadow", ControlDarkShadowColor,
"TextField.light", ControlLightColor,
"TextField.highlight", ControlHighlightColor,
"TextField.inactiveForeground", InactiveTextColor, // for disabled
"TextField.inactiveBackground", ReadOnlyTextBackground, // for readonly
"TextField.disabledBackground", DisabledTextBackground, // for disabled
"TextField.selectionBackground", SelectionBackgroundColor,
"TextField.selectionForeground", SelectionTextColor,
"TextField.caretForeground", WindowTextColor,
// *** TextPane
"TextPane.font", ControlFont,
"TextPane.background", WindowBackgroundColor,
"TextPane.foreground", WindowTextColor,
"TextPane.selectionBackground", SelectionBackgroundColor,
"TextPane.selectionForeground", SelectionTextColor,
"TextPane.caretForeground", WindowTextColor,
// *** TitledBorder
"TitledBorder.font", ControlFont,
"TitledBorder.titleColor",
new XPColorValue("button.groupbox.textcolor",
ControlTextColor),
// *** ToggleButton
"ToggleButton.font", ControlFont,
"ToggleButton.background", ControlBackgroundColor,
"ToggleButton.foreground", ControlTextColor,
"ToggleButton.shadow", ControlShadowColor,
"ToggleButton.darkShadow", ControlDarkShadowColor,
"ToggleButton.light", ControlLightColor,
"ToggleButton.highlight", ControlHighlightColor,
"ToggleButton.focus", ControlTextColor,
"ToggleButton.textShiftOffset", new Integer(1),
"ToggleButton.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"SPACE", "pressed",
"released SPACE", "released"
}),
// *** ToolBar
"ToolBar.font", MenuFont,
"ToolBar.background", ControlBackgroundColor,
"ToolBar.foreground", ControlTextColor,
"ToolBar.shadow", ControlShadowColor,
"ToolBar.darkShadow", ControlDarkShadowColor,
"ToolBar.light", ControlLightColor,
"ToolBar.highlight", ControlHighlightColor,
"ToolBar.dockingBackground", ControlBackgroundColor,
"ToolBar.dockingForeground", red,
"ToolBar.floatingBackground", ControlBackgroundColor,
"ToolBar.floatingForeground", darkGray,
"ToolBar.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"UP", "navigateUp",
"KP_UP", "navigateUp",
"DOWN", "navigateDown",
"KP_DOWN", "navigateDown",
"LEFT", "navigateLeft",
"KP_LEFT", "navigateLeft",
"RIGHT", "navigateRight",
"KP_RIGHT", "navigateRight"
}),
"ToolBar.separatorSize", null,
// *** ToolTip
"ToolTip.font", ToolTipFont,
"ToolTip.background", new DesktopProperty(
"win.tooltip.backgroundColor",
table.get("info"), toolkit),
"ToolTip.foreground", new DesktopProperty(
"win.tooltip.textColor",
table.get("infoText"), toolkit),
// *** Tree
"Tree.selectionBorderColor", black,
"Tree.drawDashedFocusIndicator", Boolean.TRUE,
"Tree.lineTypeDashed", Boolean.TRUE,
"Tree.font", ControlFont,
"Tree.background", WindowBackgroundColor,
"Tree.foreground", WindowTextColor,
"Tree.hash", gray,
"Tree.textForeground", WindowTextColor,
"Tree.textBackground", WindowBackgroundColor,
"Tree.selectionForeground", SelectionTextColor,
"Tree.selectionBackground", SelectionBackgroundColor,
"Tree.expandedIcon", treeExpandedIcon,
"Tree.collapsedIcon", treeCollapsedIcon,
"Tree.focusInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ADD", "expand",
"SUBTRACT", "collapse",
"ctrl C", "copy",
"ctrl V", "paste",
"ctrl X", "cut",
"COPY", "copy",
"PASTE", "paste",
"CUT", "cut",
"UP", "selectPrevious",
"KP_UP", "selectPrevious",
"shift UP", "selectPreviousExtendSelection",
"shift KP_UP", "selectPreviousExtendSelection",
"ctrl shift UP", "selectPreviousExtendSelection",
"ctrl shift KP_UP", "selectPreviousExtendSelection",
"ctrl UP", "selectPreviousChangeLead",
"ctrl KP_UP", "selectPreviousChangeLead",
"DOWN", "selectNext",
"KP_DOWN", "selectNext",
"shift DOWN", "selectNextExtendSelection",
"shift KP_DOWN", "selectNextExtendSelection",
"ctrl shift DOWN", "selectNextExtendSelection",
"ctrl shift KP_DOWN", "selectNextExtendSelection",
"ctrl DOWN", "selectNextChangeLead",
"ctrl KP_DOWN", "selectNextChangeLead",
"RIGHT", "selectChild",
"KP_RIGHT", "selectChild",
"LEFT", "selectParent",
"KP_LEFT", "selectParent",
"PAGE_UP", "scrollUpChangeSelection",
"shift PAGE_UP", "scrollUpExtendSelection",
"ctrl shift PAGE_UP", "scrollUpExtendSelection",
"ctrl PAGE_UP", "scrollUpChangeLead",
"PAGE_DOWN", "scrollDownChangeSelection",
"shift PAGE_DOWN", "scrollDownExtendSelection",
"ctrl shift PAGE_DOWN", "scrollDownExtendSelection",
"ctrl PAGE_DOWN", "scrollDownChangeLead",
"HOME", "selectFirst",
"shift HOME", "selectFirstExtendSelection",
"ctrl shift HOME", "selectFirstExtendSelection",
"ctrl HOME", "selectFirstChangeLead",
"END", "selectLast",
"shift END", "selectLastExtendSelection",
"ctrl shift END", "selectLastExtendSelection",
"ctrl END", "selectLastChangeLead",
"F2", "startEditing",
"ctrl A", "selectAll",
"ctrl SLASH", "selectAll",
"ctrl BACK_SLASH", "clearSelection",
"ctrl LEFT", "scrollLeft",
"ctrl KP_LEFT", "scrollLeft",
"ctrl RIGHT", "scrollRight",
"ctrl KP_RIGHT", "scrollRight",
"SPACE", "addToSelection",
"ctrl SPACE", "toggleAndAnchor",
"shift SPACE", "extendTo",
"ctrl shift SPACE", "moveSelectionTo"
}),
"Tree.ancestorInputMap",
new UIDefaults.LazyInputMap(new Object[] {
"ESCAPE", "cancel"
}),
// *** Viewport
"Viewport.font", ControlFont,
"Viewport.background", ControlBackgroundColor,
"Viewport.foreground", WindowTextColor,
};
table.putDefaults(defaults);
table.putDefaults(getLazyValueDefaults());
| private void | initResourceBundle(javax.swing.UIDefaults table)Initialize the defaults table with the name of the ResourceBundle
used for getting localized defaults.
table.addResourceBundle( "com.sun.java.swing.plaf.windows.resources.windows" );
| protected void | initSystemColorDefaults(javax.swing.UIDefaults table)Load the SystemColors into the defaults table. The keys
for SystemColor defaults are the same as the names of
the public fields in SystemColor. If the table is being
created on a native Windows platform we use the SystemColor
values, otherwise we create color objects whose values match
the defaults Windows95 colors.
String[] defaultSystemColors = {
"desktop", "#005C5C", /* Color of the desktop background */
"activeCaption", "#000080", /* Color for captions (title bars) when they are active. */
"activeCaptionText", "#FFFFFF", /* Text color for text in captions (title bars). */
"activeCaptionBorder", "#C0C0C0", /* Border color for caption (title bar) window borders. */
"inactiveCaption", "#808080", /* Color for captions (title bars) when not active. */
"inactiveCaptionText", "#C0C0C0", /* Text color for text in inactive captions (title bars). */
"inactiveCaptionBorder", "#C0C0C0", /* Border color for inactive caption (title bar) window borders. */
"window", "#FFFFFF", /* Default color for the interior of windows */
"windowBorder", "#000000", /* ??? */
"windowText", "#000000", /* ??? */
"menu", "#C0C0C0", /* Background color for menus */
"menuPressedItemB", "#000080", /* LightShadow of menubutton highlight */
"menuPressedItemF", "#FFFFFF", /* Default color for foreground "text" in menu item */
"menuText", "#000000", /* Text color for menus */
"text", "#C0C0C0", /* Text background color */
"textText", "#000000", /* Text foreground color */
"textHighlight", "#000080", /* Text background color when selected */
"textHighlightText", "#FFFFFF", /* Text color when selected */
"textInactiveText", "#808080", /* Text color when disabled */
"control", "#C0C0C0", /* Default color for controls (buttons, sliders, etc) */
"controlText", "#000000", /* Default color for text in controls */
"controlHighlight", "#C0C0C0",
/*"controlHighlight", "#E0E0E0",*/ /* Specular highlight (opposite of the shadow) */
"controlLtHighlight", "#FFFFFF", /* Highlight color for controls */
"controlShadow", "#808080", /* Shadow color for controls */
"controlDkShadow", "#000000", /* Dark shadow color for controls */
"scrollbar", "#E0E0E0", /* Scrollbar background (usually the "track") */
"info", "#FFFFE1", /* ??? */
"infoText", "#000000" /* ??? */
};
loadSystemColors(table, defaultSystemColors, isNativeLookAndFeel());
| public void | initialize()
super.initialize();
toolkit = Toolkit.getDefaultToolkit();
// Set the flag which determines which version of Windows should
// be rendered. This flag only need to be set once.
// if version <= 4.0 then the classic LAF should be loaded.
String osVersion = System.getProperty("os.version");
if (osVersion != null) {
Float version = Float.valueOf(osVersion);
if (version.floatValue() <= 4.0) {
isClassicWindows = true;
} else {
isClassicWindows = false;
XPStyle.invalidateStyle();
}
}
// Using the fonts set by the user can potentially cause
// performance and compatibility issues, so allow this feature
// to be switched off either at runtime or programmatically
//
String systemFonts = (String) java.security.AccessController.doPrivileged(
new GetPropertyAction("swing.useSystemFontSettings"));
useSystemFontSettings = (systemFonts == null ||
Boolean.valueOf(systemFonts).booleanValue());
if (useSystemFontSettings) {
Object value = UIManager.get("Application.useSystemFontSettings");
useSystemFontSettings = (value == null ||
Boolean.TRUE.equals(value));
}
KeyboardFocusManager.getCurrentKeyboardFocusManager().
addKeyEventPostProcessor(WindowsRootPaneUI.altProcessor);
| public static boolean | isClassicWindows()Gets the state of the flag which indicates if the old Windows
look and feel should be rendered. This flag is used by the
component UI delegates as a hint to determine which style the component
should be rendered.
return isClassicWindows;
| public static boolean | isMnemonicHidden()Gets the state of the hide mnemonic flag. This only has meaning
if this feature is supported by the underlying OS.
if (UIManager.getBoolean("Button.showMnemonics") == true) {
// Do not hide mnemonics if the UI defaults do not support this
isMnemonicHidden = false;
}
return isMnemonicHidden;
| public boolean | isNativeLookAndFeel()
String osName = System.getProperty("os.name");
return (osName != null) && (osName.indexOf("Windows") != -1);
| public boolean | isSupportedLookAndFeel()
return isNativeLookAndFeel();
| public void | provideErrorFeedback(java.awt.Component component)
Invoked when the user attempts an invalid operation,
such as pasting into an uneditable JTextField
that has focus.
If the user has enabled visual error indication on
the desktop, this method will flash the caption bar
of the active window. The user can also set the
property awt.visualbell=true to achieve the same
results.
super.provideErrorFeedback(component);
| static void | repaintRootPane(java.awt.Component c)
JRootPane root = null;
for (; c != null; c = c.getParent()) {
if (c instanceof JRootPane) {
root = (JRootPane)c;
}
}
if (root != null) {
root.repaint();
} else {
c.repaint();
}
| public static void | setMnemonicHidden(boolean hide)Sets the state of the hide mnemonic flag. This flag is used by the
component UI delegates to determine if the mnemonic should be rendered.
This method is a non operation if the underlying operating system
does not support the mnemonic hiding feature.
if (UIManager.getBoolean("Button.showMnemonics") == true) {
// Do not hide mnemonics if the UI defaults do not support this
isMnemonicHidden = false;
} else {
isMnemonicHidden = hide;
}
| public void | uninitialize()
super.uninitialize();
toolkit = null;
if (WindowsPopupMenuUI.mnemonicListener != null) {
MenuSelectionManager.defaultManager().
removeChangeListener(WindowsPopupMenuUI.mnemonicListener);
}
KeyboardFocusManager.getCurrentKeyboardFocusManager().
removeKeyEventPostProcessor(WindowsRootPaneUI.altProcessor);
DesktopProperty.flushUnreferencedProperties();
|
|