1 /*
   2  * Copyright (c) 2002, 2010, 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
  23  * questions.
  24  */
  25 package sun.awt.X11;
  26 
  27 import java.awt.Color;
  28 import java.awt.Dimension;
  29 import java.awt.Font;
  30 import java.awt.FontMetrics;
  31 import java.awt.Frame;
  32 import java.awt.Graphics;
  33 import java.awt.Insets;
  34 import java.awt.MenuBar;
  35 import java.awt.Rectangle;
  36 import java.awt.peer.FramePeer;
  37 import sun.util.logging.PlatformLogger;
  38 import sun.awt.AWTAccessor;
  39 
  40 class XFramePeer extends XDecoratedPeer implements FramePeer {
  41     private static PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XFramePeer");
  42     private static PlatformLogger stateLog = PlatformLogger.getLogger("sun.awt.X11.states");
  43     private static PlatformLogger insLog = PlatformLogger.getLogger("sun.awt.X11.insets.XFramePeer");
  44 
  45     XMenuBarPeer menubarPeer;
  46     MenuBar menubar;
  47     int state;
  48     private Boolean undecorated;
  49 
  50     private static final int MENUBAR_HEIGHT_IF_NO_MENUBAR = 0;
  51     private int lastAppliedMenubarHeight = MENUBAR_HEIGHT_IF_NO_MENUBAR;
  52 
  53     XFramePeer(Frame target) {
  54         super(target);
  55     }
  56 
  57     XFramePeer(XCreateWindowParams params) {
  58         super(params);
  59     }
  60 
  61     void preInit(XCreateWindowParams params) {
  62         super.preInit(params);
  63         Frame target = (Frame)(this.target);
  64         // set the window attributes for this Frame
  65         winAttr.initialState = target.getExtendedState();
  66         state = 0;
  67         undecorated = Boolean.valueOf(target.isUndecorated());
  68         winAttr.nativeDecor = !target.isUndecorated();
  69         if (winAttr.nativeDecor) {
  70             winAttr.decorations = winAttr.AWT_DECOR_ALL;
  71         } else {
  72             winAttr.decorations = winAttr.AWT_DECOR_NONE;
  73         }
  74         winAttr.functions = MWMConstants.MWM_FUNC_ALL;
  75         winAttr.isResizable = true; // target.isResizable();
  76         winAttr.title = target.getTitle();
  77         winAttr.initialResizability = target.isResizable();
  78         if (log.isLoggable(PlatformLogger.Level.FINE)) {
  79             log.fine("Frame''s initial attributes: decor {0}, resizable {1}, undecorated {2}, initial state {3}",
  80                      Integer.valueOf(winAttr.decorations), Boolean.valueOf(winAttr.initialResizability),
  81                      Boolean.valueOf(!winAttr.nativeDecor), Integer.valueOf(winAttr.initialState));
  82         }
  83     }
  84 
  85     void postInit(XCreateWindowParams params) {
  86         super.postInit(params);
  87         setupState(true);
  88     }
  89 
  90     @Override
  91     boolean isTargetUndecorated() {
  92         if (undecorated != null) {
  93             return undecorated.booleanValue();
  94         } else {
  95             return ((Frame)target).isUndecorated();
  96         }
  97     }
  98 
  99     void setupState(boolean onInit) {
 100         if (onInit) {
 101             state = winAttr.initialState;
 102         }
 103         if ((state & Frame.ICONIFIED) != 0) {
 104             setInitialState(XUtilConstants.IconicState);
 105         } else {
 106             setInitialState(XUtilConstants.NormalState);
 107         }
 108         setExtendedState(state);
 109     }
 110 
 111     public void setMenuBar(MenuBar mb) {
 112         // state_lock should always be the second after awt_lock
 113         XToolkit.awtLock();
 114         try {
 115             synchronized(getStateLock()) {
 116                 if (mb == menubar) return;
 117                 if (mb == null) {
 118                     if (menubar != null) {
 119                         menubarPeer.xSetVisible(false);
 120                         menubar = null;
 121                         menubarPeer.dispose();
 122                         menubarPeer = null;
 123                     }
 124                 } else {
 125                     menubar = mb;
 126                     menubarPeer = (XMenuBarPeer) mb.getPeer();
 127                     if (menubarPeer != null) {
 128                         menubarPeer.init((Frame)target);
 129                     }
 130                 }
 131             }
 132         } finally {
 133             XToolkit.awtUnlock();
 134         }
 135 
 136         reshapeMenubarPeer();
 137     }
 138 
 139     XMenuBarPeer getMenubarPeer() {
 140         return menubarPeer;
 141     }
 142 
 143     int getMenuBarHeight() {
 144         if (menubarPeer != null) {
 145             return menubarPeer.getDesiredHeight();
 146         } else {
 147             return MENUBAR_HEIGHT_IF_NO_MENUBAR;
 148         }
 149     }
 150 
 151     void updateChildrenSizes() {
 152         super.updateChildrenSizes();
 153         int height = getMenuBarHeight();
 154 
 155         // XWindow.reshape calls XBaseWindow.xSetBounds, which acquires
 156         // the AWT lock, so we have to acquire the AWT lock here
 157         // before getStateLock() to avoid a deadlock with the Toolkit thread
 158         // when this method is called on the EDT.
 159         XToolkit.awtLock();
 160         try {
 161             synchronized(getStateLock()) {
 162                 int width = dimensions.getClientSize().width;
 163                 if (menubarPeer != null) {
 164                     menubarPeer.reshape(0, 0, width, height);
 165                 }
 166             }
 167         } finally {
 168             XToolkit.awtUnlock();
 169         }
 170     }
 171 
 172     /**
 173      * In addition to reshaping menubarPeer (by using 'updateChildrenSizes')
 174      * this method also performs some frame reaction on this (i.e. layouts
 175      * other frame children, if required)
 176      */
 177     final void reshapeMenubarPeer() {
 178         XToolkit.executeOnEventHandlerThread(
 179             target,
 180             new Runnable() {
 181                 public void run() {
 182                     updateChildrenSizes();
 183                     boolean heightChanged = false;
 184 
 185                     int height = getMenuBarHeight();
 186                         // Neither 'XToolkit.awtLock()' nor 'getStateLock()'
 187                         // is acquired under this call, and it looks to run
 188                         // thread-safely. I currently see no reason to move
 189                         // it under following 'synchronized' clause.
 190 
 191                     synchronized(getStateLock()) {
 192                         if (height != lastAppliedMenubarHeight) {
 193                             lastAppliedMenubarHeight = height;
 194                             heightChanged = true;
 195                         }
 196                     }
 197                     if (heightChanged) {
 198                         // To make frame contents be re-layout (copied from
 199                         // 'XDecoratedPeer.revalidate()'). These are not
 200                         // 'synchronized', because can recursively call client
 201                         // methods, which are not supposed to be called with locks
 202                         // acquired.
 203                         target.invalidate();
 204                         target.validate();
 205                     }
 206                 }
 207             }
 208         );
 209     }
 210 
 211     public void setMaximizedBounds(Rectangle b) {
 212         if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
 213             insLog.fine("Setting maximized bounds to " + b);
 214         }
 215         if (b == null) return;
 216         maxBounds = new Rectangle(b);
 217         XToolkit.awtLock();
 218         try {
 219             XSizeHints hints = getHints();
 220             hints.set_flags(hints.get_flags() | (int)XUtilConstants.PMaxSize);
 221             if (b.width != Integer.MAX_VALUE) {
 222                 hints.set_max_width(b.width);
 223             } else {
 224                 hints.set_max_width((int)XlibWrapper.DisplayWidth(XToolkit.getDisplay(), XlibWrapper.DefaultScreen(XToolkit.getDisplay())));
 225             }
 226             if (b.height != Integer.MAX_VALUE) {
 227                 hints.set_max_height(b.height);
 228             } else {
 229                 hints.set_max_height((int)XlibWrapper.DisplayHeight(XToolkit.getDisplay(), XlibWrapper.DefaultScreen(XToolkit.getDisplay())));
 230             }
 231             if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
 232                 insLog.finer("Setting hints, flags " + XlibWrapper.hintsToString(hints.get_flags()));
 233             }
 234             XlibWrapper.XSetWMNormalHints(XToolkit.getDisplay(), window, hints.pData);
 235         } finally {
 236             XToolkit.awtUnlock();
 237         }
 238     }
 239 
 240     public int getState() {
 241         synchronized(getStateLock()) {
 242             return state;
 243         }
 244     }
 245 
 246     public void setState(int newState) {
 247         synchronized(getStateLock()) {
 248             if (!isShowing()) {
 249                 stateLog.finer("Frame is not showing");
 250                 state = newState;
 251                 return;
 252             }
 253         }
 254         changeState(newState);
 255     }
 256 
 257     void changeState(int newState) {
 258         int changed = state ^ newState;
 259         int changeIconic = changed & Frame.ICONIFIED;
 260         boolean iconic = (newState & Frame.ICONIFIED) != 0;
 261         if (stateLog.isLoggable(PlatformLogger.Level.FINER)) {
 262             stateLog.finer("Changing state, old state {0}, new state {1}(iconic {2})",
 263                        Integer.valueOf(state), Integer.valueOf(newState), Boolean.valueOf(iconic));
 264         }
 265         if (changeIconic != 0 && iconic) {
 266             if (stateLog.isLoggable(PlatformLogger.Level.FINER)) {
 267                 stateLog.finer("Iconifying shell " + getShell() + ", this " + this + ", screen " + getScreenNumber());
 268             }
 269             XToolkit.awtLock();
 270             try {
 271                 int res = XlibWrapper.XIconifyWindow(XToolkit.getDisplay(), getShell(), getScreenNumber());
 272                 if (stateLog.isLoggable(PlatformLogger.Level.FINER)) {
 273                     stateLog.finer("XIconifyWindow returned " + res);
 274                 }
 275             }
 276             finally {
 277                 XToolkit.awtUnlock();
 278             }
 279         }
 280         if ((changed & ~Frame.ICONIFIED) != 0) {
 281             setExtendedState(newState);
 282         }
 283         if (changeIconic != 0 && !iconic) {
 284             if (stateLog.isLoggable(PlatformLogger.Level.FINER)) {
 285                 stateLog.finer("DeIconifying " + this);
 286             }
 287             xSetVisible(true);
 288         }
 289     }
 290 
 291     void setExtendedState(int newState) {
 292         XWM.getWM().setExtendedState(this, newState);
 293     }
 294 
 295     public void handlePropertyNotify(XEvent xev) {
 296         super.handlePropertyNotify(xev);
 297         XPropertyEvent ev = xev.get_xproperty();
 298 
 299         if (log.isLoggable(PlatformLogger.Level.FINER)) {
 300             log.finer("Property change {0}", ev);
 301         }
 302         /*
 303          * Let's see if this is a window state protocol message, and
 304          * if it is - decode a new state in terms of java constants.
 305          */
 306         if (!XWM.getWM().isStateChange(this, ev)) {
 307             stateLog.finer("either not a state atom or state has not been changed");
 308             return;
 309         }
 310 
 311         final int newState = XWM.getWM().getState(this);
 312         int changed = state ^ newState;
 313         if (changed == 0) {
 314             if (stateLog.isLoggable(PlatformLogger.Level.FINER)) {
 315                 stateLog.finer("State is the same: " + state);
 316             }
 317             return;
 318         }
 319 
 320         int old_state = state;
 321         state = newState;
 322 
 323         // sync target with peer
 324         AWTAccessor.getFrameAccessor().setExtendedState((Frame)target, state);
 325 
 326         if ((changed & Frame.ICONIFIED) != 0) {
 327             if ((state & Frame.ICONIFIED) != 0) {
 328                 stateLog.finer("Iconified");
 329                 handleIconify();
 330             } else {
 331                 stateLog.finer("DeIconified");
 332                 content.purgeIconifiedExposeEvents();
 333                 handleDeiconify();
 334             }
 335         }
 336         handleStateChange(old_state, state);
 337     }
 338 
 339     // NOTE: This method may be called by privileged threads.
 340     //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
 341     public void handleStateChange(int oldState, int newState) {
 342         super.handleStateChange(oldState, newState);
 343         for (ToplevelStateListener topLevelListenerTmp : toplevelStateListeners) {
 344             topLevelListenerTmp.stateChangedJava(oldState, newState);
 345         }
 346     }
 347 
 348     public void setVisible(boolean vis) {
 349         if (vis) {
 350             setupState(false);
 351         } else {
 352             if ((state & Frame.MAXIMIZED_BOTH) != 0) {
 353                 XWM.getWM().setExtendedState(this, state & ~Frame.MAXIMIZED_BOTH);
 354             }
 355         }
 356         super.setVisible(vis);
 357         if (vis && maxBounds != null) {
 358             setMaximizedBounds(maxBounds);
 359         }
 360     }
 361 
 362     void setInitialState(int wm_state) {
 363         XToolkit.awtLock();
 364         try {
 365             XWMHints hints = getWMHints();
 366             hints.set_flags((int)XUtilConstants.StateHint | hints.get_flags());
 367             hints.set_initial_state(wm_state);
 368             if (stateLog.isLoggable(PlatformLogger.Level.FINE)) {
 369                 stateLog.fine("Setting initial WM state on " + this + " to " + wm_state);
 370             }
 371             XlibWrapper.XSetWMHints(XToolkit.getDisplay(), getWindow(), hints.pData);
 372         }
 373         finally {
 374             XToolkit.awtUnlock();
 375         }
 376     }
 377 
 378     public void dispose() {
 379         if (menubarPeer != null) {
 380             menubarPeer.dispose();
 381         }
 382         super.dispose();
 383     }
 384 
 385     boolean isMaximized() {
 386         return (state & (Frame.MAXIMIZED_VERT  | Frame.MAXIMIZED_HORIZ)) != 0;
 387     }
 388 
 389 
 390 
 391 
 392     static final int CROSSHAIR_INSET = 5;
 393 
 394     static final int BUTTON_Y = CROSSHAIR_INSET + 1;
 395     static final int BUTTON_W = 17;
 396     static final int BUTTON_H = 17;
 397 
 398     static final int SYS_MENU_X = CROSSHAIR_INSET + 1;
 399     static final int SYS_MENU_CONTAINED_X = SYS_MENU_X + 5;
 400     static final int SYS_MENU_CONTAINED_Y = BUTTON_Y + 7;
 401     static final int SYS_MENU_CONTAINED_W = 8;
 402     static final int SYS_MENU_CONTAINED_H = 3;
 403 
 404     static final int MAXIMIZE_X_DIFF = CROSSHAIR_INSET + BUTTON_W;
 405     static final int MAXIMIZE_CONTAINED_X_DIFF = MAXIMIZE_X_DIFF - 5;
 406     static final int MAXIMIZE_CONTAINED_Y = BUTTON_Y + 5;
 407     static final int MAXIMIZE_CONTAINED_W = 8;
 408     static final int MAXIMIZE_CONTAINED_H = 8;
 409 
 410     static final int MINIMIZE_X_DIFF = MAXIMIZE_X_DIFF + BUTTON_W;
 411     static final int MINIMIZE_CONTAINED_X_DIFF = MINIMIZE_X_DIFF - 7;
 412     static final int MINIMIZE_CONTAINED_Y = BUTTON_Y + 7;
 413     static final int MINIMIZE_CONTAINED_W = 3;
 414     static final int MINIMIZE_CONTAINED_H = 3;
 415 
 416     static final int TITLE_X = SYS_MENU_X + BUTTON_W;
 417     static final int TITLE_W_DIFF = BUTTON_W * 3 + CROSSHAIR_INSET * 2 - 1;
 418     static final int TITLE_MID_Y = BUTTON_Y + (BUTTON_H / 2);
 419 
 420     static final int MENUBAR_X = CROSSHAIR_INSET + 1;
 421     static final int MENUBAR_Y = BUTTON_Y + BUTTON_H;
 422 
 423     static final int HORIZ_RESIZE_INSET = CROSSHAIR_INSET + BUTTON_H;
 424     static final int VERT_RESIZE_INSET = CROSSHAIR_INSET + BUTTON_W;
 425 
 426 
 427     /*
 428      * Print the native component by rendering the Motif look ourselves.
 429      * We also explicitly print the MenuBar since a MenuBar isn't a subclass
 430      * of Component (and thus it has no "print" method which gets called by
 431      * default).
 432      */
 433     public void print(Graphics g) {
 434         super.print(g);
 435 
 436         Frame f = (Frame)target;
 437         Insets finsets = f.getInsets();
 438         Dimension fsize = f.getSize();
 439 
 440         Color bg = f.getBackground();
 441         Color fg = f.getForeground();
 442         Color highlight = bg.brighter();
 443         Color shadow = bg.darker();
 444 
 445         // Well, we could query for the currently running window manager
 446         // and base the look on that, or we could just always do dtwm.
 447         // aim, tball, and levenson all agree we'll just do dtwm.
 448 
 449         if (hasDecorations(XWindowAttributesData.AWT_DECOR_BORDER)) {
 450 
 451             // top outer -- because we'll most likely be drawing on white paper,
 452             // for aesthetic reasons, don't make any part of the outer border
 453             // pure white
 454             if (highlight.equals(Color.white)) {
 455                 g.setColor(new Color(230, 230, 230));
 456             }
 457             else {
 458                 g.setColor(highlight);
 459             }
 460             g.drawLine(0, 0, fsize.width, 0);
 461             g.drawLine(0, 1, fsize.width - 1, 1);
 462 
 463             // left outer
 464             // if (highlight.equals(Color.white)) {
 465             //     g.setColor(new Color(230, 230, 230));
 466             // }
 467             // else {
 468             //     g.setColor(highlight);
 469             // }
 470             g.drawLine(0, 0, 0, fsize.height);
 471             g.drawLine(1, 0, 1, fsize.height - 1);
 472 
 473             // bottom cross-hair
 474             g.setColor(highlight);
 475             g.drawLine(CROSSHAIR_INSET + 1, fsize.height - CROSSHAIR_INSET,
 476                        fsize.width - CROSSHAIR_INSET,
 477                        fsize.height - CROSSHAIR_INSET);
 478 
 479             // right cross-hair
 480             // g.setColor(highlight);
 481             g.drawLine(fsize.width - CROSSHAIR_INSET, CROSSHAIR_INSET + 1,
 482                        fsize.width - CROSSHAIR_INSET,
 483                        fsize.height - CROSSHAIR_INSET);
 484 
 485             // bottom outer
 486             g.setColor(shadow);
 487             g.drawLine(1, fsize.height, fsize.width, fsize.height);
 488             g.drawLine(2, fsize.height - 1, fsize.width, fsize.height - 1);
 489 
 490             // right outer
 491             // g.setColor(shadow);
 492             g.drawLine(fsize.width, 1, fsize.width, fsize.height);
 493             g.drawLine(fsize.width - 1, 2, fsize.width - 1, fsize.height);
 494 
 495             // top cross-hair
 496             // g.setColor(shadow);
 497             g.drawLine(CROSSHAIR_INSET, CROSSHAIR_INSET,
 498                        fsize.width - CROSSHAIR_INSET, CROSSHAIR_INSET);
 499 
 500             // left cross-hair
 501             // g.setColor(shadow);
 502             g.drawLine(CROSSHAIR_INSET, CROSSHAIR_INSET, CROSSHAIR_INSET,
 503                        fsize.height - CROSSHAIR_INSET);
 504         }
 505 
 506         if (hasDecorations(XWindowAttributesData.AWT_DECOR_TITLE)) {
 507 
 508             if (hasDecorations(XWindowAttributesData.AWT_DECOR_MENU)) {
 509 
 510                 // system menu
 511                 g.setColor(bg);
 512                 g.fill3DRect(SYS_MENU_X, BUTTON_Y, BUTTON_W, BUTTON_H, true);
 513                 g.fill3DRect(SYS_MENU_CONTAINED_X, SYS_MENU_CONTAINED_Y,
 514                              SYS_MENU_CONTAINED_W, SYS_MENU_CONTAINED_H, true);
 515             }
 516 
 517             // title bar
 518             // g.setColor(bg);
 519             g.fill3DRect(TITLE_X, BUTTON_Y, fsize.width - TITLE_W_DIFF, BUTTON_H,
 520                          true);
 521 
 522             if (hasDecorations(XWindowAttributesData.AWT_DECOR_MINIMIZE)) {
 523 
 524                 // minimize button
 525                 // g.setColor(bg);
 526                 g.fill3DRect(fsize.width - MINIMIZE_X_DIFF, BUTTON_Y, BUTTON_W,
 527                              BUTTON_H, true);
 528                 g.fill3DRect(fsize.width - MINIMIZE_CONTAINED_X_DIFF,
 529                              MINIMIZE_CONTAINED_Y, MINIMIZE_CONTAINED_W,
 530                              MINIMIZE_CONTAINED_H, true);
 531             }
 532 
 533             if (hasDecorations(XWindowAttributesData.AWT_DECOR_MAXIMIZE)) {
 534 
 535                 // maximize button
 536                 // g.setColor(bg);
 537                 g.fill3DRect(fsize.width - MAXIMIZE_X_DIFF, BUTTON_Y, BUTTON_W,
 538                              BUTTON_H, true);
 539                 g.fill3DRect(fsize.width - MAXIMIZE_CONTAINED_X_DIFF,
 540                              MAXIMIZE_CONTAINED_Y, MAXIMIZE_CONTAINED_W,
 541                              MAXIMIZE_CONTAINED_H, true);
 542             }
 543 
 544             // title bar text
 545             g.setColor(fg);
 546             Font sysfont = new Font(Font.SANS_SERIF, Font.PLAIN, 10);
 547             g.setFont(sysfont);
 548             FontMetrics sysfm = g.getFontMetrics();
 549             String ftitle = f.getTitle();
 550             g.drawString(ftitle,
 551                          ((TITLE_X + TITLE_X + fsize.width - TITLE_W_DIFF) / 2) -
 552                          (sysfm.stringWidth(ftitle) / 2),
 553                          TITLE_MID_Y + sysfm.getMaxDescent());
 554         }
 555 
 556         if (f.isResizable() &&
 557             hasDecorations(XWindowAttributesData.AWT_DECOR_RESIZEH)) {
 558 
 559             // add resize cross hairs
 560 
 561             // upper-left horiz (shadow)
 562             g.setColor(shadow);
 563             g.drawLine(1, HORIZ_RESIZE_INSET, CROSSHAIR_INSET,
 564                        HORIZ_RESIZE_INSET);
 565             // upper-left vert (shadow)
 566             // g.setColor(shadow);
 567             g.drawLine(VERT_RESIZE_INSET, 1, VERT_RESIZE_INSET, CROSSHAIR_INSET);
 568             // upper-right horiz (shadow)
 569             // g.setColor(shadow);
 570             g.drawLine(fsize.width - CROSSHAIR_INSET + 1, HORIZ_RESIZE_INSET,
 571                        fsize.width, HORIZ_RESIZE_INSET);
 572             // upper-right vert (shadow)
 573             // g.setColor(shadow);
 574             g.drawLine(fsize.width - VERT_RESIZE_INSET - 1, 2,
 575                        fsize.width - VERT_RESIZE_INSET - 1, CROSSHAIR_INSET + 1);
 576             // lower-left horiz (shadow)
 577             // g.setColor(shadow);
 578             g.drawLine(1, fsize.height - HORIZ_RESIZE_INSET - 1,
 579                        CROSSHAIR_INSET, fsize.height - HORIZ_RESIZE_INSET - 1);
 580             // lower-left vert (shadow)
 581             // g.setColor(shadow);
 582             g.drawLine(VERT_RESIZE_INSET, fsize.height - CROSSHAIR_INSET + 1,
 583                        VERT_RESIZE_INSET, fsize.height);
 584             // lower-right horiz (shadow)
 585             // g.setColor(shadow);
 586             g.drawLine(fsize.width - CROSSHAIR_INSET + 1,
 587                        fsize.height - HORIZ_RESIZE_INSET - 1, fsize.width,
 588                        fsize.height - HORIZ_RESIZE_INSET - 1);
 589             // lower-right vert (shadow)
 590             // g.setColor(shadow);
 591             g.drawLine(fsize.width - VERT_RESIZE_INSET - 1,
 592                        fsize.height - CROSSHAIR_INSET + 1,
 593                        fsize.width - VERT_RESIZE_INSET - 1, fsize.height);
 594 
 595             // upper-left horiz (highlight)
 596             g.setColor(highlight);
 597             g.drawLine(2, HORIZ_RESIZE_INSET + 1, CROSSHAIR_INSET,
 598                        HORIZ_RESIZE_INSET + 1);
 599             // upper-left vert (highlight)
 600             // g.setColor(highlight);
 601             g.drawLine(VERT_RESIZE_INSET + 1, 2, VERT_RESIZE_INSET + 1,
 602                        CROSSHAIR_INSET);
 603             // upper-right horiz (highlight)
 604             // g.setColor(highlight);
 605             g.drawLine(fsize.width - CROSSHAIR_INSET + 1,
 606                        HORIZ_RESIZE_INSET + 1, fsize.width - 1,
 607                        HORIZ_RESIZE_INSET + 1);
 608             // upper-right vert (highlight)
 609             // g.setColor(highlight);
 610             g.drawLine(fsize.width - VERT_RESIZE_INSET, 2,
 611                        fsize.width - VERT_RESIZE_INSET, CROSSHAIR_INSET);
 612             // lower-left horiz (highlight)
 613             // g.setColor(highlight);
 614             g.drawLine(2, fsize.height - HORIZ_RESIZE_INSET, CROSSHAIR_INSET,
 615                        fsize.height - HORIZ_RESIZE_INSET);
 616             // lower-left vert (highlight)
 617             // g.setColor(highlight);
 618             g.drawLine(VERT_RESIZE_INSET + 1,
 619                        fsize.height - CROSSHAIR_INSET + 1,
 620                        VERT_RESIZE_INSET + 1, fsize.height - 1);
 621             // lower-right horiz (highlight)
 622             // g.setColor(highlight);
 623             g.drawLine(fsize.width - CROSSHAIR_INSET + 1,
 624                        fsize.height - HORIZ_RESIZE_INSET, fsize.width - 1,
 625                        fsize.height - HORIZ_RESIZE_INSET);
 626             // lower-right vert (highlight)
 627             // g.setColor(highlight);
 628             g.drawLine(fsize.width - VERT_RESIZE_INSET,
 629                        fsize.height - CROSSHAIR_INSET + 1,
 630                        fsize.width - VERT_RESIZE_INSET, fsize.height - 1);
 631         }
 632 
 633         XMenuBarPeer peer = menubarPeer;
 634         if (peer != null) {
 635             Insets insets = getInsets();
 636             Graphics ng = g.create();
 637             int menubarX = 0;
 638             int menubarY = 0;
 639             if (hasDecorations(XWindowAttributesData.AWT_DECOR_BORDER)) {
 640                 menubarX += CROSSHAIR_INSET + 1;
 641                     menubarY += CROSSHAIR_INSET + 1;
 642             }
 643             if (hasDecorations(XWindowAttributesData.AWT_DECOR_TITLE)) {
 644                 menubarY += BUTTON_H;
 645             }
 646             try {
 647                 ng.translate(menubarX, menubarY);
 648                 peer.print(ng);
 649             } finally {
 650                 ng.dispose();
 651             }
 652         }
 653     }
 654 
 655     public void setBoundsPrivate(int x, int y, int width, int height) {
 656         setBounds(x, y, width, height, SET_BOUNDS);
 657     }
 658 
 659     public Rectangle getBoundsPrivate() {
 660         return getBounds();
 661     }
 662 
 663     public void emulateActivation(boolean doActivate) {
 664         if (doActivate) {
 665             handleWindowFocusIn(0);
 666         } else {
 667             handleWindowFocusOut(null, 0);
 668         }
 669     }
 670 }