/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2013 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ package org.pentaho.di.ui.core.database.wizard; import org.eclipse.jface.wizard.IWizard; import org.eclipse.jface.wizard.IWizardPage; import org.eclipse.jface.wizard.WizardPage; import org.eclipse.swt.SWT; import org.eclipse.swt.events.ModifyEvent; import org.eclipse.swt.events.ModifyListener; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text; import org.pentaho.di.core.Const; import org.pentaho.di.core.database.DatabaseMeta; import org.pentaho.di.i18n.BaseMessages; import org.pentaho.di.ui.core.PropsUI; /** * * On page one we select the ODBC DSN Name... * * @author Matt * @since 04-apr-2005 */ public class CreateDatabaseWizardPageODBC extends WizardPage { private static Class<?> PKG = CreateDatabaseWizard.class; // for i18n purposes, needed by Translator2!! private Label wlDSN; private Text wDSN; private FormData fdlDSN, fdDSN; private PropsUI props; private DatabaseMeta info; public CreateDatabaseWizardPageODBC( String arg, PropsUI props, DatabaseMeta info ) { super( arg ); this.props = props; this.info = info; setTitle( BaseMessages.getString( PKG, "CreateDatabaseWizardPageODBC.DialogTitle" ) ); setDescription( BaseMessages.getString( PKG, "CreateDatabaseWizardPageODBC.DialogMessage" ) ); setPageComplete( false ); } public void createControl( Composite parent ) { int margin = Const.MARGIN; int middle = props.getMiddlePct(); // create the composite to hold the widgets Composite composite = new Composite( parent, SWT.NONE ); props.setLook( composite ); FormLayout compLayout = new FormLayout(); compLayout.marginHeight = Const.FORM_MARGIN; compLayout.marginWidth = Const.FORM_MARGIN; composite.setLayout( compLayout ); wlDSN = new Label( composite, SWT.RIGHT ); wlDSN.setText( BaseMessages.getString( PKG, "CreateDatabaseWizardPageODBC.DSN.Label" ) ); props.setLook( wlDSN ); fdlDSN = new FormData(); fdlDSN.left = new FormAttachment( 0, 0 ); fdlDSN.right = new FormAttachment( middle, 0 ); wlDSN.setLayoutData( fdlDSN ); wDSN = new Text( composite, SWT.SINGLE | SWT.BORDER ); props.setLook( wDSN ); fdDSN = new FormData(); fdDSN.left = new FormAttachment( middle, margin ); fdDSN.right = new FormAttachment( 100, 0 ); wDSN.setLayoutData( fdDSN ); wDSN.addModifyListener( new ModifyListener() { public void modifyText( ModifyEvent arg0 ) { setPageComplete( false ); } } ); // set the composite as the control for this page setControl( composite ); } public boolean canFlipToNextPage() { String name = wDSN.getText() != null ? wDSN.getText().length() > 0 ? wDSN.getText() : null : null; if ( name == null ) { setErrorMessage( BaseMessages.getString( PKG, "CreateDatabaseWizardPageODBC.ErrorMessage.DSNRequired" ) ); return false; } else { getDatabaseInfo(); setErrorMessage( null ); setMessage( BaseMessages.getString( PKG, "CreateDatabaseWizardPageODBC.Message.Finish" ) ); return true; } } public DatabaseMeta getDatabaseInfo() { if ( wDSN.getText() != null && wDSN.getText().length() > 0 ) { info.setDBName( wDSN.getText() ); } info.setDBPort( "" ); info.setServername( null ); return info; } /* * (non-Javadoc) * * @see org.eclipse.jface.wizard.WizardPage#getNextPage() */ public IWizardPage getNextPage() { IWizard wiz = getWizard(); return wiz.getPage( "2" ); } }