src/windows/classes/sun/awt/windows/WComponentPeer.java

Print this page

        

*** 175,185 **** * dynamically layout the Container during resizing */ void dynamicallyLayoutContainer() { // If we got the WM_SIZING, this must be a Container, right? // In fact, it must be the top-level Container. ! if (log.isLoggable(PlatformLogger.FINE)) { Container parent = WToolkit.getNativeContainer((Component)target); if (parent != null) { log.fine("Assertion (parent == null) failed"); } } --- 175,185 ---- * dynamically layout the Container during resizing */ void dynamicallyLayoutContainer() { // If we got the WM_SIZING, this must be a Container, right? // In fact, it must be the top-level Container. ! if (log.isLoggable(PlatformLogger.Level.FINE)) { Container parent = WToolkit.getNativeContainer((Component)target); if (parent != null) { log.fine("Assertion (parent == null) failed"); } }
*** 280,290 **** Rectangle r = e.getUpdateRect(); if (!(e instanceof IgnorePaintEvent)) { paintArea.add(r, e.getID()); } ! if (log.isLoggable(PlatformLogger.FINEST)) { switch(e.getID()) { case PaintEvent.UPDATE: log.finest("coalescePaintEvent: UPDATE: add: x = " + r.x + ", y = " + r.y + ", width = " + r.width + ", height = " + r.height); return; --- 280,290 ---- Rectangle r = e.getUpdateRect(); if (!(e instanceof IgnorePaintEvent)) { paintArea.add(r, e.getID()); } ! if (log.isLoggable(PlatformLogger.Level.FINEST)) { switch(e.getID()) { case PaintEvent.UPDATE: log.finest("coalescePaintEvent: UPDATE: add: x = " + r.x + ", y = " + r.y + ", width = " + r.width + ", height = " + r.height); return;
*** 358,368 **** // Call the native code nativeHandleEvent(e); } void handleJavaFocusEvent(FocusEvent fe) { ! if (focusLog.isLoggable(PlatformLogger.FINER)) { focusLog.finer(fe.toString()); } setFocus(fe.getID() == FocusEvent.FOCUS_GAINED); } --- 358,368 ---- // Call the native code nativeHandleEvent(e); } void handleJavaFocusEvent(FocusEvent fe) { ! if (focusLog.isLoggable(PlatformLogger.Level.FINER)) { focusLog.finer(fe.toString()); } setFocus(fe.getID() == FocusEvent.FOCUS_GAINED); }
*** 680,690 **** switch (result) { case WKeyboardFocusManagerPeer.SNFH_FAILURE: return false; case WKeyboardFocusManagerPeer.SNFH_SUCCESS_PROCEED: ! if (focusLog.isLoggable(PlatformLogger.FINER)) { focusLog.finer("Proceeding with request to " + lightweightChild + " in " + target); } Window parentWindow = SunToolkit.getContainingWindow((Component)target); if (parentWindow == null) { return rejectFocusRequestHelper("WARNING: Parent window is null"); --- 680,690 ---- switch (result) { case WKeyboardFocusManagerPeer.SNFH_FAILURE: return false; case WKeyboardFocusManagerPeer.SNFH_SUCCESS_PROCEED: ! if (focusLog.isLoggable(PlatformLogger.Level.FINER)) { focusLog.finer("Proceeding with request to " + lightweightChild + " in " + target); } Window parentWindow = SunToolkit.getContainingWindow((Component)target); if (parentWindow == null) { return rejectFocusRequestHelper("WARNING: Parent window is null");
*** 693,703 **** if (wpeer == null) { return rejectFocusRequestHelper("WARNING: Parent window's peer is null"); } boolean res = wpeer.requestWindowFocus(cause); ! if (focusLog.isLoggable(PlatformLogger.FINER)) { focusLog.finer("Requested window focus: " + res); } // If parent window can be made focused and has been made focused(synchronously) // then we can proceed with children, otherwise we retreat. if (!(res && parentWindow.isFocused())) { --- 693,703 ---- if (wpeer == null) { return rejectFocusRequestHelper("WARNING: Parent window's peer is null"); } boolean res = wpeer.requestWindowFocus(cause); ! if (focusLog.isLoggable(PlatformLogger.Level.FINER)) { focusLog.finer("Requested window focus: " + res); } // If parent window can be made focused and has been made focused(synchronously) // then we can proceed with children, otherwise we retreat. if (!(res && parentWindow.isFocused())) {
*** 715,725 **** } return false; } private boolean rejectFocusRequestHelper(String logMsg) { ! if (focusLog.isLoggable(PlatformLogger.FINER)) { focusLog.finer(logMsg); } WKeyboardFocusManagerPeer.removeLastFocusRequest((Component)target); return false; } --- 715,725 ---- } return false; } private boolean rejectFocusRequestHelper(String logMsg) { ! if (focusLog.isLoggable(PlatformLogger.Level.FINER)) { focusLog.finer(logMsg); } WKeyboardFocusManagerPeer.removeLastFocusRequest((Component)target); return false; }
*** 1092,1102 **** * Applies the shape to the native component window. * @since 1.7 */ @SuppressWarnings("deprecation") public void applyShape(Region shape) { ! if (shapeLog.isLoggable(PlatformLogger.FINER)) { shapeLog.finer("*** INFO: Setting shape: PEER: " + this + "; TARGET: " + target + "; SHAPE: " + shape); } --- 1092,1102 ---- * Applies the shape to the native component window. * @since 1.7 */ @SuppressWarnings("deprecation") public void applyShape(Region shape) { ! if (shapeLog.isLoggable(PlatformLogger.Level.FINER)) { shapeLog.finer("*** INFO: Setting shape: PEER: " + this + "; TARGET: " + target + "; SHAPE: " + shape); }