Searched refs:getIconWidth (Results 1 - 25 of 83) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/javax/swing/
H A DIcon.java51 int getIconWidth(); method in interface:Icon
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthIcon.java41 public static int getIconWidth(Icon icon, SynthContext context) { method in class:SynthIcon
46 return ((SynthIcon)icon).getIconWidth(context);
48 return icon.getIconWidth();
89 public abstract int getIconWidth(SynthContext context); method in class:SynthIcon
109 * <code>getIconWidth(null)</code>.
113 public int getIconWidth() { method in class:SynthIcon
114 return getIconWidth(null);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DIconUIResource.java75 public int getIconWidth() { method in class:IconUIResource
76 return delegate.getIconWidth();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicIconFactory.java123 public int getIconWidth() { return width; } method in class:BasicIconFactory.EmptyFrameIcon
133 public int getIconWidth() { method in class:BasicIconFactory.CheckBoxIcon
147 public int getIconWidth() { method in class:BasicIconFactory.RadioButtonIcon
173 public int getIconWidth() { return 9; } method in class:BasicIconFactory.CheckBoxMenuItemIcon
185 g.fillOval(x+1, y+1, getIconWidth(), getIconHeight());
188 public int getIconWidth() { return 6; } method in class:BasicIconFactory.RadioButtonMenuItemIcon
197 public int getIconWidth() { return 9; } method in class:BasicIconFactory.MenuItemCheckIcon
205 public int getIconWidth() { return 4; } method in class:BasicIconFactory.MenuItemArrowIcon
214 p.addPoint(x+getIconWidth(), y+getIconHeight()/2);
219 public int getIconWidth() { retur method in class:BasicIconFactory.MenuArrowIcon
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalComboBoxIcon.java50 int iconWidth = getIconWidth();
67 public int getIconWidth() { return 10; } method in class:MetalComboBoxIcon
H A DMetalIconFactory.java302 public int getIconWidth() { method in class:MetalIconFactory.FileChooserDetailViewIcon
351 public int getIconWidth() { method in class:MetalIconFactory.FileChooserHomeFolderIcon
412 public int getIconWidth() { method in class:MetalIconFactory.FileChooserListViewIcon
452 public int getIconWidth() { method in class:MetalIconFactory.FileChooserNewFolderIcon
499 public int getIconWidth() { method in class:MetalIconFactory.FileChooserUpFolderIcon
547 public int getIconWidth() { method in class:MetalIconFactory.PaletteCloseIcon
654 public int getIconWidth() { method in class:MetalIconFactory.InternalFrameCloseIcon
771 public int getIconWidth() { method in class:MetalIconFactory.InternalFrameAltMaximizeIcon
821 public int getIconWidth() { method in class:MetalIconFactory.InternalFrameDefaultMenuIcon
931 public int getIconWidth() { method in class:MetalIconFactory.InternalFrameMaximizeIcon
1036 public int getIconWidth() { method in class:MetalIconFactory.InternalFrameMinimizeIcon
1125 public int getIconWidth() { method in class:MetalIconFactory.CheckBoxIcon
1305 public int getIconWidth() { method in class:MetalIconFactory.RadioButtonIcon
1349 public int getIconWidth() { method in class:MetalIconFactory.TreeComputerIcon
1433 public int getIconWidth() { method in class:MetalIconFactory.TreeHardDriveIcon
1478 public int getIconWidth() { method in class:MetalIconFactory.TreeFloppyDriveIcon
1623 public int getIconWidth() { return folderIcon16Size.width; } method in class:MetalIconFactory.FolderIcon16
1719 public int getIconWidth() { return fileIcon16Size.width; } method in class:MetalIconFactory.FileIcon16
1870 public int getIconWidth() { return treeControlSize.width; } method in class:MetalIconFactory.TreeControlIcon
1921 public int getIconWidth() { return menuArrowIconSize.width; } method in class:MetalIconFactory.MenuArrowIcon
1933 public int getIconWidth() { return menuArrowIconSize.width; } method in class:MetalIconFactory.MenuItemArrowIcon
2081 public int getIconWidth() { return menuCheckIconSize.width; } method in class:MetalIconFactory.CheckBoxMenuItemIcon
2253 public int getIconWidth() { return menuCheckIconSize.width; } method in class:MetalIconFactory.RadioButtonMenuItemIcon
2359 public int getIconWidth() { method in class:MetalIconFactory.VerticalSliderThumbIcon
2438 public int getIconWidth() { method in class:MetalIconFactory.HorizontalSliderThumbIcon
2546 public int getIconWidth() { method in class:MetalIconFactory.OceanVerticalSliderThumbIcon
2649 public int getIconWidth() { method in class:MetalIconFactory.OceanHorizontalSliderThumbIcon
[all...]
H A DMetalComboBoxButton.java135 iconWidth = comboIcon.getIconWidth();
220 ret.width = insets.left + getComboIcon().getIconWidth() + insets.right;
H A DMetalCheckBoxIcon.java100 public int getIconWidth() { method in class:MetalCheckBoxIcon
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DInternalDialog.java91 int lWidth = leftIcon.getIconWidth();
92 int rWidth = rightIcon.getIconWidth();
109 public int getIconWidth() { method in class:InternalDialog.MastheadIcon
118 return (leftIcon.getIconWidth() + gap + textWidth +
119 gap + rightIcon.getIconWidth());
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaIcon.java58 final int w = i.getIconWidth();
79 painter.paint(g, c, x, y, getIconWidth(), getIconHeight());
99 public int getIconWidth() { method in class:AquaIcon.DynamicallySizingJRSUIIcon
141 return getProgressiveOptimizedImage(img, getIconWidth(), getIconHeight());
176 g.drawImage(myImage, x, y, getIconWidth(), getIconHeight(), null);
182 public int getIconWidth() { method in class:AquaIcon.CachingScalingIcon
201 final BufferedImage img = new BufferedImage(getIconWidth(), getIconHeight(), BufferedImage.TYPE_INT_ARGB_PRE);
203 g.setClip(new Rectangle(0, 0, getIconWidth(), getIconHeight()));
204 painter.paint(g, null, 0, 0, getIconWidth(), getIconHeight());
225 return AquaUtils.getCImageCreator().createImageOfFile(file.getAbsolutePath(), getIconWidth(), getIconHeigh
[all...]
H A DAquaFocus.java93 public int getIconWidth() {
94 return icon.getIconWidth() + slack + slack;
146 public int getIconWidth() { method in class:AquaFocus.FocusedIcon
147 return icon.getIconWidth() + slack + slack;
152 paintBorder(c, g, x, y, getIconWidth(), getIconHeight());
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DColorIcon.java48 public int getIconWidth() { method in class:ColorIcon
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DSplashScreen.java58 setSize(screen.getIconWidth(), screen.getIconHeight());
63 int w = screen.getIconWidth() + i.left + i.right;
/openjdk7/jdk/test/javax/swing/border/
H A DTest6910490.java65 public int getIconWidth() { method in class:Test6910490
75 g.fillRect(x, y, getIconWidth(), getIconHeight());
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DMatteBorder.java124 color = (tileIcon.getIconWidth() == -1) ? Color.gray : null;
135 int tileW = tileIcon.getIconWidth();
180 int w = tileIcon.getIconWidth();
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifComboBoxUI.java212 b.x = b.x + b.width - HORIZ_MARGIN - arrowIcon.getIconWidth();
218 b.width = arrowIcon.getIconWidth();
243 return arrowIcon.getIconWidth() + (2 * HORIZ_MARGIN);
245 return arrowIcon.getIconWidth() + (3 * HORIZ_MARGIN) + 2;
295 int w = getIconWidth();
325 public int getIconWidth() { method in class:MotifComboBoxUI.MotifComboBoxArrowIcon
H A DMotifTreeCellRenderer.java104 public int getIconWidth() { method in class:MotifTreeCellRenderer.TreeLeafIcon
H A DMotifIconFactory.java167 public int getIconWidth() { method in class:MotifIconFactory.CheckBoxIcon
277 int w = getIconWidth();
349 public int getIconWidth() { method in class:MotifIconFactory.RadioButtonIcon
363 public int getIconWidth() { return 0; } method in class:MotifIconFactory.MenuItemCheckIcon
373 public int getIconWidth() { return 0; } method in class:MotifIconFactory.MenuItemArrowIcon
389 int w = getIconWidth();
457 public int getIconWidth() { return 10; } method in class:MotifIconFactory.MenuArrowIcon
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsIconFactory.java171 int width = getIconWidth();
271 public int getIconWidth() { method in class:WindowsIconFactory.FrameButtonIcon
314 public int getIconWidth() { return 13; } method in class:WindowsIconFactory.ResizeIcon
412 public int getIconWidth() { method in class:WindowsIconFactory.CheckBoxIcon
525 public int getIconWidth() { method in class:WindowsIconFactory.RadioButtonIcon
564 public int getIconWidth() { return 9; } method in class:WindowsIconFactory.CheckBoxMenuItemIcon
576 g.fillRoundRect(x+3,y+3, getIconWidth()-6, getIconHeight()-6,
580 public int getIconWidth() { return 12; } method in class:WindowsIconFactory.RadioButtonMenuItemIcon
591 g.fill3DRect(x,y,getIconWidth(), getIconHeight(), true);
595 public int getIconWidth() { retur method in class:WindowsIconFactory.MenuItemCheckIcon
609 public int getIconWidth() { return 4; } method in class:WindowsIconFactory.MenuItemArrowIcon
649 public int getIconWidth() { method in class:WindowsIconFactory.MenuArrowIcon
684 static int getIconWidth() { method in class:WindowsIconFactory.VistaMenuItemCheckIconFactory
757 public int getIconWidth() { method in class:WindowsIconFactory.VistaMenuItemCheckIconFactory.VistaMenuItemCheckIcon
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DIconView.java89 return c.getIconWidth();
/openjdk7/jdk/src/share/classes/sun/swing/icon/
H A DSortArrowIcon.java107 public int getIconWidth() { method in class:SortArrowIcon
/openjdk7/jdk/src/share/classes/sun/swing/plaf/windows/
H A DClassicSortArrowIcon.java91 public int getIconWidth() { method in class:ClassicSortArrowIcon
/openjdk7/jdk/test/javax/swing/JTable/
H A DTest6888156.java41 @Override public int getIconWidth() {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthMenuItemLayoutHelper.java133 getIconSize().setWidth(SynthIcon.getIconWidth(getIcon(), context));
168 SynthIcon.getIconWidth(getCheckIcon(), context));
175 SynthIcon.getIconWidth(getArrowIcon(), context));
/openjdk7/jdk/src/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java151 emptyIcon.width = sortArrow.getIconWidth();
185 int x = getWidth() - i.right - sortArrow.getIconWidth();
194 public int getIconWidth() { return width; } method in class:DefaultTableCellHeaderRenderer.EmptyIcon

Completed in 52 milliseconds

1234