facebook

Swing?

  1. MyEclipse IDE
  2.  > 
  3. Feature Requests
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #204465 Reply

    🙂 Swing support

    #204473 Reply

    Riyad Kalla
    Member

    special,
    MyEclipse is a J2EE development environment, Swing is for client-based UIs… definately two different worlds.

    The good news for you is that there is entire team dedicated to developing a GUI development plugin for Eclipse that currently supports Swing and will fully support Swing AND SWT when Eclipse 3.0 comes out.

    Its called the Visual Editor Plugin (great name hu?) and can be found here:
    http://www.eclipse.org/vep/

    #205219 Reply

    Check out Jigloo, at http://cloudgarden.com/jigloo/

    An excellent and inexpensive product that integrates well with Eclipse.

    #205306 Reply

    Marcus Beyer
    Member

    @support-rkalla wrote:

    The good news for you is that there is entire team dedicated to developing a GUI development plugin for Eclipse that currently supports Swing and will fully support Swing AND SWT when Eclipse 3.0 comes out.

    Its called the Visual Editor Plugin (great name hu?) and can be found here:
    http://www.eclipse.org/vep/

    I already use VE for all my Swing GUIs. Nice tool 😀

    Only cons:

    – Its support for newest (1.4) Swing features is still quite basic. JSpinner+JFormattedTextField have to be inserted by a “Choose Bean” dialog etc.

    – JOptionPanes are not yet really treated as Containers. Only String is allowed as content. This can be ignored by adding components using the keyboard 🙂

    – No real support for Toolbar-Separators. You can use this simple bean as a workaround (insert it using “Choose Bean”):

    
    import javax.swing.JToolBar;
    import javax.swing.SwingConstants;
    /**
     * Fixes the weird default orientation (from horizontal to vertical). 
     * This bean is useful for the Eclipse Visual Editor.
     */
    public class VerticalJToolBarSeparator extends JToolBar.Separator
    {
        public VerticalJToolBarSeparator()
        {
            setOrientation(SwingConstants.VERTICAL);
        }
    }
    

    Marcus

Viewing 4 posts - 1 through 4 (of 4 total)
Reply To: Swing?

You must be logged in to post in the forum log in