Searched refs:RepaintManager (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingPaintEventDispatcher.java41 * will forward the request to the RepaintManager for eventual painting.
59 RepaintManager rm = RepaintManager.currentManager(appContext);
72 RepaintManager rm = RepaintManager.currentManager(appContext);
88 RepaintManager.currentManager(appContext).
H A DRepaintManager.java54 * As of 1.6 <code>RepaintManager</code> handles repaint requests
62 public class RepaintManager class
65 * Whether or not the RepaintManager should handle paint requests
120 private static final Object repaintManagerKey = RepaintManager.class;
228 * Return the RepaintManager for the calling thread given a Component.
231 * be used by an overridden version to return a different RepaintManager
233 * @return the RepaintManager object
235 public static RepaintManager currentManager(Component c) {
238 // RepaintManager, DisplayChangedRunnable will need to be modified
244 * Returns the RepaintManager fo
291 public RepaintManager() { method in class:RepaintManager
299 private RepaintManager(short bufferStrategyType) { method in class:RepaintManager
[all...]
H A DJApplet.java495 * <code>time</code> milliseconds. Refer to <code>RepaintManager</code>
503 * @see RepaintManager
507 if (RepaintManager.HANDLE_TOP_LEVEL_PAINT) {
508 RepaintManager.currentManager(this).addDirtyRegion(
H A DJWindow.java596 * <code>time</code> milliseconds. Refer to <code>RepaintManager</code>
604 * @see RepaintManager
608 if (RepaintManager.HANDLE_TOP_LEVEL_PAINT) {
609 RepaintManager.currentManager(this).addDirtyRegion(
H A DJViewport.java473 * <code>RepaintManager</code> is then invoked with
487 // And let the RepaintManager it does not have to validate from
489 RepaintManager rm = RepaintManager.currentManager(this);
1087 RepaintManager rm = RepaintManager.currentManager(this);
1377 * only one paint is performed by the <code>RepaintManager</code>.
1529 RepaintManager rm = RepaintManager.currentManager(this);
1585 RepaintManager r
[all...]
H A DJDialog.java1119 * {@code time} milliseconds. Refer to {@code RepaintManager}
1127 * @see RepaintManager
1131 if (RepaintManager.HANDLE_TOP_LEVEL_PAINT) {
1132 RepaintManager.currentManager(this).addDirtyRegion(
H A DJFrame.java764 * <code>time</code> milliseconds. Refer to <code>RepaintManager</code>
772 * @see RepaintManager
776 if (RepaintManager.HANDLE_TOP_LEVEL_PAINT) {
777 RepaintManager.currentManager(this).addDirtyRegion(
H A DJRootPane.java380 RepaintManager.currentManager(this).doubleBufferingChanged(this);
831 RepaintManager.currentManager(this).
H A DJComponent.java1002 RepaintManager repaintManager = RepaintManager.currentManager(this);
1082 // while turning off double buffering at the RepaintManager level, this
1085 RepaintManager rm = RepaintManager.currentManager(this);
3348 * This is invoked by the <code>RepaintManager</code> if
3358 * Returns true if the <code>RepaintManager</code>
4769 RepaintManager.currentManager(this).resetDoubleBuffer();
4790 * @see RepaintManager#addDirtyRegion
4793 RepaintManager
[all...]
H A DDefaultDesktopManager.java664 RepaintManager currentManager = RepaintManager.currentManager(f);
H A DBufferStrategyPaintManager.java51 class BufferStrategyPaintManager extends RepaintManager.PaintManager {
H A DUIManager.java1460 if (RepaintManager.HANDLE_TOP_LEVEL_PAINT) {
/openjdk7/jdk/test/javax/swing/RepaintManager/6608456/
H A Dbug6608456.java28 * @summary tests if delegate RepaintManager gets invoked.
40 import javax.swing.RepaintManager;
51 RepaintManager.setCurrentManager(new TestRepaintManager());
72 // trigger repaint for delegate RepaintManager
94 static class TestRepaintManager extends RepaintManager {
97 if (RepaintManager.currentManager(c) == this) {
131 RepaintManager repaintManager) {
136 JComponent.class, RepaintManager.class);
/openjdk7/jdk/test/javax/swing/RepaintManager/IconifyTest/
H A DIconifyTest.java26 * @summary Makes sure that RepaintManager doesn't attempt to repaint
52 RepaintManager rm = RepaintManager.currentManager(null);
/openjdk7/jdk/test/javax/swing/RepaintManager/7013453/
H A Dbug7013453.java40 Method getPaintManagerMethod = RepaintManager.class.getDeclaredMethod("getPaintManager");
44 final Object paintManager = getPaintManagerMethod.invoke(RepaintManager.currentManager(new JLabel()));
/openjdk7/jdk/src/share/classes/com/sun/java/swing/
H A DSwingUtilities3.java41 import javax.swing.RepaintManager;
57 * The {@code clientProperty} key for delegate {@code RepaintManager}
63 * Registers delegate RepaintManager for {@code JComponent}.
66 RepaintManager repaintManager) {
86 * depends on current RepaintManager's RepaintManager.PaintManager
115 * Returns delegate {@code RepaintManager} for {@code component} hierarchy.
117 public static RepaintManager getDelegateRepaintManager(Component
119 RepaintManager delegate = null;
128 delegate = (RepaintManager)
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java64 import javax.swing.RepaintManager;
216 SwingUtilities3.setDelegateRepaintManager(delegate, new RepaintManager() {

Completed in 104 milliseconds