mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-22 00:32:08 +00:00
Added AppleWorks Data Base file as an option to the filetype list.
This commit is contained in:
parent
61d3875500
commit
1c4f1de543
@ -19,6 +19,7 @@
|
||||
*/
|
||||
package com.webcodepro.applecommander.ui.swt;
|
||||
|
||||
import com.webcodepro.applecommander.storage.AppleWorksDataBaseFileFilter;
|
||||
import com.webcodepro.applecommander.storage.AppleWorksWordProcessorFileFilter;
|
||||
import com.webcodepro.applecommander.storage.ApplesoftFileFilter;
|
||||
import com.webcodepro.applecommander.storage.BinaryFileFilter;
|
||||
@ -128,6 +129,14 @@ public class ExportFileStartPane extends WizardPane {
|
||||
}
|
||||
});
|
||||
button = new Button(buttonSubpanel, SWT.RADIO);
|
||||
button.setText("AppleWorks Data Base file");
|
||||
button.setSelection(wizard.getFileFilter() instanceof AppleWorksDataBaseFileFilter);
|
||||
button.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
wizard.setFileFilter(new AppleWorksDataBaseFileFilter());
|
||||
}
|
||||
});
|
||||
button = new Button(buttonSubpanel, SWT.RADIO);
|
||||
button.setText("Graphic file...");
|
||||
button.setEnabled(graphicsFileFilter.isCodecAvailable());
|
||||
button.setSelection(wizard.getFileFilter() instanceof GraphicsFileFilter);
|
||||
|
Loading…
x
Reference in New Issue
Block a user