1 /* 2 * Copyright (c) 2011, 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 26 package sun.lwawt.macosx; 27 28 import java.awt.BufferCapabilities.FlipContents; 29 import java.awt.*; 30 import java.awt.Dialog.ModalityType; 31 import java.awt.event.*; 32 import java.awt.peer.WindowPeer; 33 import java.beans.*; 34 import java.util.List; 35 36 import javax.swing.*; 37 38 import sun.awt.*; 39 import sun.java2d.SurfaceData; 40 import sun.java2d.opengl.CGLSurfaceData; 41 import sun.lwawt.*; 42 import sun.lwawt.LWWindowPeer.PeerType; 43 import sun.util.logging.PlatformLogger; 44 45 import com.apple.laf.*; 46 import com.apple.laf.ClientPropertyApplicator.Property; 47 import com.sun.awt.AWTUtilities; 48 49 public class CPlatformWindow extends CFRetainedResource implements PlatformWindow { 50 private native long nativeCreateNSWindow(long nsViewPtr, long styleBits, double x, double y, double w, double h); 51 private static native void nativeSetNSWindowStyleBits(long nsWindowPtr, int mask, int data); 52 private static native void nativeSetNSWindowMenuBar(long nsWindowPtr, long menuBarPtr); 53 private static native Insets nativeGetNSWindowInsets(long nsWindowPtr); 54 private static native void nativeSetNSWindowBounds(long nsWindowPtr, double x, double y, double w, double h); 55 private static native void nativeSetNSWindowMinMax(long nsWindowPtr, double minW, double minH, double maxW, double maxH); 56 private static native void nativePushNSWindowToBack(long nsWindowPtr); 57 private static native void nativePushNSWindowToFront(long nsWindowPtr); 58 private static native void nativeSetNSWindowTitle(long nsWindowPtr, String title); 59 private static native void nativeRevalidateNSWindowShadow(long nsWindowPtr); 60 private static native void nativeSetNSWindowMinimizedIcon(long nsWindowPtr, long nsImage); 61 private static native void nativeSetNSWindowRepresentedFilename(long nsWindowPtr, String representedFilename); 62 private static native void nativeSetNSWindowSecurityWarningPositioning(long nsWindowPtr, double x, double y, float biasX, float biasY); 63 private static native void nativeSetEnabled(long nsWindowPtr, boolean isEnabled); 64 private static native void nativeSynthesizeMouseEnteredExitedEvents(long nsWindowPtr); 65 66 private static native int nativeGetNSWindowDisplayID_AppKitThread(long nsWindowPtr); 67 68 // Loger to report issues happened during execution but that do not affect functionality 69 private static final PlatformLogger logger = PlatformLogger.getLogger("sun.lwawt.macosx.CPlatformWindow"); 70 private static final PlatformLogger focusLogger = PlatformLogger.getLogger("sun.lwawt.macosx.focus.CPlatformWindow"); 71 72 // for client properties 73 public static final String WINDOW_BRUSH_METAL_LOOK = "apple.awt.brushMetalLook"; 74 public static final String WINDOW_DRAGGABLE_BACKGROUND = "apple.awt.draggableWindowBackground"; 75 76 public static final String WINDOW_ALPHA = "Window.alpha"; 77 public static final String WINDOW_SHADOW = "Window.shadow"; 78 79 public static final String WINDOW_STYLE = "Window.style"; 80 public static final String WINDOW_SHADOW_REVALIDATE_NOW = "apple.awt.windowShadow.revalidateNow"; 81 82 public static final String WINDOW_DOCUMENT_MODIFIED = "Window.documentModified"; 83 public static final String WINDOW_DOCUMENT_FILE = "Window.documentFile"; 84 85 public static final String WINDOW_CLOSEABLE = "Window.closeable"; 86 public static final String WINDOW_MINIMIZABLE = "Window.minimizable"; 87 public static final String WINDOW_ZOOMABLE = "Window.zoomable"; 88 public static final String WINDOW_HIDES_ON_DEACTIVATE="Window.hidesOnDeactivate"; 89 90 public static final String WINDOW_DOC_MODAL_SHEET = "apple.awt.documentModalSheet"; 91 public static final String WINDOW_FADE_DELEGATE = "apple.awt._windowFadeDelegate"; 92 public static final String WINDOW_FADE_IN = "apple.awt._windowFadeIn"; 93 public static final String WINDOW_FADE_OUT = "apple.awt._windowFadeOut"; 94 public static final String WINDOW_FULLSCREENABLE = "apple.awt.fullscreenable"; 95 96 97 // Yeah, I know. But it's easier to deal with ints from JNI 98 static final int MODELESS = 0; 99 static final int DOCUMENT_MODAL = 1; 100 static final int APPLICATION_MODAL = 2; 101 static final int TOOLKIT_MODAL = 3; 102 103 // window style bits 104 static final int _RESERVED_FOR_DATA = 1 << 0; 105 106 // corresponds to native style mask bits 107 static final int DECORATED = 1 << 1; 108 static final int TEXTURED = 1 << 2; 109 static final int UNIFIED = 1 << 3; 110 static final int UTILITY = 1 << 4; 111 static final int HUD = 1 << 5; 112 static final int SHEET = 1 << 6; 113 114 static final int CLOSEABLE = 1 << 7; 115 static final int MINIMIZABLE = 1 << 8; 116 117 static final int RESIZABLE = 1 << 9; // both a style bit and prop bit 118 static final int NONACTIVATING = 1 << 24; 119 120 static final int _STYLE_PROP_BITMASK = DECORATED | TEXTURED | UNIFIED | UTILITY | HUD | SHEET | CLOSEABLE | MINIMIZABLE | RESIZABLE; 121 122 // corresponds to method-based properties 123 static final int HAS_SHADOW = 1 << 10; 124 static final int ZOOMABLE = 1 << 11; 125 126 static final int ALWAYS_ON_TOP = 1 << 15; 127 static final int HIDES_ON_DEACTIVATE = 1 << 17; 128 static final int DRAGGABLE_BACKGROUND = 1 << 19; 129 static final int DOCUMENT_MODIFIED = 1 << 21; 130 static final int FULLSCREENABLE = 1 << 23; 131 132 static final int _METHOD_PROP_BITMASK = RESIZABLE | HAS_SHADOW | ZOOMABLE | ALWAYS_ON_TOP | HIDES_ON_DEACTIVATE | DRAGGABLE_BACKGROUND | DOCUMENT_MODIFIED | FULLSCREENABLE; 133 134 // corresponds to callback-based properties 135 static final int SHOULD_BECOME_KEY = 1 << 12; 136 static final int SHOULD_BECOME_MAIN = 1 << 13; 137 static final int MODAL_EXCLUDED = 1 << 16; 138 139 static final int _CALLBACK_PROP_BITMASK = SHOULD_BECOME_KEY | SHOULD_BECOME_MAIN | MODAL_EXCLUDED; 140 141 static int SET(final int bits, final int mask, final boolean value) { 142 if (value) return (bits | mask); 143 return bits & ~mask; 144 } 145 146 static boolean IS(final int bits, final int mask) { 147 return (bits & mask) != 0; 148 } 149 150 @SuppressWarnings("unchecked") 151 static ClientPropertyApplicator<JRootPane, CPlatformWindow> CLIENT_PROPERTY_APPLICATOR = new ClientPropertyApplicator<JRootPane, CPlatformWindow>(new Property[] { 152 new Property<CPlatformWindow>(WINDOW_DOCUMENT_MODIFIED) { public void applyProperty(final CPlatformWindow c, final Object value) { 153 c.setStyleBits(DOCUMENT_MODIFIED, value == null ? false : Boolean.parseBoolean(value.toString())); 154 }}, 155 new Property<CPlatformWindow>(WINDOW_BRUSH_METAL_LOOK) { public void applyProperty(final CPlatformWindow c, final Object value) { 156 c.setStyleBits(TEXTURED, Boolean.parseBoolean(value.toString())); 157 }}, 158 new Property<CPlatformWindow>(WINDOW_ALPHA) { public void applyProperty(final CPlatformWindow c, final Object value) { 159 AWTUtilities.setWindowOpacity(c.target, value == null ? 1.0f : Float.parseFloat(value.toString())); 160 }}, 161 new Property<CPlatformWindow>(WINDOW_SHADOW) { public void applyProperty(final CPlatformWindow c, final Object value) { 162 c.setStyleBits(HAS_SHADOW, value == null ? true : Boolean.parseBoolean(value.toString())); 163 }}, 164 new Property<CPlatformWindow>(WINDOW_MINIMIZABLE) { public void applyProperty(final CPlatformWindow c, final Object value) { 165 c.setStyleBits(MINIMIZABLE, Boolean.parseBoolean(value.toString())); 166 }}, 167 new Property<CPlatformWindow>(WINDOW_CLOSEABLE) { public void applyProperty(final CPlatformWindow c, final Object value) { 168 c.setStyleBits(CLOSEABLE, Boolean.parseBoolean(value.toString())); 169 }}, 170 new Property<CPlatformWindow>(WINDOW_ZOOMABLE) { public void applyProperty(final CPlatformWindow c, final Object value) { 171 c.setStyleBits(ZOOMABLE, Boolean.parseBoolean(value.toString())); 172 }}, 173 new Property<CPlatformWindow>(WINDOW_FULLSCREENABLE) { public void applyProperty(final CPlatformWindow c, final Object value) { 174 c.setStyleBits(FULLSCREENABLE, Boolean.parseBoolean(value.toString())); 175 }}, 176 new Property<CPlatformWindow>(WINDOW_SHADOW_REVALIDATE_NOW) { public void applyProperty(final CPlatformWindow c, final Object value) { 177 nativeRevalidateNSWindowShadow(c.getNSWindowPtr()); 178 }}, 179 new Property<CPlatformWindow>(WINDOW_DOCUMENT_FILE) { public void applyProperty(final CPlatformWindow c, final Object value) { 180 if (value == null || !(value instanceof java.io.File)) { 181 nativeSetNSWindowRepresentedFilename(c.getNSWindowPtr(), null); 182 return; 183 } 184 185 final String filename = ((java.io.File)value).getAbsolutePath(); 186 nativeSetNSWindowRepresentedFilename(c.getNSWindowPtr(), filename); 187 }} 188 }) { 189 public CPlatformWindow convertJComponentToTarget(final JRootPane p) { 190 Component root = SwingUtilities.getRoot(p); 191 if (root == null || (LWWindowPeer)root.getPeer() == null) return null; 192 return (CPlatformWindow)((LWWindowPeer)root.getPeer()).getPlatformWindow(); 193 } 194 }; 195 196 // Bounds of the native widget but in the Java coordinate system. 197 // In order to keep it up-to-date we will update them on 198 // 1) setting native bounds via nativeSetBounds() call 199 // 2) getting notification from the native level via deliverMoveResizeEvent() 200 private Rectangle nativeBounds; 201 private volatile boolean isFullScreenMode = false; 202 203 private Window target; 204 private LWWindowPeer peer; 205 private CPlatformView contentView; 206 private CPlatformWindow owner; 207 private boolean visible = false; // visibility status from native perspective 208 private boolean undecorated; // initialized in getInitialStyleBits() 209 private Rectangle normalBounds = null; // not-null only for undecorated maximized windows 210 private CPlatformResponder responder; 211 212 public CPlatformWindow(final PeerType peerType) { 213 super(0, true); 214 assert (peerType == PeerType.SIMPLEWINDOW || peerType == PeerType.DIALOG || peerType == PeerType.FRAME); 215 } 216 217 /* 218 * Delegate initialization (create native window and all the 219 * related resources). 220 */ 221 @Override // PlatformWindow 222 public void initialize(Window _target, LWWindowPeer _peer, PlatformWindow _owner) { 223 this.peer = _peer; 224 this.target = _target; 225 if (_owner instanceof CPlatformWindow) { 226 this.owner = (CPlatformWindow)_owner; 227 } 228 229 final int styleBits = getInitialStyleBits(); 230 231 // TODO: handle these misc properties 232 final long parentNSWindowPtr = (owner != null ? owner.getNSWindowPtr() : 0); 233 String warningString = target.getWarningString(); 234 235 responder = new CPlatformResponder(peer, false); 236 contentView = new CPlatformView(); 237 contentView.initialize(peer, responder); 238 239 final long nativeWindowPtr = nativeCreateNSWindow(contentView.getAWTView(), styleBits, 0, 0, 0, 0); 240 setPtr(nativeWindowPtr); 241 242 // TODO: implement on top of JObjC bridged class 243 // NSWindow window = JObjC.getInstance().AppKit().NSWindow().getInstance(nativeWindowPtr, JObjCRuntime.getInstance()); 244 245 if (target instanceof javax.swing.RootPaneContainer) { 246 final javax.swing.JRootPane rootpane = ((javax.swing.RootPaneContainer)target).getRootPane(); 247 if (rootpane != null) rootpane.addPropertyChangeListener("ancestor", new PropertyChangeListener() { 248 public void propertyChange(final PropertyChangeEvent evt) { 249 CLIENT_PROPERTY_APPLICATOR.attachAndApplyClientProperties(rootpane); 250 rootpane.removePropertyChangeListener("ancestor", this); 251 } 252 }); 253 } 254 255 validateSurface(); 256 } 257 258 protected int getInitialStyleBits() { 259 // defaults style bits 260 int styleBits = DECORATED | HAS_SHADOW | CLOSEABLE | MINIMIZABLE | ZOOMABLE | RESIZABLE; 261 262 if (isNativelyFocusableWindow()) { 263 styleBits = SET(styleBits, SHOULD_BECOME_KEY, true); 264 styleBits = SET(styleBits, SHOULD_BECOME_MAIN, true); 265 } 266 267 final boolean isFrame = (target instanceof Frame); 268 final boolean isDialog = (target instanceof Dialog); 269 final boolean isPopup = (target.getType() == Window.Type.POPUP); 270 if (isDialog) { 271 styleBits = SET(styleBits, MINIMIZABLE, false); 272 } 273 274 // Either java.awt.Frame or java.awt.Dialog can be undecorated, however java.awt.Window always is undecorated. 275 { 276 this.undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true); 277 if (this.undecorated) styleBits = SET(styleBits, DECORATED, false); 278 } 279 280 // Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable 281 { 282 final boolean resizable = isFrame ? ((Frame)target).isResizable() : (isDialog ? ((Dialog)target).isResizable() : false); 283 styleBits = SET(styleBits, RESIZABLE, resizable); 284 if (!resizable) { 285 styleBits = SET(styleBits, RESIZABLE, false); 286 styleBits = SET(styleBits, ZOOMABLE, false); 287 } 288 } 289 290 if (target.isAlwaysOnTop()) { 291 styleBits = SET(styleBits, ALWAYS_ON_TOP, true); 292 } 293 294 if (target.getModalExclusionType() == Dialog.ModalExclusionType.APPLICATION_EXCLUDE) { 295 styleBits = SET(styleBits, MODAL_EXCLUDED, true); 296 } 297 298 // If the target is a dialog, popup or tooltip we want it to ignore the brushed metal look. 299 if (isPopup) { 300 styleBits = SET(styleBits, TEXTURED, true); 301 // Popups in applets don't activate applet's process 302 styleBits = SET(styleBits, NONACTIVATING, true); 303 } 304 305 if (Window.Type.UTILITY.equals(target.getType())) { 306 styleBits = SET(styleBits, UTILITY, true); 307 } 308 309 if (target instanceof javax.swing.RootPaneContainer) { 310 javax.swing.JRootPane rootpane = ((javax.swing.RootPaneContainer)target).getRootPane(); 311 Object prop = null; 312 313 prop = rootpane.getClientProperty(WINDOW_BRUSH_METAL_LOOK); 314 if (prop != null) { 315 styleBits = SET(styleBits, TEXTURED, Boolean.parseBoolean(prop.toString())); 316 } 317 318 if (isDialog && ((Dialog)target).getModalityType() == ModalityType.DOCUMENT_MODAL) { 319 prop = rootpane.getClientProperty(WINDOW_DOC_MODAL_SHEET); 320 if (prop != null) { 321 styleBits = SET(styleBits, SHEET, Boolean.parseBoolean(prop.toString())); 322 } 323 } 324 325 prop = rootpane.getClientProperty(WINDOW_STYLE); 326 if (prop != null) { 327 if ("small".equals(prop)) { 328 styleBits = SET(styleBits, UTILITY, true); 329 if (target.isAlwaysOnTop() && rootpane.getClientProperty(WINDOW_HIDES_ON_DEACTIVATE) == null) { 330 styleBits = SET(styleBits, HIDES_ON_DEACTIVATE, true); 331 } 332 } 333 if ("textured".equals(prop)) styleBits = SET(styleBits, TEXTURED, true); 334 if ("unified".equals(prop)) styleBits = SET(styleBits, UNIFIED, true); 335 if ("hud".equals(prop)) styleBits = SET(styleBits, HUD, true); 336 } 337 338 prop = rootpane.getClientProperty(WINDOW_HIDES_ON_DEACTIVATE); 339 if (prop != null) { 340 styleBits = SET(styleBits, HIDES_ON_DEACTIVATE, Boolean.parseBoolean(prop.toString())); 341 } 342 343 prop = rootpane.getClientProperty(WINDOW_CLOSEABLE); 344 if (prop != null) { 345 styleBits = SET(styleBits, CLOSEABLE, Boolean.parseBoolean(prop.toString())); 346 } 347 348 prop = rootpane.getClientProperty(WINDOW_MINIMIZABLE); 349 if (prop != null) { 350 styleBits = SET(styleBits, MINIMIZABLE, Boolean.parseBoolean(prop.toString())); 351 } 352 353 prop = rootpane.getClientProperty(WINDOW_ZOOMABLE); 354 if (prop != null) { 355 styleBits = SET(styleBits, ZOOMABLE, Boolean.parseBoolean(prop.toString())); 356 } 357 358 prop = rootpane.getClientProperty(WINDOW_FULLSCREENABLE); 359 if (prop != null) { 360 styleBits = SET(styleBits, FULLSCREENABLE, Boolean.parseBoolean(prop.toString())); 361 } 362 363 prop = rootpane.getClientProperty(WINDOW_SHADOW); 364 if (prop != null) { 365 styleBits = SET(styleBits, HAS_SHADOW, Boolean.parseBoolean(prop.toString())); 366 } 367 368 prop = rootpane.getClientProperty(WINDOW_DRAGGABLE_BACKGROUND); 369 if (prop != null) { 370 styleBits = SET(styleBits, DRAGGABLE_BACKGROUND, Boolean.parseBoolean(prop.toString())); 371 } 372 } 373 374 return styleBits; 375 } 376 377 // this is the counter-point to -[CWindow _nativeSetStyleBit:] 378 protected void setStyleBits(final int mask, final boolean value) { 379 nativeSetNSWindowStyleBits(getNSWindowPtr(), mask, value ? mask : 0); 380 } 381 382 private native void _toggleFullScreenMode(final long model); 383 384 public void toggleFullScreen() { 385 _toggleFullScreenMode(getNSWindowPtr()); 386 } 387 388 @Override // PlatformWindow 389 public void setMenuBar(MenuBar mb) { 390 final long nsWindowPtr = getNSWindowPtr(); 391 CMenuBar mbPeer = (CMenuBar)LWToolkit.targetToPeer(mb); 392 if (mbPeer != null) { 393 nativeSetNSWindowMenuBar(nsWindowPtr, mbPeer.getModel()); 394 } else { 395 nativeSetNSWindowMenuBar(nsWindowPtr, 0); 396 } 397 } 398 399 @Override // PlatformWindow 400 public Image createBackBuffer() { 401 return contentView.createBackBuffer(); 402 } 403 404 @Override // PlatformWindow 405 public void dispose() { 406 if (owner != null) { 407 CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), getNSWindowPtr()); 408 } 409 // Make sure window is ordered out before it is disposed, we could order it out right here or 410 // we could postpone the disposal, I think postponing is probably better. 411 EventQueue.invokeLater(new Runnable() { 412 public void run() { 413 contentView.dispose(); 414 CPlatformWindow.super.dispose(); 415 } 416 }); 417 } 418 419 @Override // PlatformWindow 420 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { 421 // TODO: not implemented 422 (new RuntimeException("unimplemented")).printStackTrace(); 423 } 424 425 @Override // PlatformWindow 426 public FontMetrics getFontMetrics(Font f) { 427 // TODO: not implemented 428 (new RuntimeException("unimplemented")).printStackTrace(); 429 return null; 430 } 431 432 @Override // PlatformWindow 433 public Insets getInsets() { 434 final Insets insets = nativeGetNSWindowInsets(getNSWindowPtr()); 435 return insets; 436 } 437 438 @Override // PlatformWindow 439 public Point getLocationOnScreen() { 440 return new Point(nativeBounds.x, nativeBounds.y); 441 } 442 443 @Override 444 public GraphicsDevice getGraphicsDevice() { 445 GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); 446 CGraphicsEnvironment cge = (CGraphicsEnvironment)ge; 447 int displayID = nativeGetNSWindowDisplayID_AppKitThread(getNSWindowPtr()); 448 GraphicsDevice gd = cge.getScreenDevice(displayID); 449 if (gd == null) { 450 // this could possibly happen during device removal 451 // use the default screen device in this case 452 gd = ge.getDefaultScreenDevice(); 453 } 454 return gd; 455 } 456 457 @Override // PlatformWindow 458 public SurfaceData getScreenSurface() { 459 // TODO: not implemented 460 return null; 461 } 462 463 @Override // PlatformWindow 464 public SurfaceData replaceSurfaceData() { 465 return contentView.replaceSurfaceData(); 466 } 467 468 @Override // PlatformWindow 469 public void setBounds(int x, int y, int w, int h) { 470 // assert CThreading.assertEventQueue(); 471 nativeSetNSWindowBounds(getNSWindowPtr(), x, y, w, h); 472 } 473 474 private void zoom() { 475 if (!undecorated) { 476 CWrapper.NSWindow.zoom(getNSWindowPtr()); 477 } else { 478 // OS X handles -zoom incorrectly for undecorated windows 479 final boolean isZoomed = this.normalBounds == null; 480 deliverZoom(isZoomed); 481 482 Rectangle toBounds; 483 if (isZoomed) { 484 this.normalBounds = peer.getBounds(); 485 long screen = CWrapper.NSWindow.screen(getNSWindowPtr()); 486 toBounds = CWrapper.NSScreen.visibleFrame(screen).getBounds(); 487 // Flip the y coordinate 488 Rectangle frame = CWrapper.NSScreen.frame(screen).getBounds(); 489 toBounds.y = frame.height - toBounds.y - toBounds.height; 490 } else { 491 toBounds = normalBounds; 492 this.normalBounds = null; 493 } 494 setBounds(toBounds.x, toBounds.y, toBounds.width, toBounds.height); 495 } 496 } 497 498 private boolean isVisible() { 499 return this.visible; 500 } 501 502 @Override // PlatformWindow 503 public void setVisible(boolean visible) { 504 final long nsWindowPtr = getNSWindowPtr(); 505 506 // 1. Process parent-child relationship when hiding 507 if (!visible) { 508 // 1a. Unparent my children 509 for (Window w : target.getOwnedWindows()) { 510 WindowPeer p = (WindowPeer)w.getPeer(); 511 if (p instanceof LWWindowPeer) { 512 CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow(); 513 if (pw != null && pw.isVisible()) { 514 CWrapper.NSWindow.removeChildWindow(nsWindowPtr, pw.getNSWindowPtr()); 515 } 516 } 517 } 518 519 // 1b. Unparent myself 520 if (owner != null && owner.isVisible()) { 521 CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr); 522 } 523 } 524 525 // 2. Configure stuff 526 updateIconImages(); 527 updateFocusabilityForAutoRequestFocus(false); 528 529 // 3. Manage the extended state when hiding 530 if (!visible) { 531 // Cancel out the current native state of the window 532 switch (peer.getState()) { 533 case Frame.ICONIFIED: 534 CWrapper.NSWindow.deminiaturize(nsWindowPtr); 535 break; 536 case Frame.MAXIMIZED_BOTH: 537 zoom(); 538 break; 539 } 540 } 541 542 // 4. Actually show or hide the window 543 LWWindowPeer blocker = peer.getBlocker(); 544 if (blocker == null || !visible) { 545 // If it ain't blocked, or is being hidden, go regular way 546 if (visible) { 547 CWrapper.NSWindow.makeFirstResponder(nsWindowPtr, contentView.getAWTView()); 548 549 boolean isPopup = (target.getType() == Window.Type.POPUP); 550 if (isPopup) { 551 // Popups in applets don't activate applet's process 552 CWrapper.NSWindow.orderFrontRegardless(nsWindowPtr); 553 } else { 554 CWrapper.NSWindow.orderFront(nsWindowPtr); 555 } 556 557 boolean isKeyWindow = CWrapper.NSWindow.isKeyWindow(nsWindowPtr); 558 if (!isKeyWindow) { 559 CWrapper.NSWindow.makeKeyWindow(nsWindowPtr); 560 } 561 } else { 562 CWrapper.NSWindow.orderOut(nsWindowPtr); 563 } 564 } else { 565 // otherwise, put it in a proper z-order 566 CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowBelow, 567 ((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr()); 568 } 569 this.visible = visible; 570 571 // 5. Manage the extended state when showing 572 if (visible) { 573 // Re-apply the extended state as expected in shared code 574 if (target instanceof Frame) { 575 switch (((Frame)target).getExtendedState()) { 576 case Frame.ICONIFIED: 577 CWrapper.NSWindow.miniaturize(nsWindowPtr); 578 break; 579 case Frame.MAXIMIZED_BOTH: 580 zoom(); 581 break; 582 } 583 } 584 } 585 586 nativeSynthesizeMouseEnteredExitedEvents(nsWindowPtr); 587 588 // 6. Configure stuff #2 589 updateFocusabilityForAutoRequestFocus(true); 590 591 // 7. Manage parent-child relationship when showing 592 if (visible) { 593 // 7a. Add myself as a child 594 if (owner != null && owner.isVisible()) { 595 CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove); 596 if (target.isAlwaysOnTop()) { 597 CWrapper.NSWindow.setLevel(nsWindowPtr, CWrapper.NSWindow.NSFloatingWindowLevel); 598 } 599 } 600 601 // 7b. Add my own children to myself 602 for (Window w : target.getOwnedWindows()) { 603 WindowPeer p = (WindowPeer)w.getPeer(); 604 if (p instanceof LWWindowPeer) { 605 CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow(); 606 if (pw != null && pw.isVisible()) { 607 CWrapper.NSWindow.addChildWindow(nsWindowPtr, pw.getNSWindowPtr(), CWrapper.NSWindow.NSWindowAbove); 608 if (w.isAlwaysOnTop()) { 609 CWrapper.NSWindow.setLevel(pw.getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel); 610 } 611 } 612 } 613 } 614 } 615 616 // 8. Deal with the blocker of the window being shown 617 if (blocker != null && visible) { 618 // Make sure the blocker is above its siblings 619 ((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings(); 620 } 621 } 622 623 @Override // PlatformWindow 624 public void setTitle(String title) { 625 nativeSetNSWindowTitle(getNSWindowPtr(), title); 626 } 627 628 // Should be called on every window key property change. 629 @Override // PlatformWindow 630 public void updateIconImages() { 631 final long nsWindowPtr = getNSWindowPtr(); 632 final CImage cImage = getImageForTarget(); 633 nativeSetNSWindowMinimizedIcon(nsWindowPtr, cImage == null ? 0L : cImage.ptr); 634 } 635 636 public long getNSWindowPtr() { 637 final long nsWindowPtr = ptr; 638 if (nsWindowPtr == 0L) { 639 if(logger.isLoggable(PlatformLogger.FINE)) { 640 logger.fine("NSWindow already disposed?", new Exception("Pointer to native NSWindow is invalid.")); 641 } 642 } 643 return nsWindowPtr; 644 } 645 646 public SurfaceData getSurfaceData() { 647 return contentView.getSurfaceData(); 648 } 649 650 @Override // PlatformWindow 651 public void toBack() { 652 final long nsWindowPtr = getNSWindowPtr(); 653 nativePushNSWindowToBack(nsWindowPtr); 654 } 655 656 @Override // PlatformWindow 657 public void toFront() { 658 final long nsWindowPtr = getNSWindowPtr(); 659 updateFocusabilityForAutoRequestFocus(false); 660 nativePushNSWindowToFront(nsWindowPtr); 661 updateFocusabilityForAutoRequestFocus(true); 662 } 663 664 @Override 665 public void setResizable(boolean resizable) { 666 setStyleBits(RESIZABLE, resizable); 667 668 // Re-apply the size constraints and the size to ensure the space 669 // occupied by the grow box is counted properly 670 setMinimumSize(1, 1); // the method ignores its arguments 671 672 Rectangle bounds = peer.getBounds(); 673 setBounds(bounds.x, bounds.y, bounds.width, bounds.height); 674 } 675 676 @Override 677 public void setMinimumSize(int width, int height) { 678 //TODO width, height should be used 679 //NOTE: setResizable() calls setMinimumSize(1,1) relaying on the logic below 680 final long nsWindowPtr = getNSWindowPtr(); 681 final Dimension min = target.getMinimumSize(); 682 final Dimension max = target.getMaximumSize(); 683 nativeSetNSWindowMinMax(nsWindowPtr, min.getWidth(), min.getHeight(), max.getWidth(), max.getHeight()); 684 } 685 686 @Override 687 public boolean rejectFocusRequest(CausedFocusEvent.Cause cause) { 688 // Cross-app activation requests are not allowed. 689 if (cause != CausedFocusEvent.Cause.MOUSE_EVENT && 690 !((LWCToolkit)Toolkit.getDefaultToolkit()).isApplicationActive()) 691 { 692 focusLogger.fine("the app is inactive, so the request is rejected"); 693 return true; 694 } 695 return false; 696 } 697 698 @Override 699 public boolean requestWindowFocus() { 700 701 long ptr = getNSWindowPtr(); 702 if (CWrapper.NSWindow.canBecomeMainWindow(ptr)) { 703 CWrapper.NSWindow.makeMainWindow(ptr); 704 } 705 CWrapper.NSWindow.makeKeyAndOrderFront(ptr); 706 return true; 707 } 708 709 @Override 710 public boolean isActive() { 711 long ptr = getNSWindowPtr(); 712 return CWrapper.NSWindow.isKeyWindow(ptr); 713 } 714 715 @Override 716 public void updateFocusableWindowState() { 717 final boolean isFocusable = isNativelyFocusableWindow(); 718 setStyleBits(SHOULD_BECOME_KEY | SHOULD_BECOME_MAIN, isFocusable); // set both bits at once 719 } 720 721 @Override 722 public Graphics transformGraphics(Graphics g) { 723 // is this where we can inject a transform for HiDPI? 724 return g; 725 } 726 727 @Override 728 public void setAlwaysOnTop(boolean isAlwaysOnTop) { 729 setStyleBits(ALWAYS_ON_TOP, isAlwaysOnTop); 730 } 731 732 @Override 733 public void setOpacity(float opacity) { 734 CWrapper.NSWindow.setAlphaValue(getNSWindowPtr(), opacity); 735 } 736 737 @Override 738 public void setOpaque(boolean isOpaque) { 739 CWrapper.NSWindow.setOpaque(getNSWindowPtr(), isOpaque); 740 if (!isOpaque) { 741 long clearColor = CWrapper.NSColor.clearColor(); 742 CWrapper.NSWindow.setBackgroundColor(getNSWindowPtr(), clearColor); 743 } 744 //This is a temporary workaround. Looks like after 7124236 will be fixed 745 //the correct place for invalidateShadow() is CGLayer.drawInCGLContext. 746 invalidateShadow(); 747 } 748 749 @Override 750 public void enterFullScreenMode() { 751 isFullScreenMode = true; 752 contentView.enterFullScreenMode(getNSWindowPtr()); 753 } 754 755 @Override 756 public void exitFullScreenMode() { 757 contentView.exitFullScreenMode(); 758 isFullScreenMode = false; 759 } 760 761 @Override 762 public void setWindowState(int windowState) { 763 if (!peer.isVisible()) { 764 // setVisible() applies the state 765 return; 766 } 767 768 int prevWindowState = peer.getState(); 769 if (prevWindowState == windowState) return; 770 771 final long nsWindowPtr = getNSWindowPtr(); 772 switch (windowState) { 773 case Frame.ICONIFIED: 774 if (prevWindowState == Frame.MAXIMIZED_BOTH) { 775 // let's return into the normal states first 776 // the zoom call toggles between the normal and the max states 777 zoom(); 778 } 779 CWrapper.NSWindow.miniaturize(nsWindowPtr); 780 break; 781 case Frame.MAXIMIZED_BOTH: 782 if (prevWindowState == Frame.ICONIFIED) { 783 // let's return into the normal states first 784 CWrapper.NSWindow.deminiaturize(nsWindowPtr); 785 } 786 zoom(); 787 break; 788 case Frame.NORMAL: 789 if (prevWindowState == Frame.ICONIFIED) { 790 CWrapper.NSWindow.deminiaturize(nsWindowPtr); 791 } else if (prevWindowState == Frame.MAXIMIZED_BOTH) { 792 // the zoom call toggles between the normal and the max states 793 zoom(); 794 } 795 break; 796 default: 797 throw new RuntimeException("Unknown window state: " + windowState); 798 } 799 800 nativeSynthesizeMouseEnteredExitedEvents(nsWindowPtr); 801 802 // NOTE: the SWP.windowState field gets updated to the newWindowState 803 // value when the native notification comes to us 804 } 805 806 @Override 807 public void setModalBlocked(boolean blocked) { 808 if (target.getModalExclusionType() == Dialog.ModalExclusionType.APPLICATION_EXCLUDE) { 809 return; 810 } 811 812 nativeSetEnabled(getNSWindowPtr(), !blocked); 813 } 814 815 @Override 816 public final void invalidateShadow(){ 817 nativeRevalidateNSWindowShadow(getNSWindowPtr()); 818 } 819 820 // ---------------------------------------------------------------------- 821 // UTILITY METHODS 822 // ---------------------------------------------------------------------- 823 824 /* 825 * Find image to install into Title or into Application icon. 826 * First try icons installed for toplevel. If there is no icon 827 * use default Duke image. 828 * This method shouldn't return null. 829 */ 830 private CImage getImageForTarget() { 831 List<Image> icons = target.getIconImages(); 832 if (icons == null || icons.size() == 0) { 833 return null; 834 } 835 return CImage.getCreator().createFromImages(icons); 836 } 837 838 /* 839 * Returns LWWindowPeer associated with this delegate. 840 */ 841 @Override 842 public LWWindowPeer getPeer() { 843 return peer; 844 } 845 846 public CPlatformView getContentView() { 847 return contentView; 848 } 849 850 @Override 851 public long getLayerPtr() { 852 return contentView.getWindowLayerPtr(); 853 } 854 855 private void validateSurface() { 856 SurfaceData surfaceData = getSurfaceData(); 857 if (surfaceData instanceof CGLSurfaceData) { 858 ((CGLSurfaceData)surfaceData).validate(); 859 } 860 } 861 862 /************************************************************* 863 * Callbacks from the AWTWindow and AWTView objc classes. 864 *************************************************************/ 865 private void deliverWindowFocusEvent(boolean gained){ 866 // Fix for 7150349: ingore "gained" notifications when the app is inactive. 867 if (gained && !((LWCToolkit)Toolkit.getDefaultToolkit()).isApplicationActive()) { 868 focusLogger.fine("the app is inactive, so the notification is ignored"); 869 return; 870 } 871 responder.handleWindowFocusEvent(gained); 872 } 873 874 private void deliverMoveResizeEvent(int x, int y, int width, int height) { 875 // when the content view enters the full-screen mode, the native 876 // move/resize notifications contain a bounds smaller than 877 // the whole screen and therefore we ignore the native notifications 878 // and the content view itself creates correct synthetic notifications 879 if (isFullScreenMode) return; 880 881 nativeBounds = new Rectangle(x, y, width, height); 882 peer.notifyReshape(x, y, width, height); 883 //TODO validateSurface already called from notifyReshape 884 validateSurface(); 885 } 886 887 private void deliverWindowClosingEvent() { 888 if (peer.getBlocker() == null) { 889 peer.postEvent(new WindowEvent(target, WindowEvent.WINDOW_CLOSING)); 890 } 891 } 892 893 private void deliverIconify(final boolean iconify) { 894 peer.notifyIconify(iconify); 895 } 896 897 private void deliverZoom(final boolean isZoomed) { 898 peer.notifyZoom(isZoomed); 899 } 900 901 private void deliverNCMouseDown() { 902 peer.notifyNCMouseDown(); 903 } 904 905 /* 906 * Our focus model is synthetic and only non-simple window 907 * may become natively focusable window. 908 */ 909 private boolean isNativelyFocusableWindow() { 910 return !peer.isSimpleWindow() && target.getFocusableWindowState(); 911 } 912 913 /* 914 * An utility method for the support of the auto request focus. 915 * Updates the focusable state of the window under certain 916 * circumstances. 917 */ 918 private void updateFocusabilityForAutoRequestFocus(boolean isFocusable) { 919 if (target.isAutoRequestFocus() || !isNativelyFocusableWindow()) return; 920 setStyleBits(SHOULD_BECOME_KEY | SHOULD_BECOME_MAIN, isFocusable); // set both bits at once 921 } 922 923 private boolean checkBlocking() { 924 LWWindowPeer blocker = peer.getBlocker(); 925 if (blocker == null) { 926 return false; 927 } 928 929 CPlatformWindow pWindow = (CPlatformWindow)blocker.getPlatformWindow(); 930 931 pWindow.orderAboveSiblings(); 932 933 final long nsWindowPtr = pWindow.getNSWindowPtr(); 934 CWrapper.NSWindow.orderFrontRegardless(nsWindowPtr); 935 CWrapper.NSWindow.makeKeyAndOrderFront(nsWindowPtr); 936 CWrapper.NSWindow.makeMainWindow(nsWindowPtr); 937 938 return true; 939 } 940 941 private void orderAboveSiblings() { 942 if (owner == null) { 943 return; 944 } 945 946 // NOTE: the logic will fail if we have a hierarchy like: 947 // visible root owner 948 // invisible owner 949 // visible dialog 950 // However, this is an unlikely scenario for real life apps 951 if (owner.isVisible()) { 952 // Recursively pop up the windows from the very bottom so that only 953 // the very top-most one becomes the main window 954 owner.orderAboveSiblings(); 955 956 // Order the window to front of the stack of child windows 957 final long nsWindowSelfPtr = getNSWindowPtr(); 958 final long nsWindowOwnerPtr = owner.getNSWindowPtr(); 959 CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr); 960 CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove); 961 } 962 963 if (target.isAlwaysOnTop()) { 964 CWrapper.NSWindow.setLevel(getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel); 965 } 966 } 967 968 // ---------------------------------------------------------------------- 969 // NATIVE CALLBACKS 970 // ---------------------------------------------------------------------- 971 972 private void windowDidBecomeMain() { 973 assert CThreading.assertAppKit(); 974 975 if (checkBlocking()) return; 976 // If it's not blocked, make sure it's above its siblings 977 orderAboveSiblings(); 978 } 979 980 private void updateDisplay() { 981 EventQueue.invokeLater(new Runnable() { 982 public void run() { 983 validateSurface(); 984 } 985 }); 986 } 987 988 private void updateWindowContent() { 989 ComponentEvent resizeEvent = new ComponentEvent(target, ComponentEvent.COMPONENT_RESIZED); 990 SunToolkit.postEvent(SunToolkit.targetToAppContext(target), resizeEvent); 991 } 992 993 private void windowWillEnterFullScreen() { 994 updateWindowContent(); 995 } 996 private void windowDidEnterFullScreen() { 997 updateDisplay(); 998 } 999 private void windowWillExitFullScreen() { 1000 updateWindowContent(); 1001 } 1002 private void windowDidExitFullScreen() {} 1003 } --- EOF ---