|
@@ -5,9 +5,13 @@ import java.awt.Color;
|
|
|
import java.awt.Component;
|
|
|
import java.awt.Cursor;
|
|
|
import java.awt.Dimension;
|
|
|
+import java.awt.Font;
|
|
|
+import java.awt.HeadlessException;
|
|
|
import java.awt.Image;
|
|
|
+import java.awt.Label;
|
|
|
import java.awt.Point;
|
|
|
import java.awt.Toolkit;
|
|
|
+import java.awt.datatransfer.UnsupportedFlavorException;
|
|
|
import java.awt.event.ActionEvent;
|
|
|
import java.awt.event.ActionListener;
|
|
|
import java.awt.event.ComponentAdapter;
|
|
@@ -22,6 +26,7 @@ import java.io.IOException;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Timer;
|
|
|
import java.util.TimerTask;
|
|
|
+import java.util.zip.ZipException;
|
|
|
|
|
|
import javax.swing.AbstractAction;
|
|
|
import javax.swing.ActionMap;
|
|
@@ -65,6 +70,8 @@ import javax.swing.tree.TreeCellRenderer;
|
|
|
|
|
|
import org.apache.commons.compress.archivers.ArchiveException;
|
|
|
|
|
|
+import com.google.gson.JsonParseException;
|
|
|
+
|
|
|
import classes.AbstractCpsObject;
|
|
|
import classes.Category;
|
|
|
import classes.CpsUpperNode;
|
|
@@ -122,7 +129,7 @@ public class GUI<E> implements CategoryListener {
|
|
|
private JMenuItem editItem = new JMenuItem("Edit Object");
|
|
|
private String catOfObjToBeEdited;
|
|
|
private final JScrollPane statTab = new JScrollPane();
|
|
|
-
|
|
|
+
|
|
|
private FlexiblePane flexPane;
|
|
|
private StatPanel2 statSplitPane;
|
|
|
private JScrollPane statScrollPane;
|
|
@@ -283,7 +290,7 @@ public class GUI<E> implements CategoryListener {
|
|
|
statScrollPane = new JScrollPane(statSplitPane);
|
|
|
this.canvas = new MyCanvas(model, control);
|
|
|
this.holonCanvas = new HolonCanvas(model, control);
|
|
|
- //this.unitGraph = new UnitGraph(model, control);
|
|
|
+ // this.unitGraph = new UnitGraph(model, control);
|
|
|
control.initListener(this);
|
|
|
controller.setCanvas(canvas);
|
|
|
model.setConsole(console);
|
|
@@ -519,15 +526,22 @@ public class GUI<E> implements CategoryListener {
|
|
|
|
|
|
@Override
|
|
|
public void actionPerformed(ActionEvent e) {
|
|
|
- if (((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
- .getComponent(0) instanceof UpperNodeCanvas)
|
|
|
- controller.paste(
|
|
|
- ((UpperNodeCanvas) ((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
- .getComponent(0)).upperNode,
|
|
|
- ((UpperNodeCanvas) ((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
- .getComponent(0)).getMousePosition());
|
|
|
- else
|
|
|
- controller.paste(null, canvas.getMousePosition());
|
|
|
+ try {
|
|
|
+ if (((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
+ .getComponent(0) instanceof UpperNodeCanvas)
|
|
|
+
|
|
|
+ controller.paste(
|
|
|
+ ((UpperNodeCanvas) ((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
+ .getComponent(0)).upperNode,
|
|
|
+ ((UpperNodeCanvas) ((JScrollPane) tabbedPane.getSelectedComponent()).getViewport()
|
|
|
+ .getComponent(0)).getMousePosition());
|
|
|
+ else
|
|
|
+ controller.paste(null, canvas.getMousePosition());
|
|
|
+ } catch (HeadlessException | JsonParseException | UnsupportedFlavorException | IOException e1) {
|
|
|
+ // TODO Auto-generated catch block
|
|
|
+ JLabel message = new JLabel("The Clipboard information can't be pasted into Application.");
|
|
|
+ JOptionPane.showMessageDialog(null, message, "", JOptionPane.ERROR_MESSAGE);
|
|
|
+ }
|
|
|
canvas.repaint();
|
|
|
}
|
|
|
});
|
|
@@ -1498,10 +1512,8 @@ public class GUI<E> implements CategoryListener {
|
|
|
private void menuFileExitActionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
JFileChooser fileChooser = new JFileChooser();
|
|
|
JFrame test = new JFrame();
|
|
|
- FileNameExtensionFilter holonFilter = new FileNameExtensionFilter("Holon Save File(.holon)", "holon");
|
|
|
- FileNameExtensionFilter ownFilter = new FileNameExtensionFilter("Own Extension(.ext)", " ");
|
|
|
+ FileNameExtensionFilter holonFilter = new FileNameExtensionFilter("Holon Save File(*.holon)", "holon");
|
|
|
fileChooser.addChoosableFileFilter(holonFilter);
|
|
|
- fileChooser.addChoosableFileFilter(ownFilter);
|
|
|
fileChooser.setFileFilter(holonFilter);
|
|
|
|
|
|
if (fileChooser.showOpenDialog(test) == JFileChooser.APPROVE_OPTION) {
|
|
@@ -1526,11 +1538,10 @@ public class GUI<E> implements CategoryListener {
|
|
|
}
|
|
|
unitGraph.empty();
|
|
|
tree.repaint();
|
|
|
- } catch (IOException e) {
|
|
|
+ } catch (IOException | ArchiveException e) {
|
|
|
// TODO Auto-generated catch block
|
|
|
- e.printStackTrace();
|
|
|
- } catch (ArchiveException e) {
|
|
|
- e.printStackTrace();
|
|
|
+ JLabel message = new JLabel("The savefile is corrupt and cannot be opened.");
|
|
|
+ JOptionPane.showMessageDialog(null, message, "", JOptionPane.ERROR_MESSAGE);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1547,18 +1558,30 @@ public class GUI<E> implements CategoryListener {
|
|
|
private void menuSaveActionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
JFileChooser fileChooser = new JFileChooser();
|
|
|
JFrame test = new JFrame();
|
|
|
- FileNameExtensionFilter holonFilter = new FileNameExtensionFilter("Holon Save File(.holon)", "holon");
|
|
|
- FileNameExtensionFilter ownFilter = new FileNameExtensionFilter("Own Extension(.ext)", " ");
|
|
|
+ FileNameExtensionFilter holonFilter = new FileNameExtensionFilter("Holon Save File(*.holon)", "holon");
|
|
|
fileChooser.addChoosableFileFilter(holonFilter);
|
|
|
- fileChooser.addChoosableFileFilter(ownFilter);
|
|
|
fileChooser.setFileFilter(holonFilter);
|
|
|
|
|
|
if (fileChooser.showSaveDialog(test) == JFileChooser.APPROVE_OPTION) {
|
|
|
String file = fileChooser.getSelectedFile().getPath();
|
|
|
if (fileChooser.getFileFilter().equals(holonFilter)) {
|
|
|
- if (!file.endsWith(".holon"))
|
|
|
+ if (!file.contains("."))
|
|
|
file += ".holon";
|
|
|
+ if (!file.endsWith(".holon")) {
|
|
|
+ String suffix = file.substring(file.lastIndexOf("."), file.length());
|
|
|
+ String[] options = new String[] { "keep .holon", "use " + suffix };
|
|
|
+
|
|
|
+ JLabel message = new JLabel(
|
|
|
+ "Are you sure to use the extension \"" + suffix + "\" instead of \".holon\"?");
|
|
|
+
|
|
|
+ int response = JOptionPane.showOptionDialog(null, message, "", JOptionPane.DEFAULT_OPTION,
|
|
|
+ JOptionPane.QUESTION_MESSAGE, null, options, options[1]);
|
|
|
+
|
|
|
+ if (response == 0)
|
|
|
+ file = file.replace(suffix, ".holon");
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
try {
|
|
|
controller.saveFile(new File(file).getAbsolutePath());
|
|
|
} catch (IOException | ArchiveException e) {
|