-
Notifications
You must be signed in to change notification settings - Fork 137
FAQ How do I embed AWT and Swing inside SWT?
Simeon Andreev edited this page Feb 23, 2023
·
1 revision
In Eclipse 3.0, APIs have been introduced for integrating AWT and Swing
with SWT. This support is �product-quality� on Windows and has only
early access support on Linux under JDK 1.5. The main entry point for
AWT integration is the class SWT_AWT
. It provides a factory method,
new_Frame
, that creates an AWT Frame
that is parented within an SWT
Composite
. From there, you can create whatever AWT components you want
within that frame. The bridging layer created by SWT_AWT
handles
forwarding of SWT events to the corresponding AWT events within the
frame.
- Swing/SWT Integration Article on eclipse.org
- FAQ Is SWT better than Swing?
- Albireo Albireo is an Eclipse Technology project (in incubation phase) that simplifies the task of combining user interface components from the Swing and SWT toolkits. It builds on SWT's standard SWT_AWT bridge, implementing much of the tricky code that is currently left to the developer.
- DJ project The other way around. The DJ Project lets you embed SWT components in Swing.