/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.di.ui.job.entries.hl7mllpin; import org.eclipse.swt.SWT; import org.eclipse.swt.events.ModifyEvent; import org.eclipse.swt.events.ModifyListener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.ShellAdapter; import org.eclipse.swt.events.ShellEvent; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.pentaho.di.core.Const; import org.pentaho.di.i18n.BaseMessages; import org.pentaho.di.job.JobMeta; import org.pentaho.di.job.entries.hl7mllpin.HL7MLLPInput; import org.pentaho.di.job.entry.JobEntryDialogInterface; import org.pentaho.di.job.entry.JobEntryInterface; import org.pentaho.di.repository.Repository; import org.pentaho.di.ui.core.gui.WindowProperty; import org.pentaho.di.ui.core.widget.LabelText; import org.pentaho.di.ui.core.widget.LabelTextVar; import org.pentaho.di.ui.job.dialog.JobDialog; import org.pentaho.di.ui.job.entry.JobEntryDialog; import org.pentaho.di.ui.trans.step.BaseStepDialog; /** * This dialog allows you to edit the HL7 MPPL Input job entry. * * @since 24-03-2011 * @author matt */ public class HL7MLLPInputDialog extends JobEntryDialog implements JobEntryDialogInterface { private static Class<?> PKG = HL7MLLPInput.class; // for i18n purposes, // needed by Translator2!! private LabelText wName; private LabelTextVar wServer; private LabelTextVar wPort; private LabelTextVar wMessageVariable; private LabelTextVar wMessageTypeVariable; private Button wOK, wCancel; private HL7MLLPInput jobEntry; private Shell shell; private SelectionAdapter lsDef; private boolean changed; public HL7MLLPInputDialog( Shell parent, JobEntryInterface jobEntry, Repository rep, JobMeta jobMeta ) { super( parent, jobEntry, rep, jobMeta ); this.jobEntry = (HL7MLLPInput) jobEntry; if ( this.jobEntry.getName() == null ) { this.jobEntry.setName( BaseMessages.getString( PKG, "HL7MLLPInputDialog.Name.Default" ) ); } } public JobEntryInterface open() { Shell parent = getParent(); Display display = parent.getDisplay(); shell = new Shell( parent, props.getJobsDialogStyle() ); props.setLook( shell ); JobDialog.setShellImage( shell, jobEntry ); ModifyListener lsMod = new ModifyListener() { public void modifyText( ModifyEvent e ) { jobEntry.setChanged(); } }; changed = jobEntry.hasChanged(); FormLayout formLayout = new FormLayout(); formLayout.marginWidth = Const.FORM_MARGIN; formLayout.marginHeight = Const.FORM_MARGIN; shell.setLayout( formLayout ); shell.setText( BaseMessages.getString( PKG, "HL7MLLPInputDialog.Title" ) ); int margin = Const.MARGIN; // Job entry name line wName = new LabelText( shell, BaseMessages.getString( PKG, "HL7MLLPInputDialog.Name.Label" ), BaseMessages.getString( PKG, "HL7MLLPInputDialog.Name.Tooltip" ) ); wName.addModifyListener( lsMod ); FormData fdName = new FormData(); fdName.top = new FormAttachment( 0, 0 ); fdName.left = new FormAttachment( 0, 0 ); fdName.right = new FormAttachment( 100, 0 ); wName.setLayoutData( fdName ); Control lastControl = wName; // the server // wServer = new LabelTextVar( jobMeta, shell, BaseMessages.getString( PKG, "HL7MLLPInputDialog.Server.Label" ), BaseMessages.getString( PKG, "HL7MLLPInputDialog.Server.Tooltip" ) ); props.setLook( wServer ); wServer.addModifyListener( lsMod ); FormData fdBatchIdSchema = new FormData(); fdBatchIdSchema.left = new FormAttachment( 0, 0 ); fdBatchIdSchema.top = new FormAttachment( lastControl, margin ); fdBatchIdSchema.right = new FormAttachment( 100, 0 ); wServer.setLayoutData( fdBatchIdSchema ); lastControl = wServer; // the port // wPort = new LabelTextVar( jobMeta, shell, BaseMessages.getString( PKG, "HL7MLLPInputDialog.Port.Label" ), BaseMessages .getString( PKG, "HL7MLLPInputDialog.Port.Tooltip" ) ); props.setLook( wPort ); wPort.addModifyListener( lsMod ); FormData fdPort = new FormData(); fdPort.left = new FormAttachment( 0, 0 ); fdPort.top = new FormAttachment( lastControl, margin ); fdPort.right = new FormAttachment( 100, 0 ); wPort.setLayoutData( fdPort ); lastControl = wPort; // The Message Variable // wMessageVariable = new LabelTextVar( jobMeta, shell, BaseMessages.getString( PKG, "HL7MLLPInputDialog.MessageVariable.Label" ), BaseMessages.getString( PKG, "HL7MLLPInputDialog.MessageVariable.Tooltip" ) ); props.setLook( wMessageVariable ); wMessageVariable.addModifyListener( lsMod ); FormData fdMessageVariable = new FormData(); fdMessageVariable.left = new FormAttachment( 0, 0 ); fdMessageVariable.top = new FormAttachment( lastControl, margin ); fdMessageVariable.right = new FormAttachment( 100, 0 ); wMessageVariable.setLayoutData( fdMessageVariable ); lastControl = wMessageVariable; // The ControlId Variable // wMessageTypeVariable = new LabelTextVar( jobMeta, shell, BaseMessages.getString( PKG, "HL7MLLPInputDialog.MessageTypeVariable.Label" ), BaseMessages.getString( PKG, "HL7MLLPInputDialog.MessageTypeVariable.Tooltip" ) ); props.setLook( wMessageTypeVariable ); wMessageTypeVariable.addModifyListener( lsMod ); FormData fdMessageTypeVariable = new FormData(); fdMessageTypeVariable.left = new FormAttachment( 0, 0 ); fdMessageTypeVariable.top = new FormAttachment( lastControl, margin ); fdMessageTypeVariable.right = new FormAttachment( 100, 0 ); wMessageTypeVariable.setLayoutData( fdMessageTypeVariable ); lastControl = wMessageTypeVariable; wOK = new Button( shell, SWT.PUSH ); wOK.setText( BaseMessages.getString( PKG, "System.Button.OK" ) ); wCancel = new Button( shell, SWT.PUSH ); wCancel.setText( BaseMessages.getString( PKG, "System.Button.Cancel" ) ); BaseStepDialog.positionBottomButtons( shell, new Button[] { wOK, wCancel }, margin, lastControl ); // Add listeners // wCancel.addListener( SWT.Selection, new Listener() { public void handleEvent( Event e ) { cancel(); } } ); wOK.addListener( SWT.Selection, new Listener() { public void handleEvent( Event e ) { ok(); } } ); lsDef = new SelectionAdapter() { public void widgetDefaultSelected( SelectionEvent e ) { ok(); } }; wName.addSelectionListener( lsDef ); wServer.addSelectionListener( lsDef ); wPort.addSelectionListener( lsDef ); wMessageVariable.addSelectionListener( lsDef ); wMessageTypeVariable.addSelectionListener( lsDef ); // Detect X or ALT-F4 or something that kills this window... shell.addShellListener( new ShellAdapter() { public void shellClosed( ShellEvent e ) { cancel(); } } ); getData(); BaseStepDialog.setSize( shell ); shell.open(); props.setDialogSize( shell, "HL7MLLPInputDialog.DialogSize" ); while ( !shell.isDisposed() ) { if ( !display.readAndDispatch() ) { display.sleep(); } } return jobEntry; } public void dispose() { WindowProperty winprop = new WindowProperty( shell ); props.setScreen( winprop ); shell.dispose(); } /** * Copy information from the meta-data input to the dialog fields. */ public void getData() { wName.setText( Const.NVL( jobEntry.getName(), "" ) ); wName.getTextWidget().selectAll(); wServer.setText( Const.NVL( jobEntry.getServer(), "" ) ); wPort.setText( Const.NVL( jobEntry.getPort(), "" ) ); wMessageVariable.setText( Const.NVL( jobEntry.getMessageVariableName(), "" ) ); wMessageTypeVariable.setText( Const.NVL( jobEntry.getMessageTypeVariableName(), "" ) ); } private void cancel() { jobEntry.setChanged( changed ); jobEntry = null; dispose(); } private void ok() { jobEntry.setName( wName.getText() ); getInfo( jobEntry ); dispose(); } private void getInfo( HL7MLLPInput entry ) { entry.setServer( wServer.getText() ); entry.setPort( wPort.getText() ); entry.setMessageVariableName( wMessageVariable.getText() ); entry.setMessageTypeVariableName( wMessageTypeVariable.getText() ); } }