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

com.eviware.x.impl.swing.JFormDialog 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.BorderLayout;
import java.awt.Color;
import java.awt.Dialog.ModalityType;
import java.awt.Dimension;
import java.util.concurrent.CountDownLatch;

import javax.swing.Action;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JPanel;

import com.eviware.soapui.support.HelpActionMarker;
import com.eviware.soapui.support.StringUtils;
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.soapui.support.components.JButtonBar;
import com.eviware.soapui.support.types.StringToStringMap;
import com.eviware.x.form.ValidationMessage;
import com.eviware.x.form.XForm;
import com.eviware.x.form.XFormDialog;
import com.eviware.x.form.XFormField;

public class JFormDialog extends SwingXFormDialog
{
	private JDialog dialog;
	private SwingXFormImpl form;
	private JButtonBar buttons;
	private boolean resized;
	private ActionList actions;
	private JPanel panel;

	public JFormDialog( String name, SwingXFormImpl form, ActionList actions, String description, ImageIcon icon )
	{
		dialog = new JDialog( UISupport.getMainFrame(), name, true );

		this.actions = actions;
		buttons = UISupport.initDialogActions( actions, dialog );
		buttons.setBorder( BorderFactory.createEmptyBorder( 5, 0, 0, 0 ) );
		JPanel panel = new JPanel( new BorderLayout() );
		this.form = ( SwingXFormImpl )form;
		panel.add( ( this.form.getPanel() ), BorderLayout.CENTER );
		panel.setBorder( BorderFactory.createEmptyBorder( 5, 5, 5, 5 ) );

		if( description != null || icon != null )
			dialog.getContentPane().add( UISupport.buildDescription( name, description, icon ), BorderLayout.NORTH );

		dialog.getContentPane().add( panel, BorderLayout.CENTER );

		buttons
				.setBorder( BorderFactory.createCompoundBorder( BorderFactory.createCompoundBorder(
						BorderFactory.createMatteBorder( 1, 0, 0, 0, Color.GRAY ),
						BorderFactory.createMatteBorder( 1, 0, 0, 0, Color.WHITE ) ), BorderFactory.createEmptyBorder( 3, 5,
						3, 5 ) ) );

		dialog.getContentPane().add( buttons, BorderLayout.SOUTH );
		this.panel = panel;
	}

	public void setValues( StringToStringMap values )
	{
		form.setValues( values );
	}

	public JDialog getDialog()
	{
		return dialog;
	}

	public void setSize( int i, int j )
	{
		dialog.setSize( i, j );
		resized = true;
	}

	public XForm[] getForms()
	{
		return new XForm[] { form };
	}

	public StringToStringMap getValues()
	{
		StringToStringMap result = new StringToStringMap();
		result.putAll( form.getValues() );

		return result;
	}

	public void setOptions( String field, Object[] options )
	{
		form.setOptions( field, options );
	}

	public void setVisible( boolean visible )
	{
		if( !resized && visible )
		{
			dialog.pack();
			if( dialog.getHeight() < 270 )
			{
				dialog.setSize( new Dimension( dialog.getWidth(), 270 ) );
			}

			if( dialog.getWidth() < 450 )
			{
				dialog.setSize( new Dimension( 450, dialog.getHeight() ) );
			}
		}

		if( visible )
		{
			UISupport.centerDialog( dialog );
		}
		dialog.setVisible( visible );

		if( startSignal != null )
			startSignal.countDown();
	}

	public void addAction( Action action )
	{
		DefaultActionList actions = new DefaultActionList();
		actions.addAction( action );
		buttons.addActions( actions );
	}

	public boolean validate()
	{
		XFormField[] formFields = form.getFormFields();
		for( int c = 0; c < formFields.length; c++ )
		{
			ValidationMessage[] messages = formFields[c].validate();
			if( messages != null && messages.length > 0 )
			{
				( ( AbstractSwingXFormField )messages[0].getFormField() ).getComponent().requestFocus();
				UISupport.showErrorMessage( messages[0].getMessage() );
				return false;
			}
		}

		return true;
	}

	public void setFormFieldProperty( String name, Object value )
	{
		form.setFormFieldProperty( name, value );
	}

	public String getValue( String field )
	{
		return form.getComponentValue( field );
	}

	public void setValue( String field, String value )
	{
		form.setComponentValue( field, value );
	}

	public int getValueIndex( String name )
	{
		Object[] options = form.getOptions( name );
		if( options == null )
			return -1;

		return StringUtils.toStringList( options ).indexOf( form.getComponentValue( name ) );
	}

	private CountDownLatch startSignal;

	public boolean show()
	{
		setReturnValue( XFormDialog.CANCEL_OPTION );
		show( new StringToStringMap() );
		if( dialog.getModalityType() == ModalityType.MODELESS )
		{
			startSignal = new CountDownLatch( 1 );
			try
			{
				startSignal.await();
			}
			catch( InterruptedException e )
			{
				e.printStackTrace();
			}

			startSignal = null;
		}

		return getReturnValue() == XFormDialog.OK_OPTION;
	}

	public XFormField getFormField( String name )
	{
		return form.getFormField( name );
	}

	public void setWidth( int i )
	{
		dialog.setPreferredSize( new Dimension( i, ( int )dialog.getPreferredSize().getHeight() ) );
	}

	public void release()
	{
		dialog.dispose();
	}

	/*
	 * Is there any other way to do this?
	 */
	public void setHelpUrl( String helpUrl )
	{
		for( int cnt = 0; cnt < actions.getActionCount(); cnt++ )
		{
			if( actions.getActionAt( cnt ) instanceof HelpActionMarker )
			{
				( ( SwingXFormDialogBuilder.HelpAction )actions.getActionAt( cnt ) ).setUrl( helpUrl );
				break;
			}
		}
	}

	public JPanel getPanel()
	{
		return panel;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy