com.eviware.x.impl.swing.SwingXFormDialogBuilder Maven / Gradle / Ivy
The newest version!
/*
* soapUI, copyright (C) 2004-2011 smartbear.com
*
* soapUI is free software; you can redistribute it and/or modify it under the
* terms of version 2.1 of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details at gnu.org.
*/
package com.eviware.x.impl.swing;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.ImageIcon;
import javax.swing.KeyStroke;
import com.eviware.soapui.support.HelpActionMarker;
import com.eviware.soapui.support.Tools;
import com.eviware.soapui.support.UISupport;
import com.eviware.soapui.support.action.swing.ActionList;
import com.eviware.soapui.support.action.swing.DefaultActionList;
import com.eviware.x.form.XForm;
import com.eviware.x.form.XFormDialog;
import com.eviware.x.form.XFormDialogBuilder;
public class SwingXFormDialogBuilder extends XFormDialogBuilder
{
private String name;
private SwingXFormDialog dialog;
public SwingXFormDialogBuilder( String name )
{
this.name = name;
}
@Override
public XForm createForm( String name )
{
XForm form = new SwingXFormImpl( name );
( ( SwingXFormImpl )form ).addSpace( 5 );
addForm( form );
return form;
}
@Override
public XFormDialog buildDialog( ActionList actions, String description, ImageIcon icon )
{
XForm[] forms = getForms();
dialog = forms.length > 1 ? new JTabbedFormDialog( name, forms, actions, description, icon ) : new JFormDialog(
name, ( SwingXFormImpl )forms[0], actions, description, icon );
return dialog;
}
@Override
public XFormDialog buildWizard( String description, ImageIcon icon, String helpURL )
{
Action helpAction = ( helpURL.length() > 0 ? new HelpAction( helpURL ) : null );
XForm[] forms = getForms();
dialog = new JWizardDialog( name, forms, helpAction, description, icon );
return dialog;
}
@Override
public ActionList buildOkCancelActions()
{
DefaultActionList actions = new DefaultActionList( "Actions" );
actions.addAction( new OKAction() );
actions.addAction( new CancelAction() );
return actions;
}
@Override
public ActionList buildOkCancelHelpActions( String url )
{
DefaultActionList actions = new DefaultActionList( "Actions" );
actions.addAction( new HelpAction( url ) );
OKAction okAction = new OKAction();
actions.addAction( okAction );
actions.addAction( new CancelAction() );
actions.setDefaultAction( okAction );
return actions;
}
@Override
public ActionList buildHelpActions( String url )
{
DefaultActionList actions = new DefaultActionList( "Actions" );
actions.addAction( new HelpAction( url ) );
return actions;
}
protected final class OKAction extends AbstractAction
{
public OKAction()
{
super( "OK" );
}
public void actionPerformed( ActionEvent e )
{
if( dialog != null && dialog.validate() )
{
dialog.setReturnValue( XFormDialog.OK_OPTION );
dialog.setVisible( false );
}
}
}
protected final class CancelAction extends AbstractAction
{
public CancelAction()
{
super( "Cancel" );
}
public void actionPerformed( ActionEvent e )
{
if( dialog != null )
{
dialog.setReturnValue( XFormDialog.CANCEL_OPTION );
dialog.setVisible( false );
}
}
}
public final class HelpAction extends AbstractAction implements HelpActionMarker
{
private String url;
public HelpAction( String url )
{
this( "Online Help", url, UISupport.getKeyStroke( "F1" ) );
}
public HelpAction( String title, String url )
{
this( title, url, null );
}
public HelpAction( String title, String url, KeyStroke accelerator )
{
super( title );
this.url = url;
putValue( Action.SHORT_DESCRIPTION, "Show online help" );
if( accelerator != null )
putValue( Action.ACCELERATOR_KEY, accelerator );
putValue( Action.SMALL_ICON, UISupport.HELP_ICON );
}
public void setUrl( String url )
{
this.url = url;
}
public void actionPerformed( ActionEvent e )
{
Tools.openURL( url );
}
}
}