|
@@ -21,7 +21,8 @@ import java.awt.Insets;
|
|
|
|
|
|
@SuppressWarnings("serial")
|
|
|
/**
|
|
|
- * PopUp for Creation of SmartDevices, which allows configuration of a new SmartDevice
|
|
|
+ * PopUp for Creation of SmartDevices, which allows configuration of a new
|
|
|
+ * SmartDevice
|
|
|
*
|
|
|
* @author Andreas T. Meyer-Berg
|
|
|
*/
|
|
@@ -46,10 +47,6 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
* Controller which adds the new Device to the model
|
|
|
*/
|
|
|
private Controller c;
|
|
|
- /**
|
|
|
- * Visualisation Panel which visualizes the Model
|
|
|
- */
|
|
|
- private VisualisationPanel p;
|
|
|
/**
|
|
|
* Width of the model, which is the maximum x-Position
|
|
|
*/
|
|
@@ -62,42 +59,72 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
* Visualization radius of SmartDevices which
|
|
|
*/
|
|
|
private int visualisationRadius;
|
|
|
+ /**
|
|
|
+ * True if the SmartDevice is being edited and not a new one. If true, the
|
|
|
+ * device should not be added to the controller.
|
|
|
+ */
|
|
|
+ private boolean edit;
|
|
|
/**
|
|
|
* Creates a new SmartDeviceCreationPopUp
|
|
|
- * @param currentX default xPosition of the new SmartDevice
|
|
|
- * @param currentY default yPosition of the new SmartDevice
|
|
|
- * @param maxX width of the model
|
|
|
- * @param maxY hieght of the model
|
|
|
- * @param visualisationRadius distance from the borders which should be kept
|
|
|
- * @param c controler which allows manipulation of the model
|
|
|
- * @param panel Visualisation panel, which represents the SmartDevice
|
|
|
+ *
|
|
|
+ * @param currentX
|
|
|
+ * default xPosition of the new SmartDevice
|
|
|
+ * @param currentY
|
|
|
+ * default yPosition of the new SmartDevice
|
|
|
+ * @param maxX
|
|
|
+ * width of the model
|
|
|
+ * @param maxY
|
|
|
+ * hieght of the model
|
|
|
+ * @param visualisationRadius
|
|
|
+ * distance from the borders which should be kept
|
|
|
+ * @param c
|
|
|
+ * controler which allows manipulation of the model
|
|
|
+ * @param panel
|
|
|
+ * Visualisation panel, which represents the SmartDevice
|
|
|
+ *
|
|
|
+ * public SmartDeviceCreationPopUp(int currentX, int currentY,
|
|
|
+ * int maxX, int maxY, int visualisationRadius, Controller c) {
|
|
|
+ */
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Allows editing/creation of a smartDevice
|
|
|
+ *
|
|
|
+ * @param deviceToEdit
|
|
|
+ * SmartDevice to edit
|
|
|
+ * @param edit
|
|
|
+ * true if it is editing of a device
|
|
|
+ * @param control
|
|
|
+ * controller, which should add the device
|
|
|
*/
|
|
|
- public SmartDeviceCreationPopUp(int currentX, int currentY, int maxX, int maxY, int visualisationRadius, Controller c, VisualisationPanel panel) {
|
|
|
+ public SmartDeviceCreationPopUp(SmartDevice deviceToEdit, boolean edit, Controller control) {
|
|
|
+
|
|
|
setModal(true);
|
|
|
- //setType(Type.POPUP); -> Crashes on Linux
|
|
|
- this.c = c;
|
|
|
- this.p = panel;
|
|
|
- this.maxX = maxX;
|
|
|
- this.maxY = maxY;
|
|
|
-
|
|
|
+ // setType(Type.POPUP); -> Crashes on Linux
|
|
|
+ this.c = control;
|
|
|
+ this.maxX = c.getWidth();
|
|
|
+ this.maxY = c.getHeight();
|
|
|
+ this.visualisationRadius = c.getDevice_visualization_radius();
|
|
|
+ this.edit = edit;
|
|
|
+ newDevice = deviceToEdit;
|
|
|
+
|
|
|
setSize(640, 480);
|
|
|
setResizable(false);
|
|
|
- //setIconImage(Toolkit.getDefaultToolkit().getImage(SmartDeviceCreationPopUp.class.getResource("/javax/swing/plaf/metal/icons/ocean/computer.gif")));
|
|
|
+ // setIconImage(Toolkit.getDefaultToolkit().getImage(SmartDeviceCreationPopUp.class.getResource("/javax/swing/plaf/metal/icons/ocean/computer.gif")));
|
|
|
setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
|
|
|
setTitle("SmartDevice Configuration Panel");
|
|
|
-
|
|
|
+
|
|
|
JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.TOP);
|
|
|
getContentPane().add(tabbedPane, BorderLayout.CENTER);
|
|
|
-
|
|
|
+
|
|
|
JPanel panelGeneral = new JPanel();
|
|
|
tabbedPane.addTab("General", null, panelGeneral, "Edit general Information of the SmartDevice");
|
|
|
GridBagLayout gbl_panelGeneral = new GridBagLayout();
|
|
|
- gbl_panelGeneral.columnWidths = new int[]{148, 259, 0};
|
|
|
- gbl_panelGeneral.rowHeights = new int[]{22, 22, 0, 0, 0, 0, 0, 0};
|
|
|
- gbl_panelGeneral.columnWeights = new double[]{0.0, 0.0, Double.MIN_VALUE};
|
|
|
- gbl_panelGeneral.rowWeights = new double[]{0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, Double.MIN_VALUE};
|
|
|
+ gbl_panelGeneral.columnWidths = new int[] { 148, 259, 0 };
|
|
|
+ gbl_panelGeneral.rowHeights = new int[] { 22, 22, 0, 0, 0, 0, 0, 0 };
|
|
|
+ gbl_panelGeneral.columnWeights = new double[] { 0.0, 0.0, Double.MIN_VALUE };
|
|
|
+ gbl_panelGeneral.rowWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, Double.MIN_VALUE };
|
|
|
panelGeneral.setLayout(gbl_panelGeneral);
|
|
|
-
|
|
|
+
|
|
|
JLabel lblName = new JLabel("Name:");
|
|
|
GridBagConstraints gbc_lblName = new GridBagConstraints();
|
|
|
gbc_lblName.anchor = GridBagConstraints.WEST;
|
|
@@ -105,7 +132,7 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
gbc_lblName.gridx = 0;
|
|
|
gbc_lblName.gridy = 0;
|
|
|
panelGeneral.add(lblName, gbc_lblName);
|
|
|
-
|
|
|
+
|
|
|
tfName = new JTextField();
|
|
|
GridBagConstraints gbc_tfName = new GridBagConstraints();
|
|
|
gbc_tfName.anchor = GridBagConstraints.NORTHWEST;
|
|
@@ -114,16 +141,17 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
gbc_tfName.gridy = 0;
|
|
|
panelGeneral.add(tfName, gbc_tfName);
|
|
|
tfName.setColumns(20);
|
|
|
- tfName.setText("SmartDevice name");
|
|
|
-
|
|
|
- JLabel lblXposition = new JLabel("x-position: ["+visualisationRadius+","+(maxX-visualisationRadius)+"]");
|
|
|
+ tfName.setText(newDevice.getName());
|
|
|
+
|
|
|
+ JLabel lblXposition = new JLabel(
|
|
|
+ "x-position: [" + visualisationRadius + "," + (maxX - visualisationRadius) + "]");
|
|
|
GridBagConstraints gbc_lblXposition = new GridBagConstraints();
|
|
|
gbc_lblXposition.anchor = GridBagConstraints.WEST;
|
|
|
gbc_lblXposition.insets = new Insets(0, 0, 5, 5);
|
|
|
gbc_lblXposition.gridx = 0;
|
|
|
gbc_lblXposition.gridy = 1;
|
|
|
panelGeneral.add(lblXposition, gbc_lblXposition);
|
|
|
-
|
|
|
+
|
|
|
tfXposition = new JTextField();
|
|
|
GridBagConstraints gbc_tfXposition = new GridBagConstraints();
|
|
|
gbc_tfXposition.anchor = GridBagConstraints.NORTHWEST;
|
|
@@ -132,17 +160,18 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
gbc_tfXposition.gridy = 1;
|
|
|
panelGeneral.add(tfXposition, gbc_tfXposition);
|
|
|
tfXposition.setColumns(10);
|
|
|
- tfXposition.setText(""+currentX);
|
|
|
- tfXposition.setInputVerifier(new IntegerInputValidator(visualisationRadius, maxX-visualisationRadius));
|
|
|
-
|
|
|
- JLabel lblYposition = new JLabel("y-position: ["+visualisationRadius+","+(maxY-visualisationRadius)+"]");
|
|
|
+ tfXposition.setText("" + newDevice.getX());
|
|
|
+ tfXposition.setInputVerifier(new IntegerInputValidator(visualisationRadius, maxX - visualisationRadius));
|
|
|
+
|
|
|
+ JLabel lblYposition = new JLabel(
|
|
|
+ "y-position: [" + visualisationRadius + "," + (maxY - visualisationRadius) + "]");
|
|
|
GridBagConstraints gbc_lblYposition = new GridBagConstraints();
|
|
|
gbc_lblYposition.anchor = GridBagConstraints.WEST;
|
|
|
gbc_lblYposition.insets = new Insets(0, 0, 5, 5);
|
|
|
gbc_lblYposition.gridx = 0;
|
|
|
gbc_lblYposition.gridy = 2;
|
|
|
panelGeneral.add(lblYposition, gbc_lblYposition);
|
|
|
-
|
|
|
+
|
|
|
tfYposition = new JTextField();
|
|
|
GridBagConstraints gbc_tfYposition = new GridBagConstraints();
|
|
|
gbc_tfYposition.anchor = GridBagConstraints.WEST;
|
|
@@ -151,79 +180,77 @@ public class SmartDeviceCreationPopUp extends JDialog {
|
|
|
gbc_tfYposition.gridy = 2;
|
|
|
panelGeneral.add(tfYposition, gbc_tfYposition);
|
|
|
tfYposition.setColumns(10);
|
|
|
- tfYposition.setText(""+currentY);
|
|
|
- tfYposition.setInputVerifier(new IntegerInputValidator(visualisationRadius, maxY-visualisationRadius));
|
|
|
-
|
|
|
+ tfYposition.setText("" + newDevice.getY());
|
|
|
+ tfYposition.setInputVerifier(new IntegerInputValidator(visualisationRadius, maxY - visualisationRadius));
|
|
|
+
|
|
|
JPanel panelLinks = new JPanel();
|
|
|
tabbedPane.addTab("Links", null, panelLinks, "Edit Links of the SmartDevice");
|
|
|
-
|
|
|
+
|
|
|
JPanel panelConnections = new JPanel();
|
|
|
tabbedPane.addTab("Connections", null, panelConnections, null);
|
|
|
-
|
|
|
+
|
|
|
JButton btnCreateDevice = new JButton("Verify & Create SmartDevice");
|
|
|
btnCreateDevice.addActionListener(a -> validateAndAddDevice());
|
|
|
getContentPane().add(btnCreateDevice, BorderLayout.SOUTH);
|
|
|
-
|
|
|
+
|
|
|
tabbedPane.setSelectedIndex(0);
|
|
|
-
|
|
|
- //Initialise current SmartDevice
|
|
|
- newDevice = new SmartDevice("SmartDevice");
|
|
|
- newDevice.setX(currentX);
|
|
|
- newDevice.setY(currentY);
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
- * Validate the input Fields, and add the new SmartDevice to the model and panel
|
|
|
+ * Validate the input Fields, and add the new SmartDevice to the model and
|
|
|
+ * panel
|
|
|
*/
|
|
|
- private void validateAndAddDevice(){
|
|
|
+ private void validateAndAddDevice() {
|
|
|
/**
|
|
|
* True if the user input is valid an the device can be created
|
|
|
*/
|
|
|
boolean valid = true;
|
|
|
- try{
|
|
|
+ try {
|
|
|
newDevice.setName(tfName.getText());
|
|
|
- //WhiteBackground if valid
|
|
|
+ // WhiteBackground if valid
|
|
|
tfName.setBackground(Color.WHITE);
|
|
|
- }catch(Exception e){
|
|
|
- //Red Background and false if not
|
|
|
- valid=false;
|
|
|
+ } catch (Exception e) {
|
|
|
+ // Red Background and false if not
|
|
|
+ valid = false;
|
|
|
tfName.setBackground(Color.RED);
|
|
|
}
|
|
|
- try{
|
|
|
+ try {
|
|
|
/**
|
|
|
* x-position entered by the user
|
|
|
*/
|
|
|
int x = Integer.parseInt(tfXposition.getText());
|
|
|
- //filter invalid positions
|
|
|
- if(x<visualisationRadius||maxX-visualisationRadius<x)
|
|
|
+ // filter invalid positions
|
|
|
+ if (x < visualisationRadius || maxX - visualisationRadius < x)
|
|
|
throw new NumberFormatException("Number not in bounds");
|
|
|
newDevice.setX(x);
|
|
|
tfXposition.setBackground(Color.WHITE);
|
|
|
- }catch(Exception e){
|
|
|
- valid=false;
|
|
|
+ } catch (Exception e) {
|
|
|
+ valid = false;
|
|
|
tfXposition.setBackground(Color.RED);
|
|
|
}
|
|
|
- try{
|
|
|
+ try {
|
|
|
/**
|
|
|
* y-position entered by the user
|
|
|
*/
|
|
|
int y = Integer.parseInt(tfYposition.getText());
|
|
|
- //filter invalid positions
|
|
|
- if(y<visualisationRadius||maxY-visualisationRadius<y)
|
|
|
+ // filter invalid positions
|
|
|
+ if (y < visualisationRadius || maxY - visualisationRadius < y)
|
|
|
throw new NumberFormatException("Number not in bounds");
|
|
|
newDevice.setY(y);
|
|
|
tfYposition.setBackground(Color.WHITE);
|
|
|
- }catch(Exception e){
|
|
|
- valid=false;
|
|
|
+ } catch (Exception e) {
|
|
|
+ valid = false;
|
|
|
tfYposition.setBackground(Color.RED);
|
|
|
}
|
|
|
- if(valid){
|
|
|
- //Add new Device, update Visualization and dispose the PopUp
|
|
|
- c.addSmartDevice(newDevice);
|
|
|
- p.repaint();
|
|
|
+ if (valid) {
|
|
|
+ if (edit == false) {
|
|
|
+ // Add new Device, update Visualization and dispose the PopUp
|
|
|
+ c.addSmartDevice(newDevice);
|
|
|
+
|
|
|
+ }
|
|
|
+ c.notifyObservers();
|
|
|
this.setVisible(false);
|
|
|
- this.dispose();
|
|
|
+ this.dispose();
|
|
|
}
|
|
|
}
|
|
|
}
|