Examples of FramePeer


Examples of java.awt.peer.FramePeer

        boolean oldResizable = this.resizable;
        boolean testvalid = false;

        synchronized (this) {
            this.resizable = resizable;
            FramePeer peer = (FramePeer)this.peer;
            if (peer != null) {
                peer.setResizable(resizable);
                testvalid = true;
            }
        }

        // On some platforms, changing the resizable state affects
View Full Code Here

Examples of java.awt.peer.FramePeer

    public synchronized void setExtendedState(int state) {
        if ( !isFrameStateSupported( state ) ) {
            return;
        }
        this.state = state;
        FramePeer peer = (FramePeer)this.peer;
        if (peer != null) {
            peer.setState(state);
        }
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

     * @return  a bitwise mask of frame state constants
     * @see     #setExtendedState(int)
     * @since 1.4
     */
    public synchronized int getExtendedState() {
        FramePeer peer = (FramePeer)this.peer;
        if (peer != null) {
            state = peer.getState();
        }
        return state;
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

     * @see #getMaximizedBounds()
     * @since 1.4
     */
    public synchronized void setMaximizedBounds(Rectangle bounds) {
        this.maximizedBounds = bounds;
        FramePeer peer = (FramePeer)this.peer;
        if (peer != null) {
            peer.setMaximizedBounds(bounds);
        }
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

            return;
        }
        synchronized (getTreeLock()) {
            if (m == menuBar) {
                menuBar = null;
                FramePeer peer = (FramePeer)this.peer;
                if (peer != null) {
                    mbManagement = true;
                    if (valid) {
                        invalidate();
                    }
                    peer.setMenuBar(null);
                    m.removeNotify();
                }
                m.parent = null;
            } else {
                super.remove(m);
View Full Code Here

Examples of java.awt.peer.FramePeer

     * @see Component#isDisplayable
     * @see #addNotify
     */
    public void removeNotify() {
        synchronized (getTreeLock()) {
            FramePeer peer = (FramePeer)this.peer;
            if (peer != null) {
                // get the latest Frame state before disposing
                getState();

                if (menuBar != null) {
                    mbManagement = true;
                    peer.setMenuBar(null);
                    menuBar.removeNotify();
                }
            }
            super.removeNotify();
        }
View Full Code Here

Examples of java.awt.peer.FramePeer

    public void addNotify() {
  synchronized (getTreeLock()) {
      if (peer == null) {
    peer = getToolkit().createFrame(this);
      }
      FramePeer p = (FramePeer)peer;
      MenuBar menuBar = this.menuBar;
      if (menuBar != null) {
          mbManagement = true;
    menuBar.addNotify();
    p.setMenuBar(menuBar);
      }
      p.setMaximizedBounds(maximizedBounds);
      super.addNotify();
  }
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

        }


        synchronized(this) {
            this.title = title;
            FramePeer peer = (FramePeer)this.peer;
            if (peer != null) {
                peer.setTitle(title);
            }
        }
        firePropertyChange("title", oldTitle, title);
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

     *            with platform.           
     * @see       #getIconImage
     */
    public synchronized void setIconImage(Image image) {
  this.icon = image;
      FramePeer peer = (FramePeer)this.peer;
  if (peer != null) {
      peer.setIconImage(image);
  }
    }
View Full Code Here

Examples of java.awt.peer.FramePeer

      }
      menuBar = mb;
      if (menuBar != null) {
          menuBar.parent = this;

    FramePeer peer = (FramePeer)this.peer;
    if (peer != null) {
        mbManagement = true;
        menuBar.addNotify();
        if (valid) {
            invalidate();
        }
        peer.setMenuBar(menuBar);
    }
      }
  }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.