Browse Source

Adds first version of LinkCreationPanel

Andreas T. Meyer-Berg 6 năm trước cách đây
mục cha
commit
6d53a93d3a

+ 133 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/LinkCreationPanel.java

@@ -0,0 +1,133 @@
+package de.tu_darmstadt.tk.SmartHomeNetworkSim.view;
+
+import java.awt.Dimension;
+import java.util.LinkedList;
+
+import javax.swing.JFrame;
+
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Link;
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SmartDevice;
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.simpleImplementation.SimpleLink;
+
+import javax.swing.JPanel;
+import javax.swing.JLabel;
+import javax.swing.JScrollPane;
+import javax.swing.ScrollPaneConstants;
+import javax.swing.JTextField;
+import javax.swing.SwingConstants;
+import javax.swing.JComboBox;
+import javax.swing.JButton;
+
+@SuppressWarnings("serial")
+public class LinkCreationPanel extends JScrollPane{
+	
+	JPanel content;
+	private JTextField tfName;
+	public LinkCreationPanel() {
+		setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
+		this.setPreferredSize(new Dimension(600, 400));
+		content = new JPanel();
+		content.setPreferredSize(new Dimension(600,1000));
+		this.setViewportView(content);
+		content.setLayout(null);
+		
+		JLabel lblDescription = new JLabel("Create a new Link");
+		lblDescription.setBounds(12, 13, 476, 16);
+		content.add(lblDescription);
+		
+		JLabel lblName = new JLabel("Name:");
+		lblName.setHorizontalAlignment(SwingConstants.RIGHT);
+		lblName.setBounds(12, 42, 138, 16);
+		content.add(lblName);
+		
+		tfName = new JTextField();
+		tfName.setText("LinkName");
+		tfName.setBounds(162, 39, 116, 22);
+		content.add(tfName);
+		tfName.setColumns(10);
+		
+		JLabel lblLinkType = new JLabel("Type:");
+		lblLinkType.setHorizontalAlignment(SwingConstants.RIGHT);
+		lblLinkType.setBounds(12, 71, 138, 16);
+		content.add(lblLinkType);
+		
+		JComboBox<String> cmbLinkType = new JComboBox<String>();
+		cmbLinkType.addItem("SimpleLink");
+		cmbLinkType.addItem("ZigbeeNetwork");
+		cmbLinkType.setBounds(162, 68, 116, 22);
+		content.add(cmbLinkType);
+		
+		content.setPreferredSize(new Dimension(500,1000));
+		
+		JButton btnImportLink = new JButton("Import Link Type");
+		btnImportLink.setBounds(290, 67, 144, 25);
+		content.add(btnImportLink);
+		
+		JButton btnCreate = new JButton("Verify and Create");
+		btnCreate.setBounds(121, 103, 206, 25);
+		content.add(btnCreate);
+		
+		JLabel lblDeviceA = new JLabel("DeviceA:");
+		lblDeviceA.setHorizontalAlignment(SwingConstants.RIGHT);
+		lblDeviceA.setBounds(12, 141, 138, 16);
+		content.add(lblDeviceA);
+		
+		JLabel lblDeviceb = new JLabel("DeviceB:");
+		lblDeviceb.setHorizontalAlignment(SwingConstants.RIGHT);
+		lblDeviceb.setBounds(12, 170, 138, 16);
+		content.add(lblDeviceb);
+		
+		JLabel lblDeviceC = new JLabel("DeviceC:");
+		lblDeviceC.setHorizontalAlignment(SwingConstants.RIGHT);
+		lblDeviceC.setBounds(12, 199, 138, 16);
+		content.add(lblDeviceC);
+		
+		JComboBox<String> comboBox = new JComboBox<String>();
+		comboBox.addItem("Router");
+		comboBox.addItem("Client");
+		comboBox.addItem("not participating");
+		comboBox.setBounds(162, 138, 165, 22);
+		content.add(comboBox);
+		
+		JComboBox<String> comboBox_1 = new JComboBox<String>();
+		comboBox_1.addItem("Router");
+		comboBox_1.addItem("Client");
+		comboBox_1.addItem("not participating");
+		comboBox_1.setBounds(162, 167, 165, 22);
+		content.add(comboBox_1);
+		
+		JComboBox<String> comboBox_2 = new JComboBox<String>();
+		comboBox_2.addItem("Router");
+		comboBox_2.addItem("Client");
+		comboBox_2.addItem("not participating");
+		comboBox_2.setBounds(162, 196, 165, 22);
+		content.add(comboBox_2);
+	}
+
+	
+	 /**
+     * Test the Panel
+     */
+    private static void testGUI() {
+        JFrame frame = new JFrame("LinkCreation Panel");
+        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+        SmartDevice test = new SmartDevice("TestDevice");
+        LinkedList<SmartDevice> devicesOfLink = new LinkedList<SmartDevice>();
+        devicesOfLink.add(test);
+        Link testNet = new SimpleLink("Test Network");
+        testNet.addDevice(test);
+        LinkCreationPanel panel = new LinkCreationPanel();
+        frame.setContentPane(panel);
+        frame.pack();
+        frame.setVisible(true);
+    }
+
+ 
+    public static void main(String[] args) {
+        javax.swing.SwingUtilities.invokeLater(new Runnable() {
+            public void run() {
+                testGUI();
+            }
+        });
+    }
+}

+ 67 - 38
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/VisualisationInteractor.java

@@ -9,6 +9,7 @@ import java.awt.event.MouseEvent;
 import java.awt.event.MouseMotionListener;
 import java.util.LinkedList;
 
+import javax.swing.JFrame;
 import javax.swing.JMenuItem;
 import javax.swing.JPopupMenu;
 import javax.swing.event.MouseInputListener;
@@ -59,6 +60,11 @@ public class VisualisationInteractor implements MouseInputListener,
 	 */
 	private JMenuItem itemCreate;
 
+	/**
+	 * RightClick MenuItem for Link creation
+	 */
+	private JMenuItem itemCreateLink;
+
 	/**
 	 * RightClick MenuItem for SmartDevice deletion
 	 */
@@ -128,6 +134,7 @@ public class VisualisationInteractor implements MouseInputListener,
 	 * True if the ControlKey is currently pressed
 	 */
 	public boolean controlDown = false;
+
 	/**
 	 * Creates a new VisualisationInteractor
 	 *
@@ -333,44 +340,6 @@ public class VisualisationInteractor implements MouseInputListener,
 		if (mode == SELECTED_DRAG || mode == DRAG_CONNECTION || mode == DRAG_SELECT)
 			panel.repaint();
 	}
-
-	/**
-	 * Shows the RightClick Menu on the Visualization Panel, with Options for
-	 * the given SmartDevice clickedOn, if clickedOn is null, the RightClick
-	 * Menu contains Options for creation of new SmartDevices. The Menu will be
-	 * shown at the Mouse position on the VisualisationPanel.
-	 * 
-	 * @param clickedOn
-	 *            Device which was clicked, null if no
-	 */
-	protected void showRightClickMenu(SmartDevice clickedOn) {
-		/**
-		 * Mouse Position on the VisualisationPanel
-		 */
-		Point mousePos = panel.getMousePosition();
-		// Just execute if Mouse Position is on the Panel
-		if (mousePos != null) {
-			if (clickedOn == null) {
-				itemCreate.setText("Create Device");
-				itemCreate.setEnabled(true);
-				itemDelete.setEnabled(false);
-				itemDeleteSelected.setEnabled(false);
-			} else {
-				itemCreate.setText("Edit Device");
-				itemCreate.setEnabled(true);
-				itemDelete.setEnabled(true);
-				if(selectedDevices.contains(clickedOn))
-					itemDeleteSelected.setEnabled(true);
-				else
-					itemDeleteSelected.setEnabled(false);
-			}
-			// Show the RightClickMenu
-			rightClickMenu.show(panel, mousePos.x, mousePos.y);
-			rightClickMenu.setEnabled(true);
-			rightClickMenu.setVisible(true);
-			mode = RIGHTCLICK_MENU;
-		}
-	}
 	
 	/**
 	 * Finishes the drag operation, if a SmartDevice was dragged, repaint the
@@ -517,6 +486,47 @@ public class VisualisationInteractor implements MouseInputListener,
 	@Override
 	public void actionPerformed(ActionEvent e) {}
 	
+	/**
+	 * Shows the RightClick Menu on the Visualization Panel, with Options for
+	 * the given SmartDevice clickedOn, if clickedOn is null, the RightClick
+	 * Menu contains Options for creation of new SmartDevices. The Menu will be
+	 * shown at the Mouse position on the VisualisationPanel.
+	 * 
+	 * @param clickedOn
+	 *            Device which was clicked, null if no
+	 */
+	protected void showRightClickMenu(SmartDevice clickedOn) {
+		/**
+		 * Mouse Position on the VisualisationPanel
+		 */
+		Point mousePos = panel.getMousePosition();
+		// Just execute if Mouse Position is on the Panel
+		if (mousePos != null) {
+			if (clickedOn == null) {
+				itemCreate.setText("Create Device");
+				itemCreate.setEnabled(true);
+				itemDelete.setEnabled(false);
+				itemDeleteSelected.setEnabled(false);
+			} else {
+				itemCreate.setText("Edit Device");
+				itemCreate.setEnabled(true);
+				itemDelete.setEnabled(true);
+				if(selectedDevices.contains(clickedOn)){
+					itemDeleteSelected.setEnabled(true);
+					itemCreateLink.setEnabled(true);
+				}
+				else{
+					itemDeleteSelected.setEnabled(false);
+					itemCreateLink.setEnabled(false);
+				}
+			}
+			// Show the RightClickMenu
+			rightClickMenu.show(panel, mousePos.x, mousePos.y);
+			rightClickMenu.setEnabled(true);
+			rightClickMenu.setVisible(true);
+			mode = RIGHTCLICK_MENU;
+		}
+	}
 
 	/**
 	 * Creates the RightClickMenu, adds the different Labels and functionalities to the menu and adds it to the panel.
@@ -545,6 +555,25 @@ public class VisualisationInteractor implements MouseInputListener,
 		});
 
 		rightClickMenu.add(itemCreate);
+		
+		
+		// Create Link
+		itemCreateLink = new JMenuItem("Create Link");
+		
+		itemCreateLink.addActionListener(e -> {
+			JFrame frame = new JFrame("LinkCreation Panel");
+	        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+	        //frame.set
+	        LinkCreationPanel panel = new LinkCreationPanel();
+	        frame.setContentPane(panel);
+	        frame.setLocationRelativeTo(panel);
+	        frame.pack();
+	        frame.setVisible(true);
+	        mode = NOTHING;
+			
+		});
+		
+		rightClickMenu.add(itemCreateLink);
 
 		// Delete device option
 		itemDelete = new JMenuItem("Delete");