composite.setLayout(new FormLayout());
final Label outLabel = new Label(composite, SWT.NONE);
outLabel.setAlignment(SWT.RIGHT);
FormData fd_outLabel;
{
fd_outLabel = new FormData();
fd_outLabel.top = new FormAttachment(0, 28);
fd_outLabel.left = new FormAttachment(0, 5);
outLabel.setLayoutData(fd_outLabel);
}
final String resourceString = ErlideUIPlugin
.getResourceString("wizards.labels.buildoutput");
outLabel.setText(resourceString + ":");
output = new Text(composite, SWT.BORDER);
fd_outLabel.right = new FormAttachment(output, -10);
{
final FormData fd_output = new FormData();
fd_output.top = new FormAttachment(0, 23);
fd_output.right = new FormAttachment(0, 592);
fd_output.left = new FormAttachment(0, 141);
output.setLayoutData(fd_output);
}
output.setText(info.getOutputDir().toString());
output.setEnabled(false);
output.addModifyListener(new ModifyListener() {
@Override
public void modifyText(final ModifyEvent e) {
info.setOutputDir(new Path(output.getText()));
}
});
final Label l1 = new Label(composite, SWT.NONE);
l1.setAlignment(SWT.RIGHT);
FormData fd_l1;
{
fd_l1 = new FormData();
fd_l1.top = new FormAttachment(0, 58);
fd_l1.left = new FormAttachment(0, 5);
l1.setLayoutData(fd_l1);
}
final String resourceString2 = ErlideUIPlugin
.getResourceString("wizards.labels.source");
l1.setText(resourceString2 + ":");
source = new Text(composite, SWT.BORDER);
fd_l1.right = new FormAttachment(source, -10);
{
final FormData fd_source = new FormData();
fd_source.top = new FormAttachment(0, 53);
fd_source.right = new FormAttachment(0, 592);
fd_source.left = new FormAttachment(0, 141);
source.setLayoutData(fd_source);
}
source.setToolTipText("enter a list of folders, using / in paths and ; as list separator");
source.setText(PathSerializer.packList(info.getSourceDirs()));
source.setEnabled(false);
source.addModifyListener(new ModifyListener() {
@Override
public void modifyText(final ModifyEvent e) {
info.setSourceDirs(PathSerializer.unpackList(source.getText()));
}
});
final Label includesLabel = new Label(composite, SWT.NONE);
includesLabel.setAlignment(SWT.RIGHT);
FormData fd_includesLabel;
{
fd_includesLabel = new FormData();
fd_includesLabel.top = new FormAttachment(0, 88);
fd_includesLabel.left = new FormAttachment(0, 5);
includesLabel.setLayoutData(fd_includesLabel);
}
final String resourceString3 = ErlideUIPlugin
.getResourceString("wizards.labels.include");
includesLabel.setText(resourceString3 + ":");
include = new Text(composite, SWT.BORDER);
fd_includesLabel.right = new FormAttachment(include, -10);
{
final FormData fd_include = new FormData();
fd_include.top = new FormAttachment(0, 83);
fd_include.right = new FormAttachment(0, 592);
fd_include.left = new FormAttachment(0, 141);
include.setLayoutData(fd_include);
}
include.setToolTipText("enter a list of folders, using / in paths and ; as list separator");
include.setText(PathSerializer.packList(info.getIncludeDirs()));
include.setEnabled(false);
include.addModifyListener(new ModifyListener() {
@Override
public void modifyText(final ModifyEvent e) {
info.setIncludeDirs(PathSerializer.unpackList(include.getText()));
}
});
final Label lblTestSources = new Label(composite, SWT.NONE);
lblTestSources.setEnabled(false);
lblTestSources.setAlignment(SWT.RIGHT);
FormData fd_lblTestSources;
{
fd_lblTestSources = new FormData();
fd_lblTestSources.top = new FormAttachment(0, 118);
fd_lblTestSources.left = new FormAttachment(0, 5);
lblTestSources.setLayoutData(fd_lblTestSources);
}
final String resourceString4 = ErlideUIPlugin
.getResourceString("wizards.labels.testsources");
lblTestSources.setText(resourceString4 + ":");
test = new Text(composite, SWT.BORDER);
fd_lblTestSources.right = new FormAttachment(test, -10);
test.setEnabled(false);
{
final FormData fd_test = new FormData();
fd_test.top = new FormAttachment(0, 113);
fd_test.right = new FormAttachment(0, 592);
fd_test.left = new FormAttachment(0, 141);
test.setLayoutData(fd_test);
}