src/java.desktop/unix/classes/sun/awt/X11/XFramePeer.java

Print this page


   1 /*
   2  * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 107         }
 108         setExtendedState(state);
 109     }
 110 
 111     @SuppressWarnings("deprecation")
 112     public void setMenuBar(MenuBar mb) {
 113         // state_lock should always be the second after awt_lock
 114         XToolkit.awtLock();
 115         try {
 116             synchronized(getStateLock()) {
 117                 if (mb == menubar) return;
 118                 if (mb == null) {
 119                     if (menubar != null) {
 120                         menubarPeer.xSetVisible(false);
 121                         menubar = null;
 122                         menubarPeer.dispose();
 123                         menubarPeer = null;
 124                     }
 125                 } else {
 126                     menubar = mb;
 127                     menubarPeer = (XMenuBarPeer) mb.getPeer();

 128                     if (menubarPeer != null) {
 129                         menubarPeer.init((Frame)target);
 130                     }
 131                 }
 132             }
 133         } finally {
 134             XToolkit.awtUnlock();
 135         }
 136 
 137         reshapeMenubarPeer();
 138     }
 139 
 140     XMenuBarPeer getMenubarPeer() {
 141         return menubarPeer;
 142     }
 143 
 144     int getMenuBarHeight() {
 145         if (menubarPeer != null) {
 146             return menubarPeer.getDesiredHeight();
 147         } else {


   1 /*
   2  * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 107         }
 108         setExtendedState(state);
 109     }
 110 
 111     @SuppressWarnings("deprecation")
 112     public void setMenuBar(MenuBar mb) {
 113         // state_lock should always be the second after awt_lock
 114         XToolkit.awtLock();
 115         try {
 116             synchronized(getStateLock()) {
 117                 if (mb == menubar) return;
 118                 if (mb == null) {
 119                     if (menubar != null) {
 120                         menubarPeer.xSetVisible(false);
 121                         menubar = null;
 122                         menubarPeer.dispose();
 123                         menubarPeer = null;
 124                     }
 125                 } else {
 126                     menubar = mb;
 127                     menubarPeer = AWTAccessor.getMenuComponentAccessor()
 128                                              .getPeer(mb);
 129                     if (menubarPeer != null) {
 130                         menubarPeer.init((Frame)target);
 131                     }
 132                 }
 133             }
 134         } finally {
 135             XToolkit.awtUnlock();
 136         }
 137 
 138         reshapeMenubarPeer();
 139     }
 140 
 141     XMenuBarPeer getMenubarPeer() {
 142         return menubarPeer;
 143     }
 144 
 145     int getMenuBarHeight() {
 146         if (menubarPeer != null) {
 147             return menubarPeer.getDesiredHeight();
 148         } else {