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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDesktopManager.java110 void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); argument
117 void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight); argument
H A DDefaultDesktopManager.java415 * @param newWidth the new width
418 public void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
421 setBoundsForFrame(f, newX, newY, newWidth, newHeight);
431 g.drawRect( newX, newY, newWidth-1, newHeight-1);
437 currentBounds = new Rectangle (newX, newY, newWidth, newHeight);
457 public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
458 f.setBounds(newX, newY, newWidth, newHeight);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifDesktopPaneUI.java93 int newWidth, int newHeight) {
96 didResize = (f.getWidth() != newWidth || f.getHeight() != newHeight);
98 f.setBounds(newX, newY, newWidth, newHeight);
99 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
106 dragPane.setBounds(newX, newY, newWidth, newHeight);
107 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
158 int newWidth, int newHeight) {
159 setBoundsForFrame(f, newX, newY, newWidth, newHeight);
92 setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
157 resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java716 int newWidth = 0;
728 newWidth = getIntAttr(HTML.Attribute.WIDTH, -1);
729 if (newWidth > 0) {
737 if (newWidth <= 0) {
738 newWidth = newImage.getWidth(imageObserver);
739 if (newWidth <= 0) {
740 newWidth = DEFAULT_WIDTH;
753 Toolkit.getDefaultToolkit().prepareImage(newImage, newWidth,
769 width = newWidth;
779 width = newWidth;
864 imageUpdate(Image img, int flags, int x, int y, int newWidth, int newHeight ) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderBorder.java104 final int newWidth = width;
107 painter.paint(g, c, newX - 1, newY - 1, newWidth + 1, newHeight);
110 g.clipRect(newX, y, newWidth, height);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRMaskImage.java124 int newWidth = Math.max(minSizeX, blitMaskDimensions.width);
126 initBlitMask(blitMaskPixmap, newWidth, newHeight);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java213 int newWidth;
215 newWidth = mouseX - mouseXOffset;
217 newWidth = mouseXOffset - mouseX;
220 oldWidth, newWidth);
540 int oldWidth, int newWidth) {
541 resizingColumn.setWidth(newWidth);
557 int diff = newWidth - oldWidth;
950 int newWidth = oldWidth;
953 newWidth = newWidth
538 changeColumnWidth(TableColumn resizingColumn, JTableHeader th, int oldWidth, int newWidth) argument
[all...]
H A DBasicDesktopIconUI.java288 int newWidth, int newHeight) {
290 f.setBounds(newX, newY, newWidth, newHeight);
291 SwingUtilities.computeUnion(newX, newY, newWidth, newHeight, r);
287 moveAndRepaint(JComponent f, int newX, int newY, int newWidth, int newHeight) argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DCompositionArea.java218 int newWidth = (req==null) ? PASSIVE_WIDTH : (int)bounds.getWidth() + WIDTH_MARGIN;
219 int newFrameWidth = newWidth + compositionWindow.getInsets().left
221 setPreferredSize(new Dimension(newWidth, newHeight));
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTarget.java691 int newWidth = size.width - (i.left + i.right);
694 if (newWidth != inner.width || newHeight != inner.height)
695 inner.setSize(newWidth, newHeight);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthDesktopPaneUI.java416 public void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight) { argument
417 super.setBoundsForFrame(f, newX, newY, newWidth, newHeight);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultCaret.java1873 Integer newWidth = (Integer) evt.getNewValue();
1874 if (newWidth != null) {
1875 caretWidth = newWidth.intValue();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c594 int32_t newWidth, int32_t newHeight) {
606 totAmt = newWidth * newHeight;
611 DTRACE_PRINTLN4("checkNewXineramaScreen() x=%i y=%i w=%i h=%i\n",newX, newY, newWidth, newHeight);
617 if (INTERSECTS(newX, newX + newWidth, newY, newY + newHeight,
622 horiz = MIN(newX + newWidth, fbrects[i].x + fbrects[i].width) -
592 checkNewXineramaScreen(JNIEnv* env, jobject peer, struct FrameData* wdata, int32_t newX, int32_t newY, int32_t newWidth, int32_t newHeight) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp1782 int newWidth = w + m_insets.left + m_insets.right; local
1785 (env)->SetIntField(target, AwtComponent::widthID, newWidth);
1789 (env)->SetIntField(peer, AwtWindow::sysWID, newWidth);

Completed in 143 milliseconds