Searched refs:LookAndFeel (Results 1 - 25 of 85) sorted by relevance

1234

/openjdk7/jdk/test/javax/swing/LookAndFeel/6474153/
H A Dbug6474153.java26 * @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 DBasicPanelUI.java66 LookAndFeel.installColorsAndFont(p,
70 LookAndFeel.installBorder(p,"Panel.border");
71 LookAndFeel.installProperty(p, "opaque", Boolean.TRUE);
75 LookAndFeel.uninstallBorder(p);
H A DBasicViewportUI.java64 LookAndFeel.installColorsAndFont(c,
68 LookAndFeel.installProperty(c, "opaque", Boolean.TRUE);
H A DBasicToolTipUI.java81 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 DBasicPasswordFieldUI.java76 LookAndFeel.installProperty(getComponent(), "echoChar", echoChar);
H A DBasicSeparatorUI.java70 LookAndFeel.installColors( s, "Separator.background", "Separator.foreground" );
71 LookAndFeel.installProperty( s, "opaque", Boolean.FALSE);
H A DBasicMenuBarUI.java85 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 DBasicButtonUI.java102 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 DBasicDesktopIconUI.java136 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 DUIManager.java76 * 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 DMetalInternalFrameUI.java141 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 DMetalSeparatorUI.java63 LookAndFeel.installColors( s, "Separator.background", "Separator.foreground" );
H A DMetalDesktopIconUI.java60 LookAndFeel.installColorsAndFont(desktopIcon, "DesktopIcon.background", "DesktopIcon.foreground", "DesktopIcon.font");
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java143 // 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 DWindowsToggleButtonUI.java95 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE);
96 LookAndFeel.installProperty(b, "rolloverEnabled", Boolean.TRUE);
H A DWindowsRadioButtonUI.java88 LookAndFeel.installProperty(b, "rolloverEnabled", Boolean.TRUE);
H A DWindowsInternalFrameUI.java65 LookAndFeel.installProperty(c, "opaque",
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiLookAndFeel.java59 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 DMotifInternalFrameUI.java62 * Key bindings are now defined by the LookAndFeel, please refer to
105 LookAndFeel.uninstallBorder(frame);
174 diInputMap = LookAndFeel.makeComponentInputMap(di, bindings);
H A DMotifCheckBoxMenuItemUI.java71 LookAndFeel.installProperty(c, "borderPainted", c.isArmed());
H A DMotifMenuItemUI.java77 LookAndFeel.installProperty(c, "borderPainted",
H A DMotifRadioButtonMenuItemUI.java77 LookAndFeel.installProperty(c, "borderPainted", c.isArmed());
H A DMotifToggleButtonUI.java82 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE);
H A DMotifButtonUI.java87 LookAndFeel.installProperty(b, "opaque", Boolean.FALSE);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java244 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();

Completed in 478 milliseconds

1234