use of org.eclipse.jface.fieldassist.DecoratedField in project tdi-studio-se by Talend.
the class DateController method createControl.
/*
* (non-Javadoc)
*
* @see
* org.talend.designer.core.ui.editor.properties.controllers.AbstractElementPropertySectionController#createControl
* (org.eclipse.swt.widgets.Composite, org.talend.core.model.process.IElementParameter, int, int, int,
* org.eclipse.swt.widgets.Control)
*/
@Override
public Control createControl(Composite subComposite, IElementParameter param, int numInRow, int nbInRow, int top, Control lastControl) {
FormData data;
CLabel labelLabel = getWidgetFactory().createCLabel(subComposite, param.getDisplayName());
data = new FormData();
if (lastControl != null) {
data.left = new FormAttachment(lastControl, 0);
} else {
data.left = new FormAttachment((((numInRow - 1) * MAX_PERCENT) / nbInRow), 0);
}
data.top = new FormAttachment(0, top);
labelLabel.setLayoutData(data);
if (numInRow != 1) {
labelLabel.setAlignment(SWT.RIGHT);
}
//$NON-NLS-1$
Button btnEdit = getWidgetFactory().createButton(subComposite, "", SWT.PUSH);
btnEdit.setImage(ImageProvider.getImage(CoreUIPlugin.getImageDescriptor(DOTS_BUTTON)));
btnEdit.setData(NAME, DATE);
btnEdit.setData(PARAMETER_NAME, param.getName());
btnEdit.setEnabled(!param.isReadOnly());
btnEdit.addSelectionListener(listenerSelection);
DecoratedField dField = new DecoratedField(subComposite, SWT.BORDER, new SelectAllTextControlCreator());
if (param.isRequired()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_REQUIRED);
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.TOP, false);
}
if (param.isRepositoryValueUsed()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_CONTENT_PROPOSAL);
//$NON-NLS-1$
decoration.setDescription(Messages.getString("FileController.decoration.description"));
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.BOTTOM, false);
}
Control cLayout = dField.getLayoutControl();
dateText = (Text) dField.getControl();
dateText.setData(PARAMETER_NAME, param.getName());
cLayout.setBackground(subComposite.getBackground());
dateText.setEditable(!param.isReadOnly());
editionControlHelper.register(param.getName(), dateText);
addDragAndDropTarget(dateText);
if (elem instanceof Node) {
dateText.setToolTipText(VARIABLE_TOOLTIP + param.getVariableName());
}
hashCurControls.put(param.getName(), dateText);
// **************************
data = new FormData();
int currentLabelWidth = STANDARD_LABEL_WIDTH;
GC gc = new GC(labelLabel);
Point labelSize = gc.stringExtent(param.getDisplayName());
gc.dispose();
gc = new GC(dateText);
// just an example of date //$NON-NLS-1$
Point defaultDateDateSize = gc.stringExtent("\"2007-06-22 00:00:00\"");
//$NON-NLS-1$
Object paramValue = param.getValue() != null ? param.getValue() : "";
// current value
Point currentDateSize = gc.stringExtent((String) paramValue);
gc.dispose();
int currentDateWidth = defaultDateDateSize.x + ITabbedPropertyConstants.HSPACE + STANDARD_TEXT_WIDTH_ADDITION;
if ((currentDateSize.x + ITabbedPropertyConstants.HSPACE + STANDARD_TEXT_WIDTH_ADDITION) > currentDateWidth) {
currentDateWidth = currentDateSize.x + ITabbedPropertyConstants.HSPACE + STANDARD_TEXT_WIDTH_ADDITION;
}
dateText.computeSize(SWT.DEFAULT, SWT.DEFAULT);
if ((labelSize.x + ITabbedPropertyConstants.HSPACE) > currentLabelWidth) {
currentLabelWidth = labelSize.x + ITabbedPropertyConstants.HSPACE;
}
data.left = new FormAttachment(labelLabel, 0, SWT.RIGHT);
data.right = new FormAttachment(labelLabel, currentDateWidth, SWT.RIGHT);
data.top = new FormAttachment(labelLabel, 0, SWT.CENTER);
cLayout.setLayoutData(data);
data = new FormData();
data.left = new FormAttachment(cLayout, 0, SWT.RIGHT);
data.right = new FormAttachment(cLayout, STANDARD_BUTTON_WIDTH, SWT.RIGHT);
data.top = new FormAttachment(labelLabel, 0, SWT.CENTER);
data.height = STANDARD_HEIGHT - 2;
btnEdit.setLayoutData(data);
Point initialSize = dField.getLayoutControl().computeSize(SWT.DEFAULT, SWT.DEFAULT);
dynamicProperty.setCurRowSize(initialSize.y + ITabbedPropertyConstants.VSPACE);
return btnEdit;
}
use of org.eclipse.jface.fieldassist.DecoratedField in project tdi-studio-se by Talend.
the class DbTableController method createControl.
/*
* (non-Javadoc)
*
* @see
* org.talend.designer.core.ui.editor.properties2.editors.AbstractElementPropertySectionController#createControl()
*/
@Override
public Control createControl(final Composite subComposite, final IElementParameter param, final int numInRow, final int nbInRow, final int top, final Control lastControl) {
this.curParameter = param;
this.paramFieldType = param.getFieldType();
FormData data;
this.paramFieldType = param.getFieldType();
this.curParameter = param;
Control lastDbControl = null;
Button openListTable = null;
if (!"DATABASE:CDC".equals(param.getFilter())) {
//$NON-NLS-1$
openListTable = addListTablesButton(subComposite, param, top, numInRow, nbInRow);
lastDbControl = openListTable;
}
boolean isHive = false;
//$NON-NLS-1$
IElementParameter typePara = elem.getElementParameter("TYPE");
if (typePara != null && "Hive".equalsIgnoreCase((String) typePara.getValue())) {
//$NON-NLS-1$
isHive = true;
}
Control openSqlBuilder = null;
if (!isContainSqlMemo() && !"DATABASE:CDC".equals(param.getFilter()) && !isHive) {
//$NON-NLS-1$
openSqlBuilder = addOpenSqlBulderButton(subComposite, param, top, numInRow, nbInRow);
FormData data1 = new FormData();
data1.right = new FormAttachment(100, -ITabbedPropertyConstants.HSPACE);
data1.left = new FormAttachment(100, -(ITabbedPropertyConstants.HSPACE + STANDARD_BUTTON_WIDTH));
data1.top = new FormAttachment(0, top);
data1.height = STANDARD_HEIGHT - 2;
openSqlBuilder.setLayoutData(data1);
//$NON-NLS-1$
openSqlBuilder.setToolTipText(Messages.getString("DbTableController.openSQLBuilder"));
lastDbControl = openSqlBuilder;
}
data = new FormData();
if (openSqlBuilder != null) {
data.right = new FormAttachment(openSqlBuilder, -5, SWT.LEFT);
data.left = new FormAttachment(openSqlBuilder, -(15 + STANDARD_BUTTON_WIDTH), SWT.LEFT);
} else {
data.right = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), 0);
data.left = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), -STANDARD_BUTTON_WIDTH);
}
data.top = new FormAttachment(0, top);
data.height = STANDARD_HEIGHT - 2;
if (openListTable != null) {
openListTable.setLayoutData(data);
openListTable.setData(PARAMETER_NAME, param.getName());
openListTable.setEnabled(!param.isReadOnly());
openListTable.addSelectionListener(openTablesListener);
//$NON-NLS-1$
openListTable.setToolTipText(Messages.getString("DbTableController.showTableList"));
}
// TDI-25576 : just hide this button in Component View for Hive components , maybe later will remove this .
if (isHive) {
openListTable.setVisible(false);
}
Text labelText;
final DecoratedField dField = new DecoratedField(subComposite, SWT.BORDER, new SelectAllTextControlCreator());
if (param.isRequired()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_REQUIRED);
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.TOP, false);
}
if (param.isRepositoryValueUsed()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_CONTENT_PROPOSAL);
//$NON-NLS-1$
decoration.setDescription(Messages.getString("TextController.decoration.description"));
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.BOTTOM, false);
}
Control cLayout = dField.getLayoutControl();
labelText = (Text) dField.getControl();
labelText.setData(PARAMETER_NAME, param.getName());
editionControlHelper.register(param.getName(), labelText);
cLayout.setBackground(subComposite.getBackground());
labelText.setEditable(!param.isReadOnly());
if (elem instanceof Node) {
labelText.setToolTipText(VARIABLE_TOOLTIP + param.getVariableName());
}
addDragAndDropTarget(labelText);
CLabel labelLabel = getWidgetFactory().createCLabel(subComposite, param.getDisplayName());
data = new FormData();
if (lastControl != null) {
data.left = new FormAttachment(lastControl, 0);
} else {
data.left = new FormAttachment((((numInRow - 1) * MAX_PERCENT) / nbInRow), 0);
}
data.top = new FormAttachment(0, top);
labelLabel.setLayoutData(data);
if (numInRow != 1) {
labelLabel.setAlignment(SWT.RIGHT);
}
// *********************
data = new FormData();
int currentLabelWidth = STANDARD_LABEL_WIDTH;
GC gc = new GC(labelLabel);
Point labelSize = gc.stringExtent(param.getDisplayName());
gc.dispose();
if ((labelSize.x + ITabbedPropertyConstants.HSPACE) > currentLabelWidth) {
currentLabelWidth = labelSize.x + ITabbedPropertyConstants.HSPACE;
}
if (numInRow == 1) {
if (lastControl != null) {
data.left = new FormAttachment(lastControl, currentLabelWidth);
} else {
data.left = new FormAttachment(0, currentLabelWidth);
}
} else {
data.left = new FormAttachment(labelLabel, 0, SWT.RIGHT);
}
if (openListTable != null) {
data.right = new FormAttachment(openListTable, -5, SWT.LEFT);
} else {
data.right = new FormAttachment((numInRow * MAX_PERCENT) / nbInRow, 0);
lastDbControl = labelText;
}
data.top = new FormAttachment(0, top);
cLayout.setLayoutData(data);
// **********************
hashCurControls.put(param.getName(), labelText);
Point initialSize = dField.getLayoutControl().computeSize(SWT.DEFAULT, SWT.DEFAULT);
// curRowSize = initialSize.y + ITabbedPropertyConstants.VSPACE;
dynamicProperty.setCurRowSize(initialSize.y + ITabbedPropertyConstants.VSPACE);
return lastDbControl;
}
use of org.eclipse.jface.fieldassist.DecoratedField in project tdi-studio-se by Talend.
the class ConnectionListController method estimateRowSize.
/*
* (non-Javadoc)
*
* @see
* org.talend.designer.core.ui.editor.properties.controllers.AbstractElementPropertySectionController#estimateRowSize
* (org.eclipse.swt.widgets.Composite, org.talend.core.model.process.IElementParameter)
*/
@Override
public int estimateRowSize(Composite subComposite, IElementParameter param) {
DecoratedField dField = new DecoratedField(subComposite, SWT.BORDER, cbCtrl);
Point initialSize = dField.getLayoutControl().computeSize(SWT.DEFAULT, SWT.DEFAULT);
dField.getLayoutControl().dispose();
return initialSize.y + ITabbedPropertyConstants.VSPACE;
}
use of org.eclipse.jface.fieldassist.DecoratedField in project tdi-studio-se by Talend.
the class SqlMemoController method createControl.
/*
* (non-Javadoc)
*
* @see
* org.talend.designer.core.ui.editor.properties2.editors.AbstractElementPropertySectionController#createControl
* (org.eclipse.swt.widgets.Composite, org.talend.core.model.process.IElementParameter, int, int, int,
* org.eclipse.swt.widgets.Control)
*/
@Override
public Control createControl(Composite subComposite, IElementParameter param, int numInRow, int nbInRow, int top, Control lastControl) {
this.curParameter = param;
this.paramFieldType = param.getFieldType();
switchParam = elem.getElementParameter(EParameterName.REPOSITORY_ALLOW_AUTO_SWITCH.getName());
final DecoratedField dField1 = new DecoratedField(subComposite, SWT.PUSH, new IControlCreator() {
@Override
public Control createControl(Composite parent, int style) {
return new Button(parent, style);
}
});
Control buttonControl = dField1.getLayoutControl();
openSQLEditorButton = (Button) dField1.getControl();
openSQLEditorButton.computeSize(SWT.DEFAULT, SWT.DEFAULT);
openSQLEditorButton.setImage(ImageProvider.getImage(CoreUIPlugin.getImageDescriptor(DOTS_BUTTON)));
buttonControl.setBackground(subComposite.getBackground());
openSQLEditorButton.setEnabled(true);
openSQLEditorButton.setData(NAME, SQLEDITOR);
openSQLEditorButton.setData(PARAMETER_NAME, param.getName());
openSQLEditorButton.setEnabled(!param.isReadOnly());
openSQLEditorButton.addSelectionListener(listenerSelection);
if (param.getFieldType() == EParameterFieldType.MEMO_SQL) {
openSQLEditorButton.setEnabled(ExtractMetaDataUtils.getInstance().haveLoadMetadataNode());
}
// Added by Marvin Wang on Dec.13, 2012 for bug TDI-7559.
//$NON-NLS-1$
IElementParameter typePara = elem.getElementParameter("TYPE");
if (typePara != null && "Hive".equalsIgnoreCase((String) typePara.getValue())) {
//$NON-NLS-1$
openSQLEditorButton.setVisible(false);
}
if (typePara != null && "Impala".equalsIgnoreCase((String) typePara.getValue())) {
//$NON-NLS-1$
openSQLEditorButton.setVisible(false);
}
FormData data1 = new FormData();
data1.right = new FormAttachment(100, -ITabbedPropertyConstants.HSPACE);
data1.left = new FormAttachment(100, -(ITabbedPropertyConstants.HSPACE + STANDARD_BUTTON_WIDTH));
data1.top = new FormAttachment(0, top);
buttonControl.setLayoutData(data1);
int nbLines = param.getNbLines();
IControlCreator txtCtrl = new IControlCreator() {
@Override
public Control createControl(final Composite parent, final int style) {
return createColorStyledText(parent, style);
}
};
DecoratedField dField = null;
if (param.getNbLines() != 1) {
dField = new DecoratedField(subComposite, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL, txtCtrl);
} else {
dField = new DecoratedField(subComposite, SWT.BORDER, txtCtrl);
}
if (param.isRequired()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_REQUIRED);
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.TOP, false);
}
Control cLayout = dField.getLayoutControl();
queryText = (ColorStyledText) dField.getControl();
queryText.setData(PARAMETER_NAME, param.getName());
editionControlHelper.register(param.getName(), queryText);
FormData d = (FormData) queryText.getLayoutData();
if (getAdditionalHeightSize() != 0) {
nbLines += this.getAdditionalHeightSize() / queryText.getLineHeight();
}
d.height = queryText.getLineHeight() * nbLines;
FormData data;
queryText.getParent().setSize(subComposite.getSize().x, queryText.getLineHeight() * nbLines);
cLayout.setBackground(subComposite.getBackground());
// for bug 7580
if (!(queryText instanceof ColorStyledText)) {
queryText.setEnabled(!param.isReadOnly());
} else {
queryText.setEditable(!param.isReadOnly());
}
if (elem instanceof Node) {
queryText.setToolTipText(VARIABLE_TOOLTIP + param.getVariableName());
}
queryText.addKeyListener(new KeyListener() {
@Override
public void keyPressed(KeyEvent e) {
if (switchParam != null) {
switchParam.setValue(Boolean.FALSE);
}
}
@Override
public void keyReleased(KeyEvent e) {
}
});
if (param.isReadOnly() && param.isRepositoryValueUsed()) {
cLayout.addMouseListener(listenerClick);
}
addDragAndDropTarget(queryText);
CLabel labelLabel = getWidgetFactory().createCLabel(subComposite, param.getDisplayName());
data = new FormData();
if (lastControl != null) {
data.left = new FormAttachment(lastControl, 0);
} else {
data.left = new FormAttachment((((numInRow - 1) * MAX_PERCENT) / nbInRow), 0);
}
data.top = new FormAttachment(0, top);
labelLabel.setLayoutData(data);
if (numInRow != 1) {
labelLabel.setAlignment(SWT.RIGHT);
}
// *********************
data = new FormData();
int currentLabelWidth = STANDARD_LABEL_WIDTH;
GC gc = new GC(labelLabel);
Point labelSize = gc.stringExtent(param.getDisplayName());
gc.dispose();
if ((labelSize.x + ITabbedPropertyConstants.HSPACE) > currentLabelWidth) {
currentLabelWidth = labelSize.x + ITabbedPropertyConstants.HSPACE;
}
if (numInRow == 1) {
if (lastControl != null) {
data.left = new FormAttachment(lastControl, currentLabelWidth);
} else {
data.left = new FormAttachment(0, currentLabelWidth);
}
} else {
data.left = new FormAttachment(labelLabel, 0, SWT.RIGHT);
}
data.right = new FormAttachment(buttonControl, -5, SWT.LEFT);
data.top = new FormAttachment(0, top);
cLayout.setLayoutData(data);
// **********************
hashCurControls.put(param.getName(), queryText);
Point initialSize = dField.getLayoutControl().computeSize(SWT.DEFAULT, SWT.DEFAULT);
// curRowSize = initialSize.y + ITabbedPropertyConstants.VSPACE;
dynamicProperty.setCurRowSize(initialSize.y + ITabbedPropertyConstants.VSPACE);
return null;
}
use of org.eclipse.jface.fieldassist.DecoratedField in project tdi-studio-se by Talend.
the class VersionController method createControl.
/*
* (non-Javadoc)
*
* @see org.talend.designer.core.ui.editor.properties2.editors.AbstractElementPropertySectionController#createControl()
*/
@Override
public Control createControl(final Composite subComposite, final IElementParameter param, final int numInRow, final int nbInRow, final int top, final Control lastControl) {
Button btnUp, btnDown;
//$NON-NLS-1$
btnUp = getWidgetFactory().createButton(subComposite, "M", SWT.PUSH);
btnUp.setData(NAME, VER_MAJ);
btnUp.setEnabled(!param.isReadOnly());
btnUp.addSelectionListener(listenerSelection);
Point btnUpSize = btnUp.computeSize(SWT.DEFAULT, SWT.DEFAULT);
//$NON-NLS-1$
btnDown = getWidgetFactory().createButton(subComposite, "m", SWT.PUSH);
Point btnDownSize = btnDown.computeSize(SWT.DEFAULT, SWT.DEFAULT);
Point btnSize = new Point(Math.max(btnUpSize.x, btnDownSize.x), Math.max(btnUpSize.y, btnDownSize.y));
FormData data = new FormData();
data.left = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), -btnSize.x);
data.right = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), 0);
data.top = new FormAttachment(0, top);
data.height = btnSize.y;
btnDown.setLayoutData(data);
btnDown.setData(NAME, VER_MIN);
btnDown.setEnabled(!param.isReadOnly());
btnDown.addSelectionListener(listenerSelection);
data = new FormData();
data.left = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), -((btnSize.x * 2) + ITabbedPropertyConstants.HSPACE));
data.right = new FormAttachment(((numInRow * MAX_PERCENT) / nbInRow), -(btnSize.x + ITabbedPropertyConstants.HSPACE));
data.top = new FormAttachment(0, top);
data.height = btnSize.y;
btnUp.setLayoutData(data);
DecoratedField dField = new DecoratedField(subComposite, SWT.BORDER, new SelectAllTextControlCreator());
if (param.isRequired()) {
FieldDecoration decoration = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_REQUIRED);
dField.addFieldDecoration(decoration, SWT.RIGHT | SWT.TOP, false);
}
Control cLayout = dField.getLayoutControl();
Text labelText = (Text) dField.getControl();
cLayout.setBackground(subComposite.getBackground());
labelText.setEditable(false);
if (elem instanceof Node) {
labelText.setToolTipText(VARIABLE_TOOLTIP + param.getVariableName());
}
//$NON-NLS-1$
CLabel labelLabel = getWidgetFactory().createCLabel(subComposite, param.getDisplayName());
data = new FormData();
if (lastControl != null) {
data.left = new FormAttachment(lastControl, 0);
} else {
data.left = new FormAttachment((((numInRow - 1) * MAX_PERCENT) / nbInRow), 0);
}
data.top = new FormAttachment(0, top);
labelLabel.setLayoutData(data);
if (numInRow != 1) {
labelLabel.setAlignment(SWT.RIGHT);
}
// *********************
data = new FormData();
if (numInRow == 1) {
if (lastControl != null) {
data.left = new FormAttachment(lastControl, STANDARD_LABEL_WIDTH);
} else {
data.left = new FormAttachment((((numInRow - 1) * MAX_PERCENT) / nbInRow), STANDARD_LABEL_WIDTH);
}
} else {
data.left = new FormAttachment(labelLabel, 0, SWT.RIGHT);
}
data.right = new FormAttachment(btnUp, 0);
data.top = new FormAttachment(0, top);
cLayout.setLayoutData(data);
// **********************
hashCurControls.put(param.getName(), labelText);
Point initialSize = dField.getLayoutControl().computeSize(SWT.DEFAULT, SWT.DEFAULT);
if (btnSize.y > initialSize.y) {
// curRowSize = btnSize.y + ITabbedPropertyConstants.VSPACE;
dynamicProperty.setCurRowSize(btnSize.y + ITabbedPropertyConstants.VSPACE);
} else {
dynamicProperty.setCurRowSize(initialSize.y + ITabbedPropertyConstants.VSPACE);
// curRowSize = initialSize.y + ITabbedPropertyConstants.VSPACE;
}
return btnDown;
}
Aggregations