Searched refs:textR (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSheetDialog.java42 private static Rectangle textR = new Rectangle(); field in class:SheetDialog
112 textR.x = textR.y = textR.width = textR.height = 0;
133 viewR, iconR, textR,
135 return new Dimension(textR.width + dx,
136 textR.height + dy);
H A DJConsole.java212 Rectangle textR = new Rectangle(0, 0, 0, 0); field in class:JConsole.WindowMenu
281 viewR, iconR, textR, 0);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthGraphicsUtils.java53 private Rectangle textR = new Rectangle(); field in class:SynthGraphicsUtils
138 * @param textR Rectangle to place text in
145 Rectangle iconR, Rectangle textR, int iconTextGap) {
151 vTextPosition, hTextPosition, viewR, iconR, textR,
158 vTextPosition, hTextPosition, viewR, iconR, textR,
286 textR.x = textR.y = textR.width = textR.height = 0;
292 hTextPosition, vTextPosition, viewR, iconR, textR,
141 layoutText(SynthContext ss, FontMetrics fm, String text, Icon icon, int hAlign, int vAlign, int hTextPosition, int vTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, int iconTextGap) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicLabelUI.java92 Rectangle textR)
105 textR,
229 Rectangle textR = new Rectangle();
233 textR.x = textR.y = textR.width = textR.height = 0;
238 layoutCL(label, fm, text, icon, viewR, iconR, textR);
239 int x1 = Math.min(iconR.x, textR.x);
240 int x2 = Math.max(iconR.x + iconR.width, textR
85 layoutCL( JLabel label, FontMetrics fontMetrics, String text, Icon icon, Rectangle viewR, Rectangle iconR, Rectangle textR) argument
[all...]
H A DBasicGraphicsUtils.java279 Rectangle textR = new Rectangle();
286 viewR, iconR, textR, (text == null ? 0 : textIconGap)
293 Rectangle r = iconR.union(textR);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingUtilities.java854 Rectangle textR,
899 textR,
923 Rectangle textR,
931 viewR, iconR, textR, textIconGap);
955 Rectangle textR,
969 /* Initialize the text bounds rectangle textR. If a null
971 * and use 0,0,0,0 for textR.
984 textR.width = textR.height = 0;
1000 textR
844 layoutCompoundLabel(JComponent c, FontMetrics fm, String text, Icon icon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, int textIconGap) argument
913 layoutCompoundLabel( FontMetrics fm, String text, Icon icon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, int textIconGap) argument
944 layoutCompoundLabelImpl( JComponent c, FontMetrics fm, String text, Icon icon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, int textIconGap) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuPainter.java439 private String layoutMenuItem(final JMenuItem menuItem, final FontMetrics fm, final String text, final FontMetrics fmAccel, String keyString, final String modifiersString, final Icon icon, final Icon checkIcon, final Icon arrowIcon, final int verticalAlignment, final int horizontalAlignment, final int verticalTextPosition, final int horizontalTextPosition, final Rectangle viewR, final Rectangle iconR, final Rectangle textR, final Rectangle acceleratorR, final Rectangle checkIconR, final Rectangle arrowIconR, final int textIconGap, final int menuItemGap) { argument
441 SwingUtilities.layoutCompoundLabel(menuItem, fm, text, icon, verticalAlignment, SwingConstants.LEFT, verticalTextPosition, horizontalTextPosition, viewR, iconR, textR, textIconGap);
479 textR.x += 12;
483 final Rectangle labelR = iconR.union(textR);
499 textR.width += 8;
503 iconR+" t="+textR+" acc="+acceleratorR+" a="+arrowIconR);*/
510 textR.x = w - (textR.x + textR.width);
514 textR
[all...]
H A DAquaFileChooserUI.java1013 protected String layoutCL(final JLabel label, final FontMetrics fontMetrics, final String text, final Icon icon, final Rectangle viewR, final Rectangle iconR, final Rectangle textR) { argument
1014 return SwingUtilities.layoutCompoundLabel(label, fontMetrics, text, icon, label.getVerticalAlignment(), label.getHorizontalAlignment(), label.getVerticalTextPosition(), label.getHorizontalTextPosition(), viewR, iconR, textR, label.getIconTextGap());
/openjdk7/jdk/src/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java165 Rectangle textR = new Rectangle();
183 textR,
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifGraphicsUtils.java354 Rectangle textR,
373 textR,
376 /* Initialize the acceelratorText bounds rectangle textR. If a null
413 Rectangle labelR = iconR.union(textR);
415 textR.x += checkIconR.width + menuItemGap;
427 textR.x -= (checkIconR.width + menuItemGap);
446 iconR+" t="+textR+" acc="+acceleratorR+" a="+arrowIconR);
339 layoutMenuItem( JComponent c, FontMetrics fm, String text, FontMetrics fmAccel, String acceleratorText, Icon icon, Icon checkIcon, Icon arrowIcon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, Rectangle viewR, Rectangle iconR, Rectangle textR, Rectangle acceleratorR, Rectangle checkIconR, Rectangle arrowIconR, int textIconGap, int menuItemGap ) argument

Completed in 82 milliseconds