|
@@ -10,6 +10,8 @@ import javax.swing.JDialog;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JPanel;
|
|
import javax.swing.border.EmptyBorder;
|
|
import javax.swing.border.EmptyBorder;
|
|
|
|
|
|
|
|
+import ui.controller.Control;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* This Class represents a Popup to edit the shown Information.
|
|
* This Class represents a Popup to edit the shown Information.
|
|
*
|
|
*
|
|
@@ -21,6 +23,7 @@ public class ShowedInformationPopUp extends JDialog {
|
|
private final JPanel contentPanel = new JPanel();
|
|
private final JPanel contentPanel = new JPanel();
|
|
private final JButton btnOk = new JButton("OK");
|
|
private final JButton btnOk = new JButton("OK");
|
|
private MyCanvas canvas;
|
|
private MyCanvas canvas;
|
|
|
|
+ private Control controller;
|
|
private JCheckBox objectEnergyCheckbox;
|
|
private JCheckBox objectEnergyCheckbox;
|
|
private JCheckBox connectionCheckbox;
|
|
private JCheckBox connectionCheckbox;
|
|
private JCheckBox colorizedBorderCheckbox;
|
|
private JCheckBox colorizedBorderCheckbox;
|
|
@@ -33,17 +36,18 @@ public class ShowedInformationPopUp extends JDialog {
|
|
* @param canvas
|
|
* @param canvas
|
|
* the Canvas
|
|
* the Canvas
|
|
*/
|
|
*/
|
|
- public ShowedInformationPopUp(MyCanvas canvas, JPanel update) {
|
|
|
|
|
|
+ public ShowedInformationPopUp(MyCanvas canvas, JPanel update, Control cont) {
|
|
super((java.awt.Frame) null, true);
|
|
super((java.awt.Frame) null, true);
|
|
setModalityType(java.awt.Dialog.ModalityType.APPLICATION_MODAL);
|
|
setModalityType(java.awt.Dialog.ModalityType.APPLICATION_MODAL);
|
|
this.setTitle(Languages.getLanguage()[31]);
|
|
this.setTitle(Languages.getLanguage()[31]);
|
|
- setBounds(100, 100, 400, 254);
|
|
|
|
|
|
+ setBounds(100, 100, 400, 276);
|
|
getContentPane().setLayout(new BorderLayout());
|
|
getContentPane().setLayout(new BorderLayout());
|
|
contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
|
|
contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
|
|
getContentPane().add(contentPanel, BorderLayout.CENTER);
|
|
getContentPane().add(contentPanel, BorderLayout.CENTER);
|
|
contentPanel.setLayout(null);
|
|
contentPanel.setLayout(null);
|
|
this.canvas = canvas;
|
|
this.canvas = canvas;
|
|
this.toUpdate = update;
|
|
this.toUpdate = update;
|
|
|
|
+ controller = cont;
|
|
|
|
|
|
objectEnergyCheckbox = new JCheckBox(Languages.getLanguage()[32]);
|
|
objectEnergyCheckbox = new JCheckBox(Languages.getLanguage()[32]);
|
|
objectEnergyCheckbox.setBounds(19, 19, 300, 23);
|
|
objectEnergyCheckbox.setBounds(19, 19, 300, 23);
|
|
@@ -59,6 +63,7 @@ public class ShowedInformationPopUp extends JDialog {
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
public void actionPerformed(ActionEvent arg0) {
|
|
setInformation(connectionCheckbox.isSelected(), objectEnergyCheckbox.isSelected(),
|
|
setInformation(connectionCheckbox.isSelected(), objectEnergyCheckbox.isSelected(),
|
|
colorizedBorderCheckbox.isSelected(), nodeOfnodeConnectionCheckbox.isSelected());
|
|
colorizedBorderCheckbox.isSelected(), nodeOfnodeConnectionCheckbox.isSelected());
|
|
|
|
+ controller.getSimManager().getFlexiblePane().recalculate();
|
|
dispose();
|
|
dispose();
|
|
}
|
|
}
|
|
});
|
|
});
|