Searched defs:iconWidth (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Window.h38 jfieldID iconWidth; member in struct:MWindowPeerIDs
H A Dawt_p.h223 int iconWidth; member in struct:FrameData
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXIconWindow.java42 int iconWidth = 0; field in class:XIconWindow
225 if (img != null && iconWidth != 0 && iconHeight != 0) {
228 WritableRaster raster = model.createCompatibleWritableRaster(iconWidth, iconHeight);
235 g.fillRect(0, 0, iconWidth, iconHeight);
239 g.drawImage(img, 0, 0, iconWidth, iconHeight, null);
252 if (bi == null || iconWidth == 0 || iconHeight == 0) {
260 iconWidth,
289 int bpsl = paddedwidth(iconWidth*bpp, slp) >> 3;
290 if (((bpsl << 3) / bpp) < iconWidth) {
300 iconWidth,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifDesktopPaneUI.java89 int iconWidth, iconHeight; field in class:MotifDesktopPaneUI.MotifDesktopManager
188 iconWidth = iconSize.width;
208 int w = iconWidth;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java582 private int findCenteredX(int x, int iconWidth) { argument
584 ? x - (int)Math.ceil(iconWidth / 2.0)
585 : x - (int)Math.floor(iconWidth / 2.0);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1603 private int findCenteredX(int x, int iconWidth) { argument
1605 ? x - (int)Math.ceil(iconWidth / 2.0)
1606 : x - (int)Math.floor(iconWidth / 2.0);

Completed in 37 milliseconds