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

12

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXListPeer.java370 repaint(PAINT_HSCROLL);
373 repaint(PAINT_VSCROLL);
382 public void repaint() { method in class:XListPeer
383 repaint(getFirstVisibleItem(), getLastVisibleItem(), PAINT_ALL);
386 private void repaint(int options) { method in class:XListPeer
387 repaint(getFirstVisibleItem(), getLastVisibleItem(), options);
390 private void repaint(int firstItem, int lastItem, int options) { method in class:XListPeer
391 repaint(firstItem, lastItem, options, null, null);
397 * the component. The areas to repaint is specified by the option
406 * @param firstItem the position of the first item of the range to repaint
412 private void repaint(int firstItem, int lastItem, int options, Rectangle source, Point distance) { method in class:XListPeer
[all...]
H A DXTextAreaPeer.java301 * this method is called when the repaint instruction has been used
304 public void repaint() { method in class:XTextAreaPeer
307 textPane.repaint();
370 jtext.repaint();
426 jtext.repaint();
663 getComponent().repaint();
668 getComponent().repaint();
H A DXWindow.java252 // We need a version of setBackground that does not call repaint !!
436 // We need a version of setBackground that does not call repaint !!
493 public void repaint(int x,int y, int width, int height) { method in class:XWindow
508 public void repaint() { method in class:XWindow
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java1978 void setFocusIndex(int index, boolean repaint) { argument
1979 if (repaint && !isRunsDirty) {
1996 tabPane.repaint(getTabBounds(tabPane, index));
3379 tabPane.repaint(vpRect.x+vpRect.width, vpRect.y,
3388 tabPane.repaint(vpRect.x-contentInsets.right, vpRect.y,
3397 tabPane.repaint(vpRect.x, vpRect.y-contentInsets.bottom,
3407 tabPane.repaint(vpRect.x, vpRect.y+vpRect.height,
3521 pane.repaint();
3524 pane.repaint();
3569 tabPane.repaint();
[all...]
H A DBasicTreeUI.java169 * or ANCHOR_SELECTION_PATH_PROPERTY will not generate a repaint. */
503 tree.repaint();
2092 tree.repaint(editingBounds);
2173 editingComponent.repaint();
2436 private void setLeadSelectionPath(TreePath newPath, boolean repaint) { argument
2437 Rectangle bounds = repaint ?
2448 if (repaint) {
2450 tree.repaint(getRepaintPathBounds(bounds));
2454 tree.repaint(getRepaintPathBounds(bounds));
2515 * Invokes <code>repaint</cod
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java1842 void setFocusIndex(final int index, final boolean repaint) { argument
1843 if (repaint && !isRunsDirty) {
1859 tabPane.repaint(getTabBounds(tabPane, index));
3187 tabPane.repaint(vpRect.x + vpRect.width, vpRect.y, contentInsets.left, vpRect.height);
3192 tabPane.repaint(vpRect.x - contentInsets.right, vpRect.y, contentInsets.right, vpRect.height);
3197 tabPane.repaint(vpRect.x, vpRect.y - contentInsets.bottom, vpRect.width, contentInsets.bottom);
3203 tabPane.repaint(vpRect.x, vpRect.y + vpRect.height, vpRect.width, contentInsets.top);
3299 pane.repaint();
3301 pane.repaint();
3338 tabPane.repaint();
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java669 repaint();
970 * but should instead use the <code>repaint</code> method to
990 * @see #repaint
1800 repaint();
2645 parent.repaint(r.x, r.y, r.width, r.height);
2679 repaint();
2702 repaint();
2732 repaint();
2754 repaint();
4792 public void repaint(lon method in class:JComponent
4807 public void repaint(Rectangle r) { method in class:JComponent
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java330 * True when the object should ignore all repaint events.
1624 repaint();
1694 repaint();
2312 parent.repaint(oldX, oldY, oldWidth, oldHeight);
2314 repaint();
3197 * a call to <code>repaint</code>. You can assume that
3204 * <code>repaint</code>.
3222 * @see #repaint()
3285 public void repaint() { method in class:Component
3286 repaint(
3304 public void repaint(long tm) { method in class:Component
3328 public void repaint(int x, int y, int width, int height) { method in class:Component
3354 public void repaint(long tm, int x, int y, int width, int height) { method in class:Component
[all...]

Completed in 103 milliseconds

12