Searched defs:newHeight (Results 1 - 7 of 7) 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.java416 * @param newHeight the new height
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/javax/swing/plaf/basic/
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/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/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/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,
624 vert = MIN(newY + newHeight, fbrects[i].y + fbrects[i].height) -
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.cpp1783 int newHeight = h + m_insets.top + m_insets.bottom; local
1786 (env)->SetIntField(target, AwtComponent::heightID, newHeight);
1790 (env)->SetIntField(peer, AwtWindow::sysHID, newHeight);

Completed in 80 milliseconds