|
@@ -15,6 +15,9 @@ import de.tu_darmstadt.informatik.tk.scopviz.ui.mapView.WorldView;
|
|
import javafx.beans.value.ObservableValue;
|
|
import javafx.beans.value.ObservableValue;
|
|
import javafx.event.ActionEvent;
|
|
import javafx.event.ActionEvent;
|
|
import javafx.scene.control.Button;
|
|
import javafx.scene.control.Button;
|
|
|
|
+import javafx.scene.control.TableRow;
|
|
|
|
+import javafx.scene.control.TableView;
|
|
|
|
+import javafx.util.Callback;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Manager to contain the various handlers for the buttons of the UI.
|
|
* Manager to contain the various handlers for the buttons of the UI.
|
|
@@ -184,7 +187,7 @@ public final class ButtonManager {
|
|
|
|
|
|
// make properties uneditable
|
|
// make properties uneditable
|
|
controller.propertiesObjectColumn.setEditable(false);
|
|
controller.propertiesObjectColumn.setEditable(false);
|
|
-
|
|
|
|
|
|
+
|
|
// make map view non mouse transparent
|
|
// make map view non mouse transparent
|
|
controller.stackPane.setMouseTransparent(false);
|
|
controller.stackPane.setMouseTransparent(false);
|
|
controller.swingNodeWorldView.setMouseTransparent(false);
|
|
controller.swingNodeWorldView.setMouseTransparent(false);
|
|
@@ -216,7 +219,7 @@ public final class ButtonManager {
|
|
* @param newVal
|
|
* @param newVal
|
|
* Checkbox current state (Checked or unchecked)
|
|
* Checkbox current state (Checked or unchecked)
|
|
*/
|
|
*/
|
|
- public static void edgeVisibleSwitch(ObservableValue<? extends Boolean> ov, Boolean oldVal, Boolean newVal) {
|
|
|
|
|
|
+ public static void edgeVisibilitySwitcher(ObservableValue<? extends Boolean> ov, Boolean oldVal, Boolean newVal) {
|
|
// Show edges
|
|
// Show edges
|
|
if (newVal) {
|
|
if (newVal) {
|
|
WorldView.edgePainter.setShowEdges(true);
|
|
WorldView.edgePainter.setShowEdges(true);
|