mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-22 00:32:08 +00:00
Added AppleWorks Spread Sheet files export wizard.
This commit is contained in:
parent
6cfda661ac
commit
c825b36dff
@ -20,6 +20,7 @@
|
||||
package com.webcodepro.applecommander.ui.swt;
|
||||
|
||||
import com.webcodepro.applecommander.storage.AppleWorksDataBaseFileFilter;
|
||||
import com.webcodepro.applecommander.storage.AppleWorksSpreadSheetFileFilter;
|
||||
import com.webcodepro.applecommander.storage.AppleWorksWordProcessorFileFilter;
|
||||
import com.webcodepro.applecommander.storage.ApplesoftFileFilter;
|
||||
import com.webcodepro.applecommander.storage.BinaryFileFilter;
|
||||
@ -137,6 +138,14 @@ public class ExportFileStartPane extends WizardPane {
|
||||
}
|
||||
});
|
||||
button = new Button(buttonSubpanel, SWT.RADIO);
|
||||
button.setText("AppleWorks Spread Sheet file");
|
||||
button.setSelection(wizard.getFileFilter() instanceof AppleWorksSpreadSheetFileFilter);
|
||||
button.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
wizard.setFileFilter(new AppleWorksSpreadSheetFileFilter());
|
||||
}
|
||||
});
|
||||
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