use of org.pentaho.di.ui.core.widget.ColumnInfo in project pentaho-kettle by pentaho.
the class DeleteDialog method open.
public String open() {
Shell parent = getParent();
Display display = parent.getDisplay();
shell = new Shell(parent, SWT.DIALOG_TRIM | SWT.RESIZE | SWT.MAX | SWT.MIN);
props.setLook(shell);
setShellImage(shell, input);
ModifyListener lsMod = new ModifyListener() {
public void modifyText(ModifyEvent e) {
input.setChanged();
}
};
ModifyListener lsTableMod = new ModifyListener() {
public void modifyText(ModifyEvent arg0) {
input.setChanged();
setTableFieldCombo();
}
};
SelectionListener lsSelection = new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
input.setChanged();
setTableFieldCombo();
}
};
changed = input.hasChanged();
FormLayout formLayout = new FormLayout();
formLayout.marginWidth = Const.FORM_MARGIN;
formLayout.marginHeight = Const.FORM_MARGIN;
shell.setLayout(formLayout);
shell.setText(BaseMessages.getString(PKG, "DeleteDialog.Shell.Title"));
int middle = props.getMiddlePct();
int margin = Const.MARGIN;
// Stepname line
wlStepname = new Label(shell, SWT.RIGHT);
wlStepname.setText(BaseMessages.getString(PKG, "DeleteDialog.Stepname.Label"));
props.setLook(wlStepname);
fdlStepname = new FormData();
fdlStepname.left = new FormAttachment(0, 0);
fdlStepname.right = new FormAttachment(middle, -margin);
fdlStepname.top = new FormAttachment(0, margin);
wlStepname.setLayoutData(fdlStepname);
wStepname = new Text(shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
wStepname.setText(stepname);
props.setLook(wStepname);
wStepname.addModifyListener(lsMod);
fdStepname = new FormData();
fdStepname.left = new FormAttachment(middle, 0);
fdStepname.top = new FormAttachment(0, margin);
fdStepname.right = new FormAttachment(100, 0);
wStepname.setLayoutData(fdStepname);
// Connection line
wConnection = addConnectionLine(shell, wStepname, middle, margin);
if (input.getDatabaseMeta() == null && transMeta.nrDatabases() == 1) {
wConnection.select(0);
}
wConnection.addModifyListener(lsMod);
wConnection.addSelectionListener(lsSelection);
// Schema line...
wlSchema = new Label(shell, SWT.RIGHT);
wlSchema.setText(BaseMessages.getString(PKG, "DeleteDialog.TargetSchema.Label"));
props.setLook(wlSchema);
fdlSchema = new FormData();
fdlSchema.left = new FormAttachment(0, 0);
fdlSchema.right = new FormAttachment(middle, -margin);
fdlSchema.top = new FormAttachment(wConnection, margin * 2);
wlSchema.setLayoutData(fdlSchema);
wbSchema = new Button(shell, SWT.PUSH | SWT.CENTER);
props.setLook(wbSchema);
wbSchema.setText(BaseMessages.getString(PKG, "System.Button.Browse"));
fdbSchema = new FormData();
fdbSchema.top = new FormAttachment(wConnection, 2 * margin);
fdbSchema.right = new FormAttachment(100, 0);
wbSchema.setLayoutData(fdbSchema);
wSchema = new TextVar(transMeta, shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wSchema);
wSchema.addModifyListener(lsTableMod);
fdSchema = new FormData();
fdSchema.left = new FormAttachment(middle, 0);
fdSchema.top = new FormAttachment(wConnection, margin * 2);
fdSchema.right = new FormAttachment(wbSchema, -margin);
wSchema.setLayoutData(fdSchema);
// Table line...
wlTable = new Label(shell, SWT.RIGHT);
wlTable.setText(BaseMessages.getString(PKG, "DeleteDialog.TargetTable.Label"));
props.setLook(wlTable);
fdlTable = new FormData();
fdlTable.left = new FormAttachment(0, 0);
fdlTable.right = new FormAttachment(middle, -margin);
fdlTable.top = new FormAttachment(wbSchema, margin);
wlTable.setLayoutData(fdlTable);
wbTable = new Button(shell, SWT.PUSH | SWT.CENTER);
props.setLook(wbTable);
wbTable.setText(BaseMessages.getString(PKG, "DeleteDialog.Browse.Button"));
fdbTable = new FormData();
fdbTable.right = new FormAttachment(100, 0);
fdbTable.top = new FormAttachment(wbSchema, margin);
wbTable.setLayoutData(fdbTable);
wTable = new TextVar(transMeta, shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wTable);
wTable.addModifyListener(lsTableMod);
fdTable = new FormData();
fdTable.left = new FormAttachment(middle, 0);
fdTable.top = new FormAttachment(wbSchema, margin);
fdTable.right = new FormAttachment(wbTable, -margin);
wTable.setLayoutData(fdTable);
// Commit line
wlCommit = new Label(shell, SWT.RIGHT);
wlCommit.setText(BaseMessages.getString(PKG, "DeleteDialog.Commit.Label"));
props.setLook(wlCommit);
fdlCommit = new FormData();
fdlCommit.left = new FormAttachment(0, 0);
fdlCommit.top = new FormAttachment(wTable, margin);
fdlCommit.right = new FormAttachment(middle, -margin);
wlCommit.setLayoutData(fdlCommit);
wCommit = new TextVar(transMeta, shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wCommit);
wCommit.addModifyListener(lsMod);
fdCommit = new FormData();
fdCommit.left = new FormAttachment(middle, 0);
fdCommit.top = new FormAttachment(wTable, margin);
fdCommit.right = new FormAttachment(100, 0);
wCommit.setLayoutData(fdCommit);
wlKey = new Label(shell, SWT.NONE);
wlKey.setText(BaseMessages.getString(PKG, "DeleteDialog.Key.Label"));
props.setLook(wlKey);
fdlKey = new FormData();
fdlKey.left = new FormAttachment(0, 0);
fdlKey.top = new FormAttachment(wCommit, margin);
wlKey.setLayoutData(fdlKey);
int nrKeyCols = 4;
int nrKeyRows = (input.getKeyStream() != null ? input.getKeyStream().length : 1);
ciKey = new ColumnInfo[nrKeyCols];
ciKey[0] = new ColumnInfo(BaseMessages.getString(PKG, "DeleteDialog.ColumnInfo.TableField"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
ciKey[1] = new ColumnInfo(BaseMessages.getString(PKG, "DeleteDialog.ColumnInfo.Comparator"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "=", "<>", "<", "<=", ">", ">=", "LIKE", "BETWEEN", "IS NULL", "IS NOT NULL" });
ciKey[2] = new ColumnInfo(BaseMessages.getString(PKG, "DeleteDialog.ColumnInfo.StreamField1"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
ciKey[3] = new ColumnInfo(BaseMessages.getString(PKG, "DeleteDialog.ColumnInfo.StreamField2"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
tableFieldColumns.add(ciKey[0]);
wKey = new TableView(transMeta, shell, SWT.BORDER | SWT.FULL_SELECTION | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL, ciKey, nrKeyRows, lsMod, props);
wGet = new Button(shell, SWT.PUSH);
wGet.setText(BaseMessages.getString(PKG, "DeleteDialog.GetFields.Button"));
fdGet = new FormData();
fdGet.right = new FormAttachment(100, 0);
fdGet.top = new FormAttachment(wlKey, margin);
wGet.setLayoutData(fdGet);
fdKey = new FormData();
fdKey.left = new FormAttachment(0, 0);
fdKey.top = new FormAttachment(wlKey, margin);
fdKey.right = new FormAttachment(wGet, -margin);
fdKey.bottom = new FormAttachment(100, -30);
wKey.setLayoutData(fdKey);
//
// Search the fields in the background
//
final Runnable runnable = new Runnable() {
public void run() {
StepMeta stepMeta = transMeta.findStep(stepname);
if (stepMeta != null) {
try {
RowMetaInterface row = transMeta.getPrevStepFields(stepMeta);
// Remember these fields...
for (int i = 0; i < row.size(); i++) {
inputFields.put(row.getValueMeta(i).getName(), i);
}
setComboBoxes();
} catch (KettleException e) {
logError(BaseMessages.getString(PKG, "System.Dialog.GetFieldsFailed.Message"));
}
}
}
};
new Thread(runnable).start();
// THE BUTTONS
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"));
setButtonPositions(new Button[] { wOK, wCancel }, margin, null);
// Add listeners
lsOK = new Listener() {
public void handleEvent(Event e) {
ok();
}
};
lsGet = new Listener() {
public void handleEvent(Event e) {
get();
}
};
lsCancel = new Listener() {
public void handleEvent(Event e) {
cancel();
}
};
wOK.addListener(SWT.Selection, lsOK);
wGet.addListener(SWT.Selection, lsGet);
wCancel.addListener(SWT.Selection, lsCancel);
lsDef = new SelectionAdapter() {
public void widgetDefaultSelected(SelectionEvent e) {
ok();
}
};
wStepname.addSelectionListener(lsDef);
wSchema.addSelectionListener(lsDef);
wTable.addSelectionListener(lsDef);
// Detect X or ALT-F4 or something that kills this window...
shell.addShellListener(new ShellAdapter() {
public void shellClosed(ShellEvent e) {
cancel();
}
});
wbSchema.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
getSchemaNames();
}
});
wbTable.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
getTableName();
}
});
// Set the shell size, based upon previous time...
setSize();
getData();
setTableFieldCombo();
input.setChanged(changed);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
return stepname;
}
use of org.pentaho.di.ui.core.widget.ColumnInfo in project pentaho-kettle by pentaho.
the class DeleteDialog method setTableFieldCombo.
private void setTableFieldCombo() {
Runnable fieldLoader = new Runnable() {
public void run() {
if (!wTable.isDisposed() && !wConnection.isDisposed() && !wSchema.isDisposed()) {
final String tableName = wTable.getText(), connectionName = wConnection.getText(), schemaName = wSchema.getText();
// clear
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(new String[] {});
}
if (!Utils.isEmpty(tableName)) {
DatabaseMeta ci = transMeta.findDatabase(connectionName);
if (ci != null) {
Database db = new Database(loggingObject, ci);
try {
db.connect();
String schemaTable = ci.getQuotedSchemaTableCombination(transMeta.environmentSubstitute(schemaName), transMeta.environmentSubstitute(tableName));
RowMetaInterface r = db.getTableFields(schemaTable);
if (null != r) {
String[] fieldNames = r.getFieldNames();
if (null != fieldNames) {
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(fieldNames);
}
}
}
} catch (Exception e) {
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(new String[] {});
}
// ignore any errors here. drop downs will not be
// filled, but no problem for the user
} finally {
try {
if (db != null) {
db.disconnect();
}
} catch (Exception ignored) {
// ignore any errors here.
db = null;
}
}
}
}
}
}
};
shell.getDisplay().asyncExec(fieldLoader);
}
use of org.pentaho.di.ui.core.widget.ColumnInfo in project pentaho-kettle by pentaho.
the class DimensionLookupDialog method open.
public String open() {
Shell parent = getParent();
Display display = parent.getDisplay();
shell = new Shell(parent, SWT.DIALOG_TRIM | SWT.RESIZE | SWT.MAX | SWT.MIN);
props.setLook(shell);
ModifyListener lsMod = new ModifyListener() {
public void modifyText(ModifyEvent e) {
input.setChanged();
}
};
FocusListener lsConnectionFocus = new FocusAdapter() {
public void focusLost(FocusEvent event) {
input.setChanged();
setTableFieldCombo();
}
};
ModifyListener lsTableMod = new ModifyListener() {
public void modifyText(ModifyEvent arg0) {
input.setChanged();
setTableFieldCombo();
}
};
backupChanged = input.hasChanged();
backupUpdate = input.isUpdate();
backupAutoInc = input.isAutoIncrement();
ci = input.getDatabaseMeta();
GridLayout shellLayout = new GridLayout();
shellLayout.numColumns = 1;
shell.setLayout(shellLayout);
shell.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Shell.Title"));
int middle = props.getMiddlePct();
int margin = Const.MARGIN;
Composite sCompParent = new Composite(shell, SWT.NONE);
sCompParent.setLayout(new FillLayout(SWT.VERTICAL));
GridData sCompGridData = new GridData(GridData.FILL_BOTH);
sCompGridData.grabExcessHorizontalSpace = true;
sCompGridData.grabExcessVerticalSpace = true;
sCompParent.setLayoutData(sCompGridData);
sComp = new ScrolledComposite(sCompParent, SWT.V_SCROLL | SWT.H_SCROLL);
sComp.setLayout(new FormLayout());
sComp.setExpandHorizontal(true);
sComp.setExpandVertical(true);
helpComp = new Composite(shell, SWT.NONE);
helpComp.setLayout(new FormLayout());
GridData helpCompData = new GridData();
helpCompData.grabExcessHorizontalSpace = true;
helpCompData.grabExcessVerticalSpace = false;
helpComp.setLayoutData(helpCompData);
setShellImage(shell, input);
comp = new Composite(sComp, SWT.NONE);
props.setLook(comp);
FormLayout fileLayout = new FormLayout();
fileLayout.marginWidth = 3;
fileLayout.marginHeight = 3;
comp.setLayout(fileLayout);
// Stepname line
wlStepname = new Label(comp, SWT.RIGHT);
wlStepname.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Stepname.Label"));
props.setLook(wlStepname);
fdlStepname = new FormData();
fdlStepname.left = new FormAttachment(0, 0);
fdlStepname.right = new FormAttachment(middle, -margin);
fdlStepname.top = new FormAttachment(0, margin);
wlStepname.setLayoutData(fdlStepname);
wStepname = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
wStepname.setText(stepname);
props.setLook(wStepname);
wStepname.addModifyListener(lsMod);
fdStepname = new FormData();
fdStepname.left = new FormAttachment(middle, 0);
fdStepname.top = new FormAttachment(0, margin);
fdStepname.right = new FormAttachment(100, 0);
wStepname.setLayoutData(fdStepname);
// Update the dimension?
wlUpdate = new Label(comp, SWT.RIGHT);
wlUpdate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Update.Label"));
props.setLook(wlUpdate);
FormData fdlUpdate = new FormData();
fdlUpdate.left = new FormAttachment(0, 0);
fdlUpdate.right = new FormAttachment(middle, -margin);
fdlUpdate.top = new FormAttachment(wStepname, margin);
wlUpdate.setLayoutData(fdlUpdate);
wUpdate = new Button(comp, SWT.CHECK);
props.setLook(wUpdate);
FormData fdUpdate = new FormData();
fdUpdate.left = new FormAttachment(middle, 0);
fdUpdate.top = new FormAttachment(wStepname, margin);
fdUpdate.right = new FormAttachment(100, 0);
wUpdate.setLayoutData(fdUpdate);
// Clicking on update changes the options in the update combo boxes!
wUpdate.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
input.setUpdate(!input.isUpdate());
input.setChanged();
setFlags();
}
});
// Connection line
wConnection = addConnectionLine(comp, wUpdate, middle, margin);
if (input.getDatabaseMeta() == null && transMeta.nrDatabases() == 1) {
wConnection.select(0);
}
// wConnection.addModifyListener(lsConnectionMod);
// wConnection.addSelectionListener(lsSelection);
wConnection.addFocusListener(lsConnectionFocus);
wConnection.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
// We have new content: change ci connection:
ci = transMeta.findDatabase(wConnection.getText());
setFlags();
}
});
// Schema line...
wlSchema = new Label(comp, SWT.RIGHT);
wlSchema.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.TargetSchema.Label"));
props.setLook(wlSchema);
FormData fdlSchema = new FormData();
fdlSchema.left = new FormAttachment(0, 0);
fdlSchema.right = new FormAttachment(middle, -margin);
fdlSchema.top = new FormAttachment(wConnection, margin);
wlSchema.setLayoutData(fdlSchema);
wbSchema = new Button(comp, SWT.PUSH | SWT.CENTER);
props.setLook(wbSchema);
wbSchema.setText(BaseMessages.getString(PKG, "System.Button.Browse"));
fdbSchema = new FormData();
fdbSchema.top = new FormAttachment(wConnection, margin);
fdbSchema.right = new FormAttachment(100, 0);
wbSchema.setLayoutData(fdbSchema);
wSchema = new TextVar(transMeta, comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wSchema);
wSchema.addModifyListener(lsTableMod);
FormData fdSchema = new FormData();
fdSchema.left = new FormAttachment(middle, 0);
fdSchema.top = new FormAttachment(wConnection, margin);
fdSchema.right = new FormAttachment(wbSchema, -margin);
wSchema.setLayoutData(fdSchema);
// Table line...
wlTable = new Label(comp, SWT.RIGHT);
wlTable.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.TargeTable.Label"));
props.setLook(wlTable);
FormData fdlTable = new FormData();
fdlTable.left = new FormAttachment(0, 0);
fdlTable.right = new FormAttachment(middle, -margin);
fdlTable.top = new FormAttachment(wbSchema, margin);
wlTable.setLayoutData(fdlTable);
wbTable = new Button(comp, SWT.PUSH | SWT.CENTER);
props.setLook(wbTable);
wbTable.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Browse.Button"));
FormData fdbTable = new FormData();
fdbTable.right = new FormAttachment(100, 0);
fdbTable.top = new FormAttachment(wbSchema, margin);
wbTable.setLayoutData(fdbTable);
wTable = new TextVar(transMeta, comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wTable);
wTable.addModifyListener(lsTableMod);
FormData fdTable = new FormData();
fdTable.left = new FormAttachment(middle, 0);
fdTable.top = new FormAttachment(wbSchema, margin);
fdTable.right = new FormAttachment(wbTable, 0);
wTable.setLayoutData(fdTable);
// Commit size ...
wlCommit = new Label(comp, SWT.RIGHT);
wlCommit.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Commit.Label"));
props.setLook(wlCommit);
FormData fdlCommit = new FormData();
fdlCommit.left = new FormAttachment(0, 0);
fdlCommit.right = new FormAttachment(middle, -margin);
fdlCommit.top = new FormAttachment(wTable, margin);
wlCommit.setLayoutData(fdlCommit);
wCommit = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wCommit);
wCommit.addModifyListener(lsMod);
FormData fdCommit = new FormData();
fdCommit.left = new FormAttachment(middle, 0);
fdCommit.top = new FormAttachment(wTable, margin);
fdCommit.right = new FormAttachment(100, 0);
wCommit.setLayoutData(fdCommit);
// Use Cache?
wlUseCache = new Label(comp, SWT.RIGHT);
wlUseCache.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.UseCache.Label"));
props.setLook(wlUseCache);
FormData fdlUseCache = new FormData();
fdlUseCache.left = new FormAttachment(0, 0);
fdlUseCache.right = new FormAttachment(middle, -margin);
fdlUseCache.top = new FormAttachment(wCommit, margin);
wlUseCache.setLayoutData(fdlUseCache);
wUseCache = new Button(comp, SWT.CHECK);
props.setLook(wUseCache);
wUseCache.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent arg0) {
setFlags();
input.setChanged();
}
});
FormData fdUseCache = new FormData();
fdUseCache.left = new FormAttachment(middle, 0);
fdUseCache.top = new FormAttachment(wCommit, margin);
fdUseCache.right = new FormAttachment(100, 0);
wUseCache.setLayoutData(fdUseCache);
// Preload cache?
wlPreloadCache = new Label(comp, SWT.RIGHT);
wlPreloadCache.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.PreloadCache.Label"));
props.setLook(wlPreloadCache);
FormData fdlPreloadCache = new FormData();
fdlPreloadCache.left = new FormAttachment(0, 0);
fdlPreloadCache.right = new FormAttachment(middle, -margin);
fdlPreloadCache.top = new FormAttachment(wUseCache, margin);
wlPreloadCache.setLayoutData(fdlPreloadCache);
wPreloadCache = new Button(comp, SWT.CHECK);
props.setLook(wPreloadCache);
wPreloadCache.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent arg0) {
setFlags();
input.setChanged();
}
});
FormData fdPreloadCache = new FormData();
fdPreloadCache.left = new FormAttachment(middle, 0);
fdPreloadCache.top = new FormAttachment(wUseCache, margin);
fdPreloadCache.right = new FormAttachment(100, 0);
wPreloadCache.setLayoutData(fdPreloadCache);
// Cache size ...
wlCacheSize = new Label(comp, SWT.RIGHT);
wlCacheSize.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.CacheSize.Label"));
props.setLook(wlCacheSize);
FormData fdlCacheSize = new FormData();
fdlCacheSize.left = new FormAttachment(0, 0);
fdlCacheSize.right = new FormAttachment(middle, -margin);
fdlCacheSize.top = new FormAttachment(wPreloadCache, margin);
wlCacheSize.setLayoutData(fdlCacheSize);
wCacheSize = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wCacheSize);
wCacheSize.addModifyListener(lsMod);
FormData fdCacheSize = new FormData();
fdCacheSize.left = new FormAttachment(middle, 0);
fdCacheSize.top = new FormAttachment(wPreloadCache, margin);
fdCacheSize.right = new FormAttachment(100, 0);
wCacheSize.setLayoutData(fdCacheSize);
wlTkRename = new Label(comp, SWT.RIGHT);
wTabFolder = new CTabFolder(comp, SWT.BORDER);
props.setLook(wTabFolder, Props.WIDGET_STYLE_TAB);
// ////////////////////////
// START OF KEY TAB ///
// /
wKeyTab = new CTabItem(wTabFolder, SWT.NONE);
wKeyTab.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.KeyTab.CTabItem"));
FormLayout keyLayout = new FormLayout();
keyLayout.marginWidth = 3;
keyLayout.marginHeight = 3;
Composite wKeyComp = new Composite(wTabFolder, SWT.NONE);
props.setLook(wKeyComp);
wKeyComp.setLayout(keyLayout);
//
// The Lookup fields: usually the key
//
wlKey = new Label(wKeyComp, SWT.NONE);
wlKey.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.KeyFields.Label"));
props.setLook(wlKey);
FormData fdlKey = new FormData();
fdlKey.left = new FormAttachment(0, 0);
fdlKey.top = new FormAttachment(0, margin);
fdlKey.right = new FormAttachment(100, 0);
wlKey.setLayoutData(fdlKey);
int nrKeyCols = 2;
int nrKeyRows = (input.getKeyStream() != null ? input.getKeyStream().length : 1);
ciKey = new ColumnInfo[nrKeyCols];
ciKey[0] = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.DimensionField"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
ciKey[1] = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.FieldInStream"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
tableFieldColumns.add(ciKey[0]);
wKey = new TableView(transMeta, wKeyComp, SWT.BORDER | SWT.FULL_SELECTION | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL, ciKey, nrKeyRows, lsMod, props);
FormData fdKey = new FormData();
fdKey.left = new FormAttachment(0, 0);
fdKey.top = new FormAttachment(wlKey, margin);
fdKey.right = new FormAttachment(100, 0);
fdKey.bottom = new FormAttachment(100, 0);
wKey.setLayoutData(fdKey);
fdKeyComp = new FormData();
fdKeyComp.left = new FormAttachment(0, 0);
fdKeyComp.top = new FormAttachment(0, 0);
fdKeyComp.right = new FormAttachment(100, 0);
fdKeyComp.bottom = new FormAttachment(100, 0);
wKeyComp.setLayoutData(fdKeyComp);
wKeyComp.layout();
wKeyTab.setControl(wKeyComp);
// ///////////////////////////////////////////////////////////
// / END OF KEY TAB
// ///////////////////////////////////////////////////////////
// Fields tab...
//
wFieldsTab = new CTabItem(wTabFolder, SWT.NONE);
wFieldsTab.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.FieldsTab.CTabItem.Title"));
Composite wFieldsComp = new Composite(wTabFolder, SWT.NONE);
props.setLook(wFieldsComp);
FormLayout fieldsCompLayout = new FormLayout();
fieldsCompLayout.marginWidth = Const.FORM_MARGIN;
fieldsCompLayout.marginHeight = Const.FORM_MARGIN;
wFieldsComp.setLayout(fieldsCompLayout);
// THE UPDATE/INSERT TABLE
wlUpIns = new Label(wFieldsComp, SWT.NONE);
wlUpIns.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.Label"));
props.setLook(wlUpIns);
FormData fdlUpIns = new FormData();
fdlUpIns.left = new FormAttachment(0, 0);
fdlUpIns.top = new FormAttachment(0, margin);
wlUpIns.setLayoutData(fdlUpIns);
int UpInsCols = 3;
int UpInsRows = (input.getFieldStream() != null ? input.getFieldStream().length : 1);
ciUpIns = new ColumnInfo[UpInsCols];
ciUpIns[0] = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.DimensionField"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
ciUpIns[1] = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.StreamField"), ColumnInfo.COLUMN_TYPE_CCOMBO, new String[] { "" }, false);
ciUpIns[2] = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.TypeOfDimensionUpdate"), ColumnInfo.COLUMN_TYPE_CCOMBO, input.isUpdate() ? DimensionLookupMeta.typeDesc : DimensionLookupMeta.typeDescLookup);
tableFieldColumns.add(ciUpIns[0]);
wUpIns = new TableView(transMeta, wFieldsComp, SWT.BORDER | SWT.FULL_SELECTION | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL, ciUpIns, UpInsRows, lsMod, props);
FormData fdUpIns = new FormData();
fdUpIns.left = new FormAttachment(0, 0);
fdUpIns.top = new FormAttachment(wlUpIns, margin);
fdUpIns.right = new FormAttachment(100, 0);
fdUpIns.bottom = new FormAttachment(100, 0);
wUpIns.setLayoutData(fdUpIns);
//
// Search the fields in the background
//
final Runnable runnable = new Runnable() {
public void run() {
StepMeta stepMeta = transMeta.findStep(stepname);
if (stepMeta != null) {
try {
RowMetaInterface row = transMeta.getPrevStepFields(stepMeta);
// Remember these fields...
for (int i = 0; i < row.size(); i++) {
inputFields.put(row.getValueMeta(i).getName(), i);
}
setComboBoxes();
} catch (KettleException e) {
logError(BaseMessages.getString(PKG, "System.Dialog.GetFieldsFailed.Message"));
}
}
}
};
new Thread(runnable).start();
fdFieldsComp = new FormData();
fdFieldsComp.left = new FormAttachment(0, 0);
fdFieldsComp.top = new FormAttachment(0, 0);
fdFieldsComp.right = new FormAttachment(100, 0);
fdFieldsComp.bottom = new FormAttachment(100, 0);
wFieldsComp.setLayoutData(fdFieldsComp);
wFieldsComp.layout();
wFieldsTab.setControl(wFieldsComp);
fdTabFolder = new FormData();
fdTabFolder.left = new FormAttachment(0, 0);
fdTabFolder.top = new FormAttachment(wCacheSize, margin);
fdTabFolder.right = new FormAttachment(100, 0);
fdTabFolder.height = 200;
wTabFolder.setLayoutData(fdTabFolder);
// Technical key field:
wlTk = new Label(comp, SWT.RIGHT);
wlTk.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.TechnicalKeyField.Label"));
props.setLook(wlTk);
FormData fdlTk = new FormData();
fdlTk.left = new FormAttachment(0, 0);
fdlTk.right = new FormAttachment(middle, -margin);
fdlTk.top = new FormAttachment(wTabFolder, 2 * margin);
wlTk.setLayoutData(fdlTk);
wTk = new CCombo(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wTk);
wTk.addModifyListener(lsMod);
FormData fdTk = new FormData();
fdTk.left = new FormAttachment(middle, 0);
fdTk.top = new FormAttachment(wTabFolder, 2 * margin);
fdTk.right = new FormAttachment(50 + middle / 2, 0);
wTk.setLayoutData(fdTk);
wTk.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFieldsFromTable();
shell.setCursor(null);
busy.dispose();
}
});
wlTkRename.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.NewName.Label"));
props.setLook(wlTkRename);
FormData fdlTkRename = new FormData();
fdlTkRename.left = new FormAttachment(50 + middle / 2, margin);
fdlTkRename.top = new FormAttachment(wTabFolder, 2 * margin);
wlTkRename.setLayoutData(fdlTkRename);
wTkRename = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wTkRename);
wTkRename.addModifyListener(lsMod);
FormData fdTkRename = new FormData();
fdTkRename.left = new FormAttachment(wlTkRename, margin);
fdTkRename.top = new FormAttachment(wTabFolder, 2 * margin);
fdTkRename.right = new FormAttachment(100, 0);
wTkRename.setLayoutData(fdTkRename);
// //////////////////////////////////////////////////
// The key creation box
// //////////////////////////////////////////////////
gTechGroup = new Group(comp, SWT.SHADOW_ETCHED_IN);
gTechGroup.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.TechGroup.Label"));
GridLayout gridLayout = new GridLayout(3, false);
gTechGroup.setLayout(gridLayout);
FormData fdTechGroup = new FormData();
fdTechGroup.left = new FormAttachment(middle, 0);
fdTechGroup.top = new FormAttachment(wTkRename, 2 * margin);
fdTechGroup.right = new FormAttachment(100, 0);
// the default looks ugly
gTechGroup.setBackground(shell.getBackground());
gTechGroup.setLayoutData(fdTechGroup);
// Use maximum of table + 1
wTableMax = new Button(gTechGroup, SWT.RADIO);
props.setLook(wTableMax);
wTableMax.setSelection(false);
GridData gdTableMax = new GridData();
wTableMax.setLayoutData(gdTableMax);
wTableMax.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.TableMaximum.Tooltip", Const.CR));
wlTableMax = new Label(gTechGroup, SWT.LEFT);
wlTableMax.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.TableMaximum.Label"));
props.setLook(wlTableMax);
GridData gdlTableMax = new GridData(GridData.FILL_BOTH);
gdlTableMax.horizontalSpan = 2;
gdlTableMax.verticalSpan = 1;
wlTableMax.setLayoutData(gdlTableMax);
// Sequence Check Button
wSeqButton = new Button(gTechGroup, SWT.RADIO);
props.setLook(wSeqButton);
wSeqButton.setSelection(false);
GridData gdSeqButton = new GridData();
wSeqButton.setLayoutData(gdSeqButton);
wSeqButton.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.Sequence.Tooltip", Const.CR));
wlSeqButton = new Label(gTechGroup, SWT.LEFT);
wlSeqButton.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Sequence.Label"));
props.setLook(wlSeqButton);
GridData gdlSeqButton = new GridData();
wlSeqButton.setLayoutData(gdlSeqButton);
wSeq = new Text(gTechGroup, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wSeq);
wSeq.addModifyListener(lsMod);
GridData gdSeq = new GridData(GridData.FILL_HORIZONTAL);
wSeq.setLayoutData(gdSeq);
wSeq.addFocusListener(new FocusListener() {
public void focusGained(FocusEvent arg0) {
input.setTechKeyCreation(DimensionLookupMeta.CREATION_METHOD_SEQUENCE);
wSeqButton.setSelection(true);
wAutoinc.setSelection(false);
wTableMax.setSelection(false);
}
public void focusLost(FocusEvent arg0) {
}
});
// Use an autoincrement field?
wAutoinc = new Button(gTechGroup, SWT.RADIO);
props.setLook(wAutoinc);
wAutoinc.setSelection(false);
GridData gdAutoinc = new GridData();
wAutoinc.setLayoutData(gdAutoinc);
wAutoinc.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.AutoincButton.Tooltip", Const.CR));
wlAutoinc = new Label(gTechGroup, SWT.LEFT);
wlAutoinc.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Autoincrement.Label"));
props.setLook(wlAutoinc);
GridData gdlAutoinc = new GridData();
wlAutoinc.setLayoutData(gdlAutoinc);
// //////////////////////////////////////////////////
// The key creation box END
// //////////////////////////////////////////////////
// Version key field:
wlVersion = new Label(comp, SWT.RIGHT);
wlVersion.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Version.Label"));
props.setLook(wlVersion);
FormData fdlVersion = new FormData();
fdlVersion.left = new FormAttachment(0, 0);
fdlVersion.right = new FormAttachment(middle, -margin);
fdlVersion.top = new FormAttachment(gTechGroup, 2 * margin);
wlVersion.setLayoutData(fdlVersion);
wVersion = new CCombo(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wVersion);
wVersion.addModifyListener(lsMod);
FormData fdVersion = new FormData();
fdVersion.left = new FormAttachment(middle, 0);
fdVersion.top = new FormAttachment(gTechGroup, 2 * margin);
fdVersion.right = new FormAttachment(100, 0);
wVersion.setLayoutData(fdVersion);
wVersion.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFieldsFromTable();
shell.setCursor(null);
busy.dispose();
}
});
// Datefield line
wlDatefield = new Label(comp, SWT.RIGHT);
wlDatefield.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Datefield.Label"));
props.setLook(wlDatefield);
FormData fdlDatefield = new FormData();
fdlDatefield.left = new FormAttachment(0, 0);
fdlDatefield.right = new FormAttachment(middle, -margin);
fdlDatefield.top = new FormAttachment(wVersion, 2 * margin);
wlDatefield.setLayoutData(fdlDatefield);
wDatefield = new CCombo(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wDatefield);
wDatefield.addModifyListener(lsMod);
FormData fdDatefield = new FormData();
fdDatefield.left = new FormAttachment(middle, 0);
fdDatefield.top = new FormAttachment(wVersion, 2 * margin);
fdDatefield.right = new FormAttachment(100, 0);
wDatefield.setLayoutData(fdDatefield);
wDatefield.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFields();
shell.setCursor(null);
busy.dispose();
}
});
// Fromdate line
//
// 0 [wlFromdate] middle [wFromdate] (100-middle)/3 [wlMinyear]
// 2*(100-middle)/3 [wMinyear] 100%
//
wlFromdate = new Label(comp, SWT.RIGHT);
wlFromdate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Fromdate.Label"));
props.setLook(wlFromdate);
FormData fdlFromdate = new FormData();
fdlFromdate.left = new FormAttachment(0, 0);
fdlFromdate.right = new FormAttachment(middle, -margin);
fdlFromdate.top = new FormAttachment(wDatefield, 2 * margin);
wlFromdate.setLayoutData(fdlFromdate);
wFromdate = new CCombo(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wFromdate);
wFromdate.addModifyListener(lsMod);
FormData fdFromdate = new FormData();
fdFromdate.left = new FormAttachment(middle, 0);
fdFromdate.right = new FormAttachment(middle + (100 - middle) / 3, -margin);
fdFromdate.top = new FormAttachment(wDatefield, 2 * margin);
wFromdate.setLayoutData(fdFromdate);
wFromdate.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFieldsFromTable();
shell.setCursor(null);
busy.dispose();
}
});
// Minyear line
wlMinyear = new Label(comp, SWT.RIGHT);
wlMinyear.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Minyear.Label"));
props.setLook(wlMinyear);
FormData fdlMinyear = new FormData();
fdlMinyear.left = new FormAttachment(wFromdate, margin);
fdlMinyear.right = new FormAttachment(middle + 2 * (100 - middle) / 3, -margin);
fdlMinyear.top = new FormAttachment(wDatefield, 2 * margin);
wlMinyear.setLayoutData(fdlMinyear);
wMinyear = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wMinyear);
wMinyear.addModifyListener(lsMod);
FormData fdMinyear = new FormData();
fdMinyear.left = new FormAttachment(wlMinyear, margin);
fdMinyear.right = new FormAttachment(100, 0);
fdMinyear.top = new FormAttachment(wDatefield, 2 * margin);
wMinyear.setLayoutData(fdMinyear);
wMinyear.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.Minyear.ToolTip"));
// Add a line with an option to specify an alternative start date...
//
wlUseAltStartDate = new Label(comp, SWT.RIGHT);
wlUseAltStartDate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.UseAlternativeStartDate.Label"));
props.setLook(wlUseAltStartDate);
FormData fdlUseAltStartDate = new FormData();
fdlUseAltStartDate.left = new FormAttachment(0, 0);
fdlUseAltStartDate.right = new FormAttachment(middle, -margin);
fdlUseAltStartDate.top = new FormAttachment(wFromdate, margin);
wlUseAltStartDate.setLayoutData(fdlUseAltStartDate);
wUseAltStartDate = new Button(comp, SWT.CHECK);
props.setLook(wUseAltStartDate);
wUseAltStartDate.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.UseAlternativeStartDate.Tooltip", Const.CR));
FormData fdUseAltStartDate = new FormData();
fdUseAltStartDate.left = new FormAttachment(middle, 0);
fdUseAltStartDate.top = new FormAttachment(wFromdate, margin);
wUseAltStartDate.setLayoutData(fdUseAltStartDate);
wUseAltStartDate.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
setFlags();
input.setChanged();
}
});
// The choice...
//
wAltStartDate = new CCombo(comp, SWT.BORDER);
props.setLook(wAltStartDate);
// All options except for "No alternative"...
wAltStartDate.removeAll();
for (int i = 1; i < DimensionLookupMeta.getStartDateAlternativeDescriptions().length; i++) {
wAltStartDate.add(DimensionLookupMeta.getStartDateAlternativeDescriptions()[i]);
}
wAltStartDate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.AlternativeStartDate.SelectItemDefault"));
wAltStartDate.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.AlternativeStartDate.Tooltip", Const.CR));
FormData fdAltStartDate = new FormData();
fdAltStartDate.left = new FormAttachment(wUseAltStartDate, 2 * margin);
fdAltStartDate.right = new FormAttachment(wUseAltStartDate, 200);
fdAltStartDate.top = new FormAttachment(wFromdate, margin);
wAltStartDate.setLayoutData(fdAltStartDate);
wAltStartDate.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent arg0) {
setFlags();
input.setChanged();
}
});
wAltStartDateField = new CCombo(comp, SWT.SINGLE | SWT.BORDER);
props.setLook(wAltStartDateField);
wAltStartDateField.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.AlternativeStartDateField.Tooltip", Const.CR));
FormData fdAltStartDateField = new FormData();
fdAltStartDateField.left = new FormAttachment(wAltStartDate, 2 * margin);
fdAltStartDateField.right = new FormAttachment(100, 0);
fdAltStartDateField.top = new FormAttachment(wFromdate, margin);
wAltStartDateField.setLayoutData(fdAltStartDateField);
wAltStartDateField.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFieldsFromTable();
shell.setCursor(null);
busy.dispose();
}
});
// Todate line
wlTodate = new Label(comp, SWT.RIGHT);
wlTodate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Todate.Label"));
props.setLook(wlTodate);
FormData fdlTodate = new FormData();
fdlTodate.left = new FormAttachment(0, 0);
fdlTodate.right = new FormAttachment(middle, -margin);
fdlTodate.top = new FormAttachment(wAltStartDate, margin);
wlTodate.setLayoutData(fdlTodate);
wTodate = new CCombo(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wTodate);
wTodate.addModifyListener(lsMod);
FormData fdTodate = new FormData();
fdTodate.left = new FormAttachment(middle, 0);
fdTodate.right = new FormAttachment(middle + (100 - middle) / 3, -margin);
fdTodate.top = new FormAttachment(wAltStartDate, margin);
wTodate.setLayoutData(fdTodate);
wTodate.addFocusListener(new FocusListener() {
public void focusLost(org.eclipse.swt.events.FocusEvent e) {
}
public void focusGained(org.eclipse.swt.events.FocusEvent e) {
Cursor busy = new Cursor(shell.getDisplay(), SWT.CURSOR_WAIT);
shell.setCursor(busy);
getFieldsFromTable();
shell.setCursor(null);
busy.dispose();
}
});
// Maxyear line
wlMaxyear = new Label(comp, SWT.RIGHT);
wlMaxyear.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.Maxyear.Label"));
props.setLook(wlMaxyear);
FormData fdlMaxyear = new FormData();
fdlMaxyear.left = new FormAttachment(wTodate, margin);
fdlMaxyear.right = new FormAttachment(middle + 2 * (100 - middle) / 3, -margin);
fdlMaxyear.top = new FormAttachment(wAltStartDate, margin);
wlMaxyear.setLayoutData(fdlMaxyear);
wMaxyear = new Text(comp, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
props.setLook(wMaxyear);
wMaxyear.addModifyListener(lsMod);
FormData fdMaxyear = new FormData();
fdMaxyear.left = new FormAttachment(wlMaxyear, margin);
fdMaxyear.right = new FormAttachment(100, 0);
fdMaxyear.top = new FormAttachment(wAltStartDate, margin);
wMaxyear.setLayoutData(fdMaxyear);
wMaxyear.setToolTipText(BaseMessages.getString(PKG, "DimensionLookupDialog.Maxyear.ToolTip"));
// THE BOTTOM BUTTONS
wOK = new Button(comp, SWT.PUSH);
wOK.setText(BaseMessages.getString(PKG, "System.Button.OK"));
wGet = new Button(comp, SWT.PUSH);
wGet.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.GetFields.Button"));
wCreate = new Button(comp, SWT.PUSH);
wCreate.setText(BaseMessages.getString(PKG, "DimensionLookupDialog.SQL.Button"));
wCancel = new Button(comp, SWT.PUSH);
wCancel.setText(BaseMessages.getString(PKG, "System.Button.Cancel"));
setButtonPositions(new Button[] { wOK, wCancel, wGet, wCreate }, margin, wMaxyear);
FormData fdComp = new FormData();
fdComp.left = new FormAttachment(0, 0);
fdComp.top = new FormAttachment(0, 0);
fdComp.right = new FormAttachment(100, 0);
fdComp.bottom = new FormAttachment(100, 0);
comp.setLayoutData(fdComp);
comp.pack();
Rectangle bounds = comp.getBounds();
sComp.setContent(comp);
sComp.setExpandHorizontal(true);
sComp.setExpandVertical(true);
sComp.setMinWidth(bounds.width);
sComp.setMinHeight(bounds.height);
// Add listeners
lsOK = new Listener() {
public void handleEvent(Event e) {
ok();
}
};
lsGet = new Listener() {
public void handleEvent(Event e) {
get();
}
};
lsCreate = new Listener() {
public void handleEvent(Event e) {
create();
}
};
lsCancel = new Listener() {
public void handleEvent(Event e) {
cancel();
}
};
wOK.addListener(SWT.Selection, lsOK);
wGet.addListener(SWT.Selection, lsGet);
wCreate.addListener(SWT.Selection, lsCreate);
wCancel.addListener(SWT.Selection, lsCancel);
setTableMax();
setSequence();
setAutoincUse();
lsDef = new SelectionAdapter() {
public void widgetDefaultSelected(SelectionEvent e) {
ok();
}
};
wStepname.addSelectionListener(lsDef);
wSchema.addSelectionListener(lsDef);
wTable.addSelectionListener(lsDef);
wCommit.addSelectionListener(lsDef);
wCacheSize.addSelectionListener(lsDef);
wTk.addSelectionListener(lsDef);
wTkRename.addSelectionListener(lsDef);
wSeq.addSelectionListener(lsDef);
wVersion.addSelectionListener(lsDef);
wDatefield.addSelectionListener(lsDef);
wFromdate.addSelectionListener(lsDef);
wMinyear.addSelectionListener(lsDef);
wTodate.addSelectionListener(lsDef);
wMaxyear.addSelectionListener(lsDef);
// Detect X or ALT-F4 or something that kills this window...
shell.addShellListener(new ShellAdapter() {
public void shellClosed(ShellEvent e) {
cancel();
}
});
wbSchema.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
getSchemaNames();
}
});
wbTable.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
getTableName();
}
});
wTabFolder.setSelection(0);
// Set the shell size, based upon previous time...
setSize();
getData();
setTableFieldCombo();
input.setChanged(backupChanged);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
return stepname;
}
use of org.pentaho.di.ui.core.widget.ColumnInfo in project pentaho-kettle by pentaho.
the class DimensionLookupDialog method setTableFieldCombo.
// Set table "dimension field" and "technical key" drop downs
private void setTableFieldCombo() {
Runnable fieldLoader = new Runnable() {
public void run() {
if (!wTable.isDisposed() && !wConnection.isDisposed() && !wSchema.isDisposed()) {
final String tableName = wTable.getText(), connectionName = wConnection.getText(), schemaName = wSchema.getText();
// clear
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(new String[] {});
}
// Ensure other table field dropdowns are refreshed fields when they
// next get focus
gotTableFields = false;
if (!Utils.isEmpty(tableName)) {
DatabaseMeta ci = transMeta.findDatabase(connectionName);
if (ci != null) {
Database db = new Database(loggingObject, ci);
try {
db.connect();
String schemaTable = ci.getQuotedSchemaTableCombination(transMeta.environmentSubstitute(schemaName), transMeta.environmentSubstitute(tableName));
RowMetaInterface r = db.getTableFields(schemaTable);
if (null != r) {
String[] fieldNames = r.getFieldNames();
if (null != fieldNames) {
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(fieldNames);
}
wTk.setItems(fieldNames);
}
}
} catch (Exception e) {
for (ColumnInfo colInfo : tableFieldColumns) {
colInfo.setComboValues(new String[] {});
}
// ignore any errors here. drop downs will not be
// filled, but no problem for the user
} finally {
try {
if (db != null) {
db.disconnect();
}
} catch (Exception ignored) {
// ignore any errors here.
db = null;
}
}
}
}
}
}
};
shell.getDisplay().asyncExec(fieldLoader);
}
use of org.pentaho.di.ui.core.widget.ColumnInfo in project pentaho-kettle by pentaho.
the class DimensionLookupDialog method setFlags.
public void setFlags() {
ColumnInfo colinf = new ColumnInfo(BaseMessages.getString(PKG, "DimensionLookupDialog.ColumnInfo.Type"), ColumnInfo.COLUMN_TYPE_CCOMBO, input.isUpdate() ? DimensionLookupMeta.typeDesc : DimensionLookupMeta.typeDescLookup);
wUpIns.setColumnInfo(2, colinf);
if (input.isUpdate()) {
wUpIns.setColumnText(2, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnText.SteamFieldToCompare"));
wUpIns.setColumnText(3, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnTextTypeOfDimensionUpdate"));
wUpIns.setColumnToolTip(2, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnToolTip") + Const.CR + "Punch Through: Kimball Type I" + Const.CR + "Update: Correct error in last version");
} else {
wUpIns.setColumnText(2, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnText.NewNameOfOutputField"));
wUpIns.setColumnText(3, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnText.TypeOfReturnField"));
wUpIns.setColumnToolTip(2, BaseMessages.getString(PKG, "DimensionLookupDialog.UpdateOrInsertFields.ColumnToolTip2"));
}
wUpIns.optWidth(true);
// In case of lookup: disable commitsize, etc.
boolean update = wUpdate.getSelection();
wlCommit.setEnabled(update);
wCommit.setEnabled(update);
wlMinyear.setEnabled(update);
wMinyear.setEnabled(update);
wlMaxyear.setEnabled(update);
wMaxyear.setEnabled(update);
wlMinyear.setEnabled(update);
wMinyear.setEnabled(update);
wlVersion.setEnabled(update);
wVersion.setEnabled(update);
wlTkRename.setEnabled(!update);
wTkRename.setEnabled(!update);
wCreate.setEnabled(update);
// Set the technical creation key fields correct... then disable
// depending on update or not. Then reset if we're updating. It makes
// sure that the disabled options because of database restrictions
// will always be properly grayed out.
setAutoincUse();
setSequence();
setTableMax();
if (update) {
setAutoincUse();
setSequence();
setTableMax();
}
// The alternative start date
//
wAltStartDate.setEnabled(wUseAltStartDate.getSelection());
int alternative = DimensionLookupMeta.getStartDateAlternative(wAltStartDate.getText());
wAltStartDateField.setEnabled(alternative == DimensionLookupMeta.START_DATE_ALTERNATIVE_COLUMN_VALUE);
// Caching...
//
wlPreloadCache.setEnabled(wUseCache.getSelection() && !wUpdate.getSelection());
wPreloadCache.setEnabled(wUseCache.getSelection() && !wUpdate.getSelection());
wlCacheSize.setEnabled(wUseCache.getSelection() && !wPreloadCache.getSelection());
wCacheSize.setEnabled(wUseCache.getSelection() && !wPreloadCache.getSelection());
}
Aggregations