Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4138965

Solaris: AWT generates double RESIZE events for Frames causing excessive repaint

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.2.0
    • 1.1.5, 1.1.6
    • client-libs
    • None
    • 1.2fcs
    • generic, sparc
    • generic, solaris_2.5.1
    • Verified

      The AWT Component/MFramePeer classes conspire to give double events when the Frame is resized. The causes excessive screen flash when an application starts up.

      To read the code, COMPONENT_MOVED and COMPONENT_RESIZED events are generated
      from Component.reshape. However, Component.reshape also calls peer.setBounds,
      which in itself is reasonable, except that if you follow the code, if you
      are resizing a Frame, you end up in MFramePeer.handleResize() or MFramePeer.handleMoved() which themselves post the corresponding event as well.

      Thus, you get *two* RESIZE events posted, and each event will cause the
      Frame to call invalidate()/validate()/repaint(), because of Window.dispatchEventImpl. Thus the initial resize of the Frame causes it be
      be repainted twice.

      See also bug 4138972 which causes the Frame to be repainted a THIRD time
      because of RESIZE events being generated when a frame is moved.

            duke J. Duke
            jjg Jonathan Gibbons
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: