/openjdk7/jdk/test/javax/swing/LookAndFeel/6474153/ |
H A D | bug6474153.java | 26 * @summary LookAndFeel.makeKeyBindings(...) doesn't ignore last element in keyBindingList with odd size 31 import javax.swing.LookAndFeel; 38 checkArray(LookAndFeel.makeKeyBindings(new Object[] {"UP", DefaultEditorKit.upAction} )); 39 checkArray(LookAndFeel.makeKeyBindings(new Object[] {"UP", DefaultEditorKit.upAction, "PAGE_UP"} ));
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicPanelUI.java | 66 LookAndFeel.installColorsAndFont(p, 70 LookAndFeel.installBorder(p,"Panel.border"); 71 LookAndFeel.installProperty(p, "opaque", Boolean.TRUE); 75 LookAndFeel.uninstallBorder(p);
|
H A D | BasicViewportUI.java | 64 LookAndFeel.installColorsAndFont(c, 68 LookAndFeel.installProperty(c, "opaque", Boolean.TRUE);
|
H A D | BasicToolTipUI.java | 81 LookAndFeel.installColorsAndFont(c, "ToolTip.background", 84 LookAndFeel.installProperty(c, "opaque", Boolean.TRUE); 89 LookAndFeel.uninstallBorder(c); 210 LookAndFeel.installBorder(c, "ToolTip.borderInactive"); 213 LookAndFeel.installBorder(c, "ToolTip.border"); 216 LookAndFeel.installColors(c,"ToolTip.backgroundInactive", 220 LookAndFeel.installColors(c,"ToolTip.background", 224 LookAndFeel.installBorder(c, "ToolTip.border"); 225 LookAndFeel.installColors(c, "ToolTip.background",
|
H A D | BasicPasswordFieldUI.java | 76 LookAndFeel.installProperty(getComponent(), "echoChar", echoChar);
|
H A D | BasicSeparatorUI.java | 70 LookAndFeel.installColors( s, "Separator.background", "Separator.foreground" ); 71 LookAndFeel.installProperty( s, "opaque", Boolean.FALSE);
|
H A D | BasicMenuBarUI.java | 85 LookAndFeel.installProperty(menuBar, "opaque", Boolean.TRUE); 86 LookAndFeel.installBorder(menuBar,"MenuBar.border"); 87 LookAndFeel.installColorsAndFont(menuBar, 120 return LookAndFeel.makeComponentInputMap(menuBar, bindings); 136 LookAndFeel.uninstallBorder(menuBar);
|
H A D | BasicButtonUI.java | 102 LookAndFeel.installProperty(b, "opaque", Boolean.TRUE); 104 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE); 111 LookAndFeel.installColorsAndFont(b, pp + "background", 113 LookAndFeel.installBorder(b, pp + "border"); 117 LookAndFeel.installProperty(b, "rolloverEnabled", rollover); 120 LookAndFeel.installProperty(b, "iconTextGap", Integer.valueOf(4)); 172 LookAndFeel.uninstallBorder(b);
|
H A D | BasicDesktopIconUI.java | 136 LookAndFeel.installBorder(desktopIcon, "DesktopIcon.border"); 137 LookAndFeel.installProperty(desktopIcon, "opaque", Boolean.TRUE); 141 LookAndFeel.uninstallBorder(desktopIcon);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | UIManager.java | 76 * feel, or by creating an instance of {@code LookAndFeel} and passing 196 LookAndFeel lookAndFeel; 197 LookAndFeel multiLookAndFeel = null; 198 Vector<LookAndFeel> auxLookAndFeels = null; 297 * <code>LookAndFeel</code> for the sake of configuring a menu or 301 * @see LookAndFeel 325 * @see LookAndFeel#getName 334 * <code>LookAndFeel</code> 335 * @see LookAndFeel 397 * {@code LookAndFeel} implementation [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/ |
H A D | MetalInternalFrameUI.java | 141 LookAndFeel.installBorder(frame, "InternalFrame.optionDialogBorder"); 146 LookAndFeel.installBorder(frame, "InternalFrame.paletteBorder"); 151 LookAndFeel.installBorder(frame, "InternalFrame.border"); 159 LookAndFeel.installBorder(frame, "InternalFrame.paletteBorder"); 161 LookAndFeel.installBorder(frame, "InternalFrame.border");
|
H A D | MetalSeparatorUI.java | 63 LookAndFeel.installColors( s, "Separator.background", "Separator.foreground" );
|
H A D | MetalDesktopIconUI.java | 60 LookAndFeel.installColorsAndFont(desktopIcon, "DesktopIcon.background", "DesktopIcon.foreground", "DesktopIcon.font");
|
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/ |
H A D | DesktopProperty.java | 143 // by the LookAndFeel) WeakPCLs around, but this number will not 186 * @param laf the LookAndFeel this DesktopProperty was created with 188 public void invalidate(LookAndFeel laf) { 259 private LookAndFeel laf; 261 WeakPCL(DesktopProperty target, String key, LookAndFeel laf) {
|
H A D | WindowsToggleButtonUI.java | 95 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE); 96 LookAndFeel.installProperty(b, "rolloverEnabled", Boolean.TRUE);
|
H A D | WindowsRadioButtonUI.java | 88 LookAndFeel.installProperty(b, "rolloverEnabled", Boolean.TRUE);
|
H A D | WindowsInternalFrameUI.java | 65 LookAndFeel.installProperty(c, "opaque",
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/ |
H A D | MultiLookAndFeel.java | 59 public class MultiLookAndFeel extends LookAndFeel { 62 // LookAndFeel methods 232 LookAndFeel[] auxiliaryLookAndFeels; 290 * We want the Multiplexing LookAndFeel to be quiet and fallback
|
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/ |
H A D | MotifInternalFrameUI.java | 62 * Key bindings are now defined by the LookAndFeel, please refer to 105 LookAndFeel.uninstallBorder(frame); 174 diInputMap = LookAndFeel.makeComponentInputMap(di, bindings);
|
H A D | MotifCheckBoxMenuItemUI.java | 71 LookAndFeel.installProperty(c, "borderPainted", c.isArmed());
|
H A D | MotifMenuItemUI.java | 77 LookAndFeel.installProperty(c, "borderPainted",
|
H A D | MotifRadioButtonMenuItemUI.java | 77 LookAndFeel.installProperty(c, "borderPainted", c.isArmed());
|
H A D | MotifToggleButtonUI.java | 82 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE);
|
H A D | MotifButtonUI.java | 87 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE);
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthLookAndFeel.java | 244 LookAndFeel laf = UIManager.getLookAndFeel(); 630 // LookAndFeel and expect things to work 781 // parent and the LookAndFeel wants this. 813 private static ReferenceQueue<LookAndFeel> queue = new ReferenceQueue<LookAndFeel>(); 823 extends WeakReference<LookAndFeel> implements PropertyChangeListener { 826 AATextListener(LookAndFeel laf) { 840 LookAndFeel laf = get();
|