mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 23:29:34 +00:00
Beginnings of Compile Wizard.
This commit is contained in:
parent
db19766377
commit
eb3638ffd1
@ -0,0 +1,123 @@
|
||||
/*
|
||||
* AppleCommander - An Apple ][ image utility.
|
||||
* Copyright (C) 2002-3 by Robert Greene
|
||||
* robgreene at users.sourceforge.net
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
package com.webcodepro.applecommander.ui.swt;
|
||||
|
||||
import org.eclipse.swt.SWT;
|
||||
import org.eclipse.swt.events.ModifyEvent;
|
||||
import org.eclipse.swt.events.ModifyListener;
|
||||
import org.eclipse.swt.events.SelectionAdapter;
|
||||
import org.eclipse.swt.events.SelectionEvent;
|
||||
import org.eclipse.swt.graphics.Color;
|
||||
import org.eclipse.swt.layout.RowData;
|
||||
import org.eclipse.swt.layout.RowLayout;
|
||||
import org.eclipse.swt.widgets.Button;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.DirectoryDialog;
|
||||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Text;
|
||||
|
||||
/**
|
||||
* Provides the wizard pane which gets the export filter.
|
||||
* <p>
|
||||
* Date created: Nov 7, 2002 8:43:27 PM
|
||||
* @author: Rob Greene
|
||||
*/
|
||||
public class CompileFileStartPane extends WizardPane {
|
||||
private Composite parent;
|
||||
private Object layoutData;
|
||||
private Composite control;
|
||||
private CompileWizard wizard;
|
||||
private Text directoryText;
|
||||
/**
|
||||
* Constructor for ExportFileStartPane.
|
||||
*/
|
||||
public CompileFileStartPane(Composite parent, CompileWizard compileWizard, Object layoutData) {
|
||||
super();
|
||||
this.parent = parent;
|
||||
this.wizard = compileWizard;
|
||||
this.layoutData = layoutData;
|
||||
}
|
||||
/**
|
||||
* Open up and configure the wizard pane.
|
||||
*/
|
||||
public void open() {
|
||||
control = new Composite(parent, SWT.NULL);
|
||||
control.setLayoutData(layoutData);
|
||||
wizard.enableNextButton(false);
|
||||
wizard.enableFinishButton(true);
|
||||
RowLayout layout = new RowLayout(SWT.VERTICAL);
|
||||
layout.justify = true;
|
||||
layout.marginBottom = 5;
|
||||
layout.marginLeft = 5;
|
||||
layout.marginRight = 5;
|
||||
layout.marginTop = 5;
|
||||
layout.spacing = 3;
|
||||
control.setLayout(layout);
|
||||
Label label = new Label(control, SWT.WRAP);
|
||||
label.setText("Please note that the current compiler is \n"
|
||||
+ "very BETA and simply builds an assembly program \n"
|
||||
+ "and stores it on your harddisk...");
|
||||
|
||||
label = new Label(control, SWT.WRAP);
|
||||
label.setText("Please indicate the destination for the files:");
|
||||
|
||||
directoryText = new Text(control, SWT.WRAP | SWT.BORDER);
|
||||
if (wizard.getDirectory() != null) directoryText.setText(wizard.getDirectory());
|
||||
directoryText.setLayoutData(new RowData(300, -1));
|
||||
directoryText.setBackground(new Color(control.getDisplay(), 255,255,255));
|
||||
directoryText.setFocus();
|
||||
directoryText.addModifyListener(new ModifyListener() {
|
||||
public void modifyText(ModifyEvent event) {
|
||||
Text text = (Text) event.getSource();
|
||||
wizard.setDirectory(text.getText());
|
||||
}
|
||||
});
|
||||
|
||||
Button button = new Button(control, SWT.PUSH);
|
||||
button.setText("Browse...");
|
||||
button.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
DirectoryDialog directoryDialog = new DirectoryDialog(control.getShell());
|
||||
directoryDialog.setFilterPath(directoryText.getText());
|
||||
directoryDialog.setMessage(
|
||||
"Please choose the directory to which exported files will be written");
|
||||
String directory = directoryDialog.open();
|
||||
if (directory != null) {
|
||||
directoryText.setText(directory);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Get the next pane. A null return indicates the end of the wizard.
|
||||
* @see com.webcodepro.applecommander.gui.WizardPane#getNextPane()
|
||||
*/
|
||||
public WizardPane getNextPane() {
|
||||
return null;
|
||||
}
|
||||
/**
|
||||
* Dispose of resources.
|
||||
* @see com.webcodepro.applecommander.gui.WizardPane#dispose()
|
||||
*/
|
||||
public void dispose() {
|
||||
control.dispose();
|
||||
control = null;
|
||||
}
|
||||
}
|
70
src/com/webcodepro/applecommander/ui/swt/CompileWizard.java
Normal file
70
src/com/webcodepro/applecommander/ui/swt/CompileWizard.java
Normal file
@ -0,0 +1,70 @@
|
||||
/*
|
||||
* AppleCommander - An Apple ][ image utility.
|
||||
* Copyright (C) 2002-3 by Robert Greene
|
||||
* robgreene at users.sourceforge.net
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
package com.webcodepro.applecommander.ui.swt;
|
||||
|
||||
import com.webcodepro.applecommander.storage.FormattedDisk;
|
||||
|
||||
import org.eclipse.swt.widgets.Shell;
|
||||
|
||||
/**
|
||||
* Compile wizard.
|
||||
* <p>
|
||||
* Date created: Nov 7, 2002 9:22:35 PM
|
||||
* @author: Rob Greene
|
||||
*/
|
||||
public class CompileWizard extends Wizard {
|
||||
private FormattedDisk disk;
|
||||
private String directory;
|
||||
/**
|
||||
* Constructor for ExportWizard.
|
||||
*/
|
||||
public CompileWizard(Shell parent, ImageManager imageManager, FormattedDisk disk) {
|
||||
super(parent, imageManager.getCompileWizardLogo(), "Compile Wizard");
|
||||
this.disk = disk;
|
||||
}
|
||||
/**
|
||||
* Get the disk that is being worked on.
|
||||
*/
|
||||
public FormattedDisk getDisk() {
|
||||
return disk;
|
||||
}
|
||||
/**
|
||||
* Create the initial display used in the wizard.
|
||||
* @see com.webcodepro.applecommander.ui.swt.Wizard#createInitialWizardPane()
|
||||
*/
|
||||
public WizardPane createInitialWizardPane() {
|
||||
return new CompileFileStartPane(getContentPane(), this, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDirectory() {
|
||||
return directory;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string
|
||||
*/
|
||||
public void setDirectory(String string) {
|
||||
directory = string;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user