Searched refs:newHeight (Results 1 - 14 of 14) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DDesktopManager.java161 * @param newHeight the new height
163 void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); argument
180 * @param newHeight the new height
182 void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); argument
H A DDefaultDesktopManager.java414 * @param newHeight the new height
416 public void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
419 setBoundsForFrame(f, newX, newY, newWidth, newHeight);
429 g.drawRect( newX, newY, newWidth-1, newHeight-1);
435 currentBounds = new Rectangle (newX, newY, newWidth, newHeight);
455 public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
456 f.setBounds(newX, newY, newWidth, newHeight);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifDesktopPaneUI.java95 int newWidth, int newHeight) {
98 didResize = (f.getWidth() != newWidth || f.getHeight() != newHeight);
100 f.setBounds(newX, newY, newWidth, newHeight);
101 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
108 dragPane.setBounds(newX, newY, newWidth, newHeight);
109 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
160 int newWidth, int newHeight) {
161 setBoundsForFrame(f, newX, newY, newWidth, newHeight);
94 setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
159 resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DImageView.java735 int newHeight = 0;
750 newHeight = getIntAttr(HTML.Attribute.HEIGHT, -1);
751 if (newHeight > 0) {
762 if (newHeight <= 0) {
763 newHeight = newImage.getHeight(imageObserver);
764 if (newHeight <= 0) {
765 newHeight = DEFAULT_HEIGHT;
772 newHeight,
791 height = newHeight;
800 height = newHeight;
[all...]
/openjdk10/jdk/test/javax/swing/plaf/synth/8081411/
H A Dbug8081411.java76 int newHeight = height * 37;
78 newWidth, newHeight);
79 paintAndCheckIcon(centeredIcon, synthContext, newWidth, newHeight);
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/xr/
H A DXRMaskImage.java128 int newHeight = Math.max(minSizeY, blitMaskDimensions.height);
129 initBlitMask(blitMaskPixmap, newWidth, newHeight);
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaTableHeaderBorder.java106 final int newHeight = height;
108 painter.paint(g, c, newX - 1, newY - 1, newWidth + 1, newHeight);
H A DAquaTabbedPaneCopyFromBasicUI.java733 final int newHeight = calculateTabHeight(tabPlacement, i, fontHeight);
734 if (height != newHeight) {
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicDesktopIconUI.java340 * @param newHeight a new height
343 int newWidth, int newHeight) {
345 f.setBounds(newX, newY, newWidth, newHeight);
346 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
342 moveAndRepaint(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
H A DBasicTabbedPaneUI.java830 int newHeight = calculateTabHeight(tabPlacement, i,fontHeight);
831 if (height != newHeight) {
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/im/
H A DCompositionArea.java213 int newHeight = (int)maxCharBoundsRec.getHeight() + HEIGHT_MARGIN;
214 int newFrameHeight = newHeight +compositionWindow.getInsets().top
221 setPreferredSize(new Dimension(newWidth, newHeight));
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/dnd/
H A DDropTarget.java702 int newHeight = size.height - (i.top + i.bottom);
704 if (newWidth != inner.width || newHeight != inner.height)
705 inner.setSize(newWidth, newHeight);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthDesktopPaneUI.java417 public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
418 super.setBoundsForFrame(f, newX, newY, newWidth, newHeight);
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Window.cpp1843 int newHeight = h + m_insets.top + m_insets.bottom; local
1846 (env)->SetIntField(target, AwtComponent::heightID, ScaleDownY(newHeight));
1850 (env)->SetIntField(peer, AwtWindow::sysHID, ScaleDownY(newHeight));

Completed in 287 milliseconds