All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.awt.SWT_AWT Maven / Gradle / Ivy

Go to download

The osx x86_64 swt jar as available in the Eclipse 4.6 (Neon) release for OSX. It is suitable for use with jface and other dependencies available from maven central in the org.eclipse.scout.sdk.deps group. The sources is copied from swt-4.6-cocoa-macosx-x86_64.zip from http://download.eclipse.org/eclipse/downloads/drops4/R-4.6-201606061100/ and javadoc is generated from sources.

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2016 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Scott Kovatch - interface to apple.awt.CHIViewEmbeddedFrame
 *******************************************************************************/
package org.eclipse.swt.awt;

import java.awt.*;
import java.awt.Canvas;
import java.awt.event.*;
import java.lang.reflect.*;

import org.eclipse.swt.*;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.internal.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Event;

/**
 * This class provides a bridge between SWT and AWT, so that it
 * is possible to embed AWT components in SWT and vice versa.
 *
 * @see Swing/AWT snippets
 * @see Sample code and further information
 *
 * @since 3.0
 */
public class SWT_AWT {

	/**
	 * The name of the embedded Frame class. The default class name
	 * for the platform will be used if null.
	 */
	public static String embeddedFrameClass;

	/**
	 * Key for looking up the embedded frame for a Composite using
	 * getData().
	 */
	static String EMBEDDED_FRAME_KEY = "org.eclipse.swt.awt.SWT_AWT.embeddedFrame";

	/**
	 * Key for running pending AWT invokeLater() events.
	 */
	static final String RUN_AWT_INVOKE_LATER_KEY = "org.eclipse.swt.internal.runAWTInvokeLater"; //$NON-NLS-1$

	static {
		System.setProperty("apple.awt.usingSWT", "true");
	}

	static final String JDK16_FRAME = "apple.awt.CEmbeddedFrame";
	static final String JDK17_FRAME = "sun.lwawt.macosx.CViewEmbeddedFrame";

	static boolean loaded, swingInitialized;

	static native final long /*int*/ getAWTHandle (Canvas canvas);

	static synchronized void loadLibrary () {
		if (loaded) return;
		loaded = true;
		Toolkit.getDefaultToolkit();
		/*
		 * Note that the jawt library is loaded explicitly
		 * because it cannot be found by the library loader.
		 * All exceptions are caught because the library may
		 * have been loaded already.
		 */
		try {
			System.loadLibrary("jawt");
		} catch (Throwable e) {}
		Library.loadLibrary("swt-awt");
	}

	static synchronized void initializeSwing() {
		if (swingInitialized) return;
		swingInitialized = true;
		try {
			/* Initialize the default focus traversal policy */
			Class clazz = Class.forName("javax.swing.UIManager");
			Method method = clazz.getMethod("getDefaults");
			if (method != null) method.invoke(clazz);
		} catch (Throwable e) {}
	}

/**
 * Returns a java.awt.Frame which is the embedded frame
 * associated with the specified composite.
 *
 * @param parent the parent Composite of the java.awt.Frame
 * @return a java.awt.Frame the embedded frame or null.
 *
 * @exception IllegalArgumentException 
    *
  • ERROR_NULL_ARGUMENT - if the parent is null
  • *
* * @since 3.2 */ public static Frame getFrame(Composite parent) { if (parent == null) SWT.error(SWT.ERROR_NULL_ARGUMENT); if ((parent.getStyle() & SWT.EMBEDDED) == 0) return null; return (Frame) parent.getData(EMBEDDED_FRAME_KEY); } /** * Creates a new java.awt.Frame. This frame is the root for * the AWT components that will be embedded within the composite. In order * for the embedding to succeed, the composite must have been created * with the SWT.EMBEDDED style. *

* IMPORTANT: As of JDK1.5, the embedded frame does not receive mouse events. * When a lightweight component is added as a child of the embedded frame, * the cursor does not change. In order to work around both these problems, it is * strongly recommended that a heavyweight component such as java.awt.Panel * be added to the frame as the root of all components. *

* * @param parent the parent Composite of the new java.awt.Frame * @return a java.awt.Frame to be the parent of the embedded AWT components * * @exception IllegalArgumentException
    *
  • ERROR_NULL_ARGUMENT - if the parent is null
  • *
  • ERROR_INVALID_ARGUMENT - if the parent Composite does not have the SWT.EMBEDDED style
  • *
* * @since 3.0 */ public static Frame new_Frame(final Composite parent) { if (parent == null) SWT.error(SWT.ERROR_NULL_ARGUMENT); if ((parent.getStyle() & SWT.EMBEDDED) == 0) { SWT.error(SWT.ERROR_INVALID_ARGUMENT); } final long /*int*/ handle = parent.view.id; final Class [] clazz = new Class [1]; try { String className = embeddedFrameClass != null ? embeddedFrameClass : JDK16_FRAME; if (embeddedFrameClass == null) { clazz[0] = Class.forName(className, true, ClassLoader.getSystemClassLoader()); } else { clazz[0] = Class.forName(className); } } catch (ClassNotFoundException cne) { try { clazz[0] = Class.forName(JDK17_FRAME); } catch (ClassNotFoundException cne1) { SWT.error (SWT.ERROR_NOT_IMPLEMENTED, cne1); } } catch (Throwable e) { SWT.error (SWT.ERROR_UNSPECIFIED , e, " [Error while starting AWT]"); } /* NOTE: Swing must not be initialize in an invokeLater() or it hangs */ initializeSwing(); final Frame [] result = new Frame [1]; final Throwable[] exception = new Throwable[1]; Runnable runnable = new Runnable () { boolean run; @Override public void run() { if (run) return; run = true; Constructor constructor = null; try { constructor = clazz[0].getConstructor (long.class); result [0] = (Frame) (constructor.newInstance (new Long(handle))); result [0].addNotify(); } catch (Throwable e) { exception[0] = e; } } }; if (EventQueue.isDispatchThread() || parent.getDisplay().getSyncThread() != null) { runnable.run(); } else { /* Force AWT to process the invokeLater() right away */ EventQueue.invokeLater(runnable); Display display = parent.getDisplay(); while (result[0] == null && exception[0] == null) { display.setData(RUN_AWT_INVOKE_LATER_KEY, new Boolean (true)); Boolean invoked = (Boolean)display.getData(RUN_AWT_INVOKE_LATER_KEY); if (invoked != null && !invoked.booleanValue()) { runnable.run(); } } } if (exception[0] != null) { SWT.error (SWT.ERROR_NOT_IMPLEMENTED, exception[0]); } final Frame frame = result[0]; final boolean isJDK17 = JDK17_FRAME.equals(frame.getClass().getName()); /* NOTE: addNotify() should not be called in the UI thread or we could hang */ //frame.addNotify(); parent.setData(EMBEDDED_FRAME_KEY, frame); /* Forward the iconify and deiconify events */ final Listener shellListener = new Listener () { @Override public void handleEvent (Event e) { switch (e.type) { case SWT.Deiconify: EventQueue.invokeLater(new Runnable () { @Override public void run () { frame.dispatchEvent (new WindowEvent (frame, WindowEvent.WINDOW_DEICONIFIED)); } }); break; case SWT.Iconify: EventQueue.invokeLater(new Runnable () { @Override public void run () { frame.dispatchEvent (new WindowEvent (frame, WindowEvent.WINDOW_ICONIFIED)); } }); break; } } }; Shell shell = parent.getShell (); shell.addListener (SWT.Deiconify, shellListener); shell.addListener (SWT.Iconify, shellListener); /* When display is disposed the frame is disposed in AWT EventQueue. * Force main event loop to run to let the frame finish dispose. */ final Display display = parent.getDisplay(); display.addListener(SWT.Dispose, new Listener() { @Override public void handleEvent(Event event) { while (frame.isDisplayable() && !display.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } //Frame finished dispose, the listener can be removed if (!display.isDisposed()) { display.removeListener(SWT.Dispose, this); } } }); /* * Generate the appropriate events to activate and deactivate * the embedded frame. This is needed in order to make keyboard * focus work properly for lightweights. */ Listener listener = new Listener () { @Override public void handleEvent (Event e) { switch (e.type) { case SWT.Dispose: Shell shell = parent.getShell (); shell.removeListener (SWT.Deiconify, shellListener); shell.removeListener (SWT.Iconify, shellListener); if (isJDK17) { shell.removeListener (SWT.Activate, this); shell.removeListener (SWT.Deactivate, this); } parent.setVisible(false); EventQueue.invokeLater(new Runnable () { @Override public void run () { try { frame.dispose (); } catch (Throwable e) {} } }); break; case SWT.Activate: if (!parent.isFocusControl()) return; case SWT.FocusIn: EventQueue.invokeLater(new Runnable () { @Override public void run () { if (frame.isActive()) return; try { Class clazz = frame.getClass(); Method method = clazz.getMethod("synthesizeWindowActivation", boolean.class); if (method != null) method.invoke(frame, Boolean.TRUE); } catch (Throwable e) {e.printStackTrace();} } }); break; case SWT.Deactivate: case SWT.FocusOut: EventQueue.invokeLater(new Runnable () { @Override public void run () { if (!frame.isActive()) return; try { Class clazz = frame.getClass(); Method method = clazz.getMethod("synthesizeWindowActivation", boolean.class); if (method != null) method.invoke(frame, Boolean.FALSE); } catch (Throwable e) {e.printStackTrace();} } }); break; } } }; parent.addListener (SWT.FocusIn, listener); if (isJDK17) { parent.addListener(SWT.FocusOut, listener); //To allow cross-app activation/deactivation shell.addListener (SWT.Activate, listener); shell.addListener (SWT.Deactivate, listener); } else { parent.addListener (SWT.Deactivate, listener); } parent.addListener (SWT.Dispose, listener); display.asyncExec(new Runnable() { @Override public void run () { if (parent.isDisposed()) return; final Rectangle clientArea = parent.getClientArea(); if (isJDK17) { try { Method method = frame.getClass().getMethod("validateWithBounds", int.class, int.class, int.class, int.class); if (method != null) method.invoke(frame, Integer.valueOf(clientArea.x), Integer.valueOf(clientArea.y), Integer.valueOf(clientArea.width), Integer.valueOf(clientArea.height)); } catch (Throwable e) {e.printStackTrace();} } else { EventQueue.invokeLater(new Runnable () { @Override public void run () { frame.setSize(clientArea.width, clientArea.height); frame.validate(); // Bug in Cocoa AWT? For some reason the frame isn't showing up on first draw. // Toggling visibility seems to be the only thing that works. frame.setVisible(false); frame.setVisible(true); } }); } } }); return frame; } /** * Creates a new Shell. This Shell is the root for * the SWT widgets that will be embedded within the AWT canvas. * * @param display the display for the new Shell * @param parent the parent java.awt.Canvas of the new Shell * @return a Shell to be the parent of the embedded SWT widgets * * @exception IllegalArgumentException
    *
  • ERROR_NULL_ARGUMENT - if the display is null
  • *
  • ERROR_NULL_ARGUMENT - if the parent is null
  • *
  • ERROR_INVALID_ARGUMENT - if the parent's peer is not created
  • *
* * @since 3.0 */ public static Shell new_Shell(final Display display, final Canvas parent) { if (display == null) SWT.error (SWT.ERROR_NULL_ARGUMENT); if (parent == null) SWT.error (SWT.ERROR_NULL_ARGUMENT); long /*int*/ handle = 0; try { loadLibrary (); handle = getAWTHandle (parent); } catch (Throwable e) { SWT.error (SWT.ERROR_NOT_IMPLEMENTED, e); } if (handle == 0) SWT.error (SWT.ERROR_INVALID_ARGUMENT, null, " [peer not created]"); final Shell shell = Shell.cocoa_new (display, handle); final ComponentListener listener = new ComponentAdapter () { @Override public void componentResized (ComponentEvent e) { display.asyncExec (new Runnable () { @Override public void run () { if (shell.isDisposed()) return; Dimension dim = parent.getSize (); shell.setSize (dim.width, dim.height); } }); } }; parent.addComponentListener(listener); shell.addListener(SWT.Dispose, new Listener() { @Override public void handleEvent(Event event) { parent.removeComponentListener(listener); } }); shell.setVisible (true); return shell; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy