Package gnu.java.awt

Examples of gnu.java.awt.ComponentReshapeEvent


    // to learn why we did it this way. If you change this code, make
    // sure that the peer->AWT bounds update still works.
    // (for instance: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29448 )
    if (e instanceof ComponentReshapeEvent)
      {
        ComponentReshapeEvent reshape = (ComponentReshapeEvent) e;
        x = reshape.x;
        y = reshape.y;
        width = reshape.width;
        height = reshape.height;
        return;
View Full Code Here

TOP

Related Classes of gnu.java.awt.ComponentReshapeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.