Searched refs:UIManager (Results 51 - 75 of 355) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsToggleButtonUI.java84 dashedRectGapX = ((Integer)UIManager.get("Button.dashedRectGapX")).intValue();
85 dashedRectGapY = ((Integer)UIManager.get("Button.dashedRectGapY")).intValue();
86 dashedRectGapWidth = ((Integer)UIManager.get("Button.dashedRectGapWidth")).intValue();
87 dashedRectGapHeight = ((Integer)UIManager.get("Button.dashedRectGapHeight")).intValue();
88 focusColor = UIManager.getColor(pp + "focus");
123 Color c2 = UIManager.getColor("ToggleButton.highlight");
/openjdk7/jdk/test/javax/swing/JSlider/6794831/
H A Dbug6794831.java47 for (UIManager.LookAndFeelInfo lookAndFeelInfo : UIManager.getInstalledLookAndFeels()) {
49 UIManager.setLookAndFeel(lookAndFeelInfo.getClassName());
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifTreeUI.java101 bg = UIManager.getColor("Tree.iconBackground");
102 fg = UIManager.getColor("Tree.iconForeground");
103 highlight = UIManager.getColor("Tree.iconHighlight");
104 shadow = UIManager.getColor("Tree.iconShadow");
H A DMotifComboBoxUI.java57 arrowIcon = new MotifComboBoxArrowIcon(UIManager.getColor("controlHighlight"),
58 UIManager.getColor("controlShadow"),
59 UIManager.getColor("control"));
64 motifGetEditor().setBackground( UIManager.getColor( "text" ) );
140 g.setColor(UIManager.getColor("ComboBox.disabledBackground"));
169 g.setColor(UIManager.getColor("controlShadow"));
172 g.setColor(UIManager.getColor("controlHighlight"));
188 c.setForeground(UIManager.getColor("ComboBox.disabledForeground"));
189 c.setBackground(UIManager.getColor("ComboBox.disabledBackground"));
250 editor.setBackground( UIManager
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxRenderer.java108 setBackground(UIManager.getColor("List.selectionBackground"));
109 setForeground(UIManager.getColor("List.selectionForeground"));
116 setBackground(UIManager.getColor("List.background"));
117 setForeground(UIManager.getColor("List.foreground"));
/openjdk7/jdk/test/javax/swing/JSlider/6579827/
H A Dbug6579827.java48 UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
/openjdk7/jdk/test/javax/swing/JTable/6913768/
H A Dbug6913768.java36 UIManager.setLookAndFeel(new SynthLookAndFeel());
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest6741426.java52 UIManager.setLookAndFeel(new NimbusLookAndFeel());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java258 usesSingleFilePane = UIManager.getBoolean("FileChooser.usesSingleFilePane");
259 readOnly = UIManager.getBoolean("FileChooser.readOnly");
268 directoryIcon = UIManager.getIcon("FileView.directoryIcon");
269 fileIcon = UIManager.getIcon("FileView.fileIcon");
270 computerIcon = UIManager.getIcon("FileView.computerIcon");
271 hardDriveIcon = UIManager.getIcon("FileView.hardDriveIcon");
272 floppyDriveIcon = UIManager.getIcon("FileView.floppyDriveIcon");
274 newFolderIcon = UIManager.getIcon("FileChooser.newFolderIcon");
275 upFolderIcon = UIManager.getIcon("FileChooser.upFolderIcon");
276 homeFolderIcon = UIManager
[all...]
H A DBasicPasswordFieldUI.java57 * UIManager. This is used as a prefix to all the standard
74 Character echoChar = (Character)UIManager.getDefaults().get(prefix + ".echoChar");
/openjdk7/jdk/src/share/classes/sun/swing/
H A DPrintingStatus.java73 UIManager.getString("PrintingDialog.titleAbortingText"));
75 UIManager.getString("PrintingDialog.contentAbortingText"));
111 UIManager.getString("PrintingDialog.titleProgressText");
114 UIManager.getString("PrintingDialog.contentInitialText");
119 UIManager.getString("PrintingDialog.contentProgressText"));
122 UIManager.getString("PrintingDialog.abortButtonText");
124 UIManager.getString("PrintingDialog.abortButtonToolTipText");
303 * Duplicated from UIManager to make it visible
306 Object value = UIManager.get(key);
/openjdk7/jdk/src/share/classes/sun/swing/icon/
H A DSortArrowIcon.java32 import javax.swing.UIManager;
52 // If non-null indicates the color should come from the UIManager with
76 * @param colorKey the key used to find color in UIManager
119 return UIManager.getColor(colorKey);
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalThemeMenu.java47 import javax.swing.UIManager;
87 UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
/openjdk7/jdk/src/share/demo/jfc/SwingApplet/
H A DSwingApplet.java49 import javax.swing.UIManager;
63 UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
/openjdk7/jdk/test/javax/swing/plaf/synth/
H A DTest6933784.java42 UIManager.setLookAndFeel(new SynthLookAndFeel());
46 UIManager.setLookAndFeel(new NimbusLookAndFeel());
/openjdk7/jdk/test/javax/swing/text/html/
H A DTest4783068.java49 UIManager.setLookAndFeel(new MetalLookAndFeel());
54 UIManager.put("textInactiveText", TEST_COLOR);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalComboBoxButton.java105 setBackground(UIManager.getColor("ComboBox.disabledBackground"));
106 setForeground(UIManager.getColor("ComboBox.disabledForeground"));
182 c.setBackground(UIManager.getColor("Button.select"));
188 c.setBackground(UIManager.getColor("ComboBox.disabledBackground"));
190 c.setForeground(UIManager.getColor("ComboBox.disabledForeground"));
H A DMetalCheckBoxUI.java90 icon = UIManager.getIcon(getPropertyPrefix() + "icon");
H A DMetalLabelUI.java83 g.setColor(UIManager.getColor("Label.disabledForeground"));
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTreeCellRenderer.java52 import javax.swing.UIManager;
68 if ("Nimbus".equals(UIManager.getLookAndFeel().getName())) {
121 setForeground(UIManager.getColor("Tree.selectionForeground"));
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample3.java50 import javax.swing.UIManager.LookAndFeelInfo;
159 for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
161 UIManager.setLookAndFeel(info.getClassName());
/openjdk7/jdk/test/javax/swing/JFileChooser/6396844/
H A DTwentyThousandTest.java71 for (UIManager.LookAndFeelInfo laf : UIManager.getInstalledLookAndFeels()) {
76 UIManager.setLookAndFeel(laf.getClassName());
/openjdk7/jdk/test/javax/swing/JTree/8003400/
H A DTest8003400.java48 import javax.swing.UIManager;
63 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DLongCellRenderer.java54 textField.setBorder(UIManager.getBorder("Table.focusCellHighlightBorder"));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutStyle.java77 return UIManager.getLookAndFeel().getLayoutStyle();

Completed in 3066 milliseconds

1234567891011>>