Now enables/disables the address component as appropriate.

This commit is contained in:
Robert Greene 2003-03-02 23:11:23 +00:00
parent 0d233deaf3
commit d14399a834
1 changed files with 14 additions and 0 deletions

View File

@ -242,6 +242,20 @@ public class ImportSelectFilesWizardPane extends WizardPane {
layoutData = new GridData();
layoutData.widthHint = 75;
addressText.setLayoutData(layoutData);
if (spec.hasFiletype()) {
addressText.setEnabled(
wizard.getDisk().needsAddress(spec.getFiletype()));
}
// Enable/disable the address component:
filetypes.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent event) {
String filetype = filetypes.getItem(
filetypes.getSelectionIndex());
addressText.setEnabled(
wizard.getDisk().needsAddress(filetype));
}
});
// Bottom row of buttons
layoutData = new GridData();