|
@@ -11,6 +11,8 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.SimulationController;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.NetworkManipulationAlgorithm;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.NetworkManipulationAlgorithm;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.Utility;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.Utility;
|
|
|
|
|
|
|
|
+import java.awt.Container;
|
|
|
|
+
|
|
import javax.swing.JButton;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JLabel;
|
|
import javax.swing.JLabel;
|
|
|
|
|
|
@@ -49,8 +51,9 @@ public class EditAlgorithmsPopUp extends JDialog {
|
|
/**
|
|
/**
|
|
* Creates and shows a new EditAlgorithmPopUp
|
|
* Creates and shows a new EditAlgorithmPopUp
|
|
* @param controller controller
|
|
* @param controller controller
|
|
|
|
+ * @param parent parent container the location should be set relative to
|
|
*/
|
|
*/
|
|
- public EditAlgorithmsPopUp(Controller controller) {
|
|
|
|
|
|
+ public EditAlgorithmsPopUp(Controller controller, Container parent) {
|
|
this.controller = controller;
|
|
this.controller = controller;
|
|
this.sim = this.controller.getSimulationController();
|
|
this.sim = this.controller.getSimulationController();
|
|
this.setSize(400, 400);
|
|
this.setSize(400, 400);
|
|
@@ -181,6 +184,7 @@ public class EditAlgorithmsPopUp extends JDialog {
|
|
btnDown.setBounds(306, 42, 64, 25);
|
|
btnDown.setBounds(306, 42, 64, 25);
|
|
getContentPane().add(btnDown);
|
|
getContentPane().add(btnDown);
|
|
updateThis(null);
|
|
updateThis(null);
|
|
|
|
+ this.setLocationRelativeTo(parent);
|
|
this.setEnabled(true);
|
|
this.setEnabled(true);
|
|
this.setVisible(true);
|
|
this.setVisible(true);
|
|
}
|
|
}
|