Making MATLAB Swing More

Import of Java Swing GUIs from Eclipse, NetBeans, IntelliJ etc
857 téléchargements
Mise à jour 9 mars 2012

Afficher la licence

GImport supports the import of Java Swing-based GUIs. These can be designed by hand or by using one of the many free GUI designers such as those in Eclipse, NetBeans or IntelliJ IDEA.

If you find MATLAB GUIDE-designed GUIs limiting, GImport may be what you are looking for.

To import a GUI simply put your jar file on the MATLAB Java class path and provide an instance to the GImport constructor
g=GImport(MATLABContainer, mypackage.myclass());

MATLABContainer can be any MATLAB container e.g. a figure or uipanel.

The GImport class methods do the work as explained in the accompanying PDF documentation. This includes active layout management that causes the GUIs to resize in the same way as ‘normalized’ MATLAB figure components.

In addition, GImport supports Swing JFrames as containers:
g=GImport(JFrame, mypackage.myclass());
A GXJFrame function for thread-safe creation of JFrames is included.

The GImport class provide easy-to-use methods for thread-safe modification of the GUIs on-the-fly, MATLAB callback setup etc. together with support for Drag & Drop.

An up-to-date copy of the jcontrol class is from Project Waterloo is included. Older versions of this class should be removed.

Part of Project Waterloo from King's College London - see http://sigtool.sourceforge.net/

Citation pour cette source

Malcolm Lidierth (2024). Making MATLAB Swing More (https://www.mathworks.com/matlabcentral/fileexchange/34235-making-matlab-swing-more), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2008a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Migrate GUIDE Apps dans Help Center et MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

GImport/GImport/GImport/

GImport/GImport/GImport/@jcontrol/

Version Publié le Notes de version
1.5.0.0

Add support for externally created GUIs with no MATLAB container

1.2.0.0

Add GXJFrame function and support for JFrames

1.1.0.0

Fix hide before drawnow/layout.

1.0.0.0