Searched defs:repaint (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DTranslucentWindowPainter.java129 * @param repaint indicates if the window should be completely repainted
132 public void updateWindow(boolean repaint) { argument
134 Image bb = getBackBuffer(repaint);
136 if (repaint) {
147 repaint = true;
H A DWWindowPeer.java713 private void updateWindow(boolean repaint) { argument
723 currentPainter.updateWindow(repaint);
H A DWComponentPeer.java236 public void repaint(long tm, int x, int y, int width, int height) { method in class:WComponentPeer
863 // if not waiting for native painting repaint damaged area
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListCellRenderer.java48 * <code>repaint</code>,
223 public void repaint() {} method in class:DefaultListCellRenderer
238 public void repaint(long tm, int x, int y, int width, int height) {} method in class:DefaultListCellRenderer
246 public void repaint(Rectangle r) {} method in class:DefaultListCellRenderer
H A DJApplet.java496 * for details on how the repaint is handled.
506 public void repaint(long time, int x, int y, int width, int height) { method in class:JApplet
512 super.repaint(time, x, y, width, height);
H A DJWindow.java597 * for details on how the repaint is handled.
607 public void repaint(long time, int x, int y, int width, int height) { method in class:JWindow
613 super.repaint(time, x, y, width, height);
H A DJDialog.java1120 * for details on how the repaint is handled.
1130 public void repaint(long time, int x, int y, int width, int height) { method in class:JDialog
1136 super.repaint(time, x, y, width, height);
H A DJFrame.java765 * for details on how the repaint is handled.
775 public void repaint(long time, int x, int y, int width, int height) { method in class:JFrame
781 super.repaint(time, x, y, width, height);
H A DJViewport.java56 * if they aren't, stop and repaint the whole viewport.
57 * <li>If the viewport is obscured by an ancestor, stop and repaint the whole
60 * the viewport, stop and repaint the whole view region.
63 * <li>Message the view to repaint the newly visible region.
65 * is smaller than the viewport size a timer is kicked off to repaint the
80 * repaint the whole viewport, which can cause slower performance than the
225 // the timer fires if waitingForRepaint is true, repaint is invoked.
231 // A Timer is used instead of just a repaint as it appeared to offer
245 * repaint manager is not cleared which then allows for the repaint
1386 public void repaint(long tm, int x, int y, int w, int h) { method in class:JViewport
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableCellRenderer.java66 * <code>revalidate</code>, <code>repaint</code>, and
317 public void repaint(long tm, int x, int y, int width, int height) {} method in class:DefaultTableCellRenderer
324 public void repaint(Rectangle r) { } method in class:DefaultTableCellRenderer
333 public void repaint() { method in class:DefaultTableCellRenderer
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarPeer.java94 public void repaint() { method in class:XScrollbarPeer
111 repaint();
206 repaint();
212 repaint();
H A DXWarningWindow.java243 public void repaint() { method in class:XWarningWindow
376 repaint();
H A DXChoicePeer.java183 repaint();
202 repaint();
236 repaint();
251 repaint();
266 repaint();
281 repaint();
327 repaint();
449 // NOTE: We get a repaint when Choice.select()
587 unfurledChoice.repaint();
607 repaint();
925 public void repaint() { method in class:XChoicePeer.UnfurledChoice
[all...]
H A DXEmbedChildProxyPeer.java86 public void repaint(long tm, int x, int y, int width, int height) {} method in class:XEmbedChildProxyPeer
H A DXTextFieldPeer.java151 xtext.repaint();
162 xtext.repaint();
219 repaint();
327 xtext.repaint();
370 public void repaint() { method in class:XTextFieldPeer
371 if (xtext != null) xtext.repaint();
H A DXComponentPeer.java411 repaint();
434 public void repaint(long tm, int x, int y, int width, int height) { method in class:XComponentPeer
435 repaint();
683 repaint();
691 repaint();
717 // as it stands currently we dont need to do layout or repaint since
720 // target.repaint();
721 //repaint()?
831 // if not waiting for native painting repaint damaged area
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellRenderer.java83 * <code>repaint</code>,
602 public void repaint(long tm, int x, int y, int width, int height) {} method in class:DefaultTreeCellRenderer
609 public void repaint(Rectangle r) {} method in class:DefaultTreeCellRenderer
618 public void repaint() {} method in class:DefaultTreeCellRenderer
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaProgressBarUI.java118 progressBar.repaint();
132 progressBar.repaint();
420 protected void repaint() { method in class:AquaProgressBarUI
423 progressBar.repaint();
427 progressBar.repaint(repaintRect);
433 private long previousDelay; // used to tune the repaint interval
468 repaint();
488 repaint();
H A DAquaSpinnerUI.java204 public void repaint() { method in class:AquaSpinnerUI.TransparentButton
209 spinPainter.repaint();
211 super.repaint();
H A DAquaTabbedPaneUI.java693 tabPane.repaint(x, y, w, h);
760 comp.repaint();
765 if (selected >= 0 && selected < theRects.length) comp.repaint(theRects[selected]);
775 tabPane.repaint();
803 pane.repaint(sWorkingRect);
851 repaint(pane, pressedTab);
870 repaint(pane, trackingTab);
894 repaint(pane, trackingTab);
926 void repaint(final JTabbedPane pane, final int tab) { method in class:AquaTabbedPaneUI.MouseHandler
929 pane.repaint(visibleTabStat
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCWarningWindow.java170 repaint();
370 private void repaint() { method in class:CWarningWindow
423 repaint();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java50 * If true, when some of the bits are available a repaint is done.
52 * This is set to false as swing does not offer a repaint that takes a
608 private void repaint(long delay) { method in class:ImageView
610 container.repaint(delay, fBounds.x, fBounds.y, fBounds.width,
861 // preference changed, or repaint, we just reset the fWidth/fHeight as
874 repaint(0);
890 // No need to resize or repaint, still in the process
920 // No need to resize or repaint, still in the process of
934 repaint(0);
937 repaint(sIncRat
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNullComponentPeer.java114 public void repaint(long tm, int x, int y, int width, int height) { method in class:NullComponentPeer
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java87 public void repaint(long tm, int x, int y, int width, int height){}; method in class:StubComponentPeer
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultCaret.java48 * repaint the most recent bounding box. The caret also tracks change
52 * is controlled by <code>UpdatePolicy</code> property. The repaint of the
78 * should also be reimplemented to cause a repaint for the area needed
81 * This enables the caret to repaint in a thread-safe manner when the
234 * Cause the caret to be painted. The repaint
243 protected final synchronized void repaint() { method in class:DefaultCaret
245 component.repaint(x, y, width, height);
266 repaint();
635 repaint();
637 // This will potentially cause a repaint o
[all...]

Completed in 107 milliseconds

12