IO-Ports Dummy
This commit is contained in:
BIN
libs/com.gluon/charm-glisten-4.4.1.jar
Normal file
BIN
libs/com.gluon/charm-glisten-4.4.1.jar
Normal file
Binary file not shown.
7
pom.xml
7
pom.xml
@ -45,6 +45,13 @@
|
||||
<artifactId>ikonli-javafx</artifactId>
|
||||
<version>12.3.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.gluonhq</groupId>
|
||||
<artifactId>charm-glisten</artifactId>
|
||||
<version>4.4.1</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${project.basedir}/libs/com.gluon/charm-glisten-4.4.1.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>eu.hansolo</groupId>
|
||||
<artifactId>tilesfx</artifactId>
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
package fabrik.simulator.pic16f84;
|
||||
|
||||
import com.gluonhq.charm.glisten.control.ToggleButtonGroup;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
|
||||
@ -23,7 +24,7 @@ import javafx.stage.Stage;
|
||||
import java.util.Arrays;
|
||||
|
||||
|
||||
public class Controller_FileSelect {
|
||||
public class Controller_Frontend {
|
||||
|
||||
private int [] prog;
|
||||
|
||||
@ -74,10 +75,6 @@ public class Controller_FileSelect {
|
||||
System.out.println(Arrays.toString(Arrays.stream(prog).toArray()));
|
||||
displayLSTFileContent(selectedFile);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
private File chooseLSTFile() {
|
||||
@ -106,7 +103,48 @@ public class Controller_FileSelect {
|
||||
}
|
||||
}
|
||||
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA0;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA1;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA2;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA3;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA4;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA5;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA6;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgA7;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB0;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB1;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB2;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB3;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB4;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB5;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB6;
|
||||
@FXML
|
||||
private ToggleButtonGroup bgB7;
|
||||
|
||||
|
||||
public void initialize() {
|
||||
ToggleButtonGroup [] allButtons = {bgA0, bgA1, bgA2, bgA3, bgA4, bgA5, bgA6, bgA7, bgB0, bgB1, bgB2, bgB3, bgB4, bgB5, bgB6, bgB7};
|
||||
for (int i = 0; i<16; i++) {
|
||||
// GEHT NICHT
|
||||
ToggleButtonGroupExt.get().addAlwaysOneSelectedSupport(allButtons[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -1,5 +0,0 @@
|
||||
package fabrik.simulator.pic16f84;
|
||||
|
||||
public class Controller_MainBody {
|
||||
|
||||
}
|
||||
@ -0,0 +1,46 @@
|
||||
package fabrik.simulator.pic16f84;
|
||||
|
||||
import com.gluonhq.charm.glisten.control.ToggleButtonGroup;
|
||||
import javafx.collections.ListChangeListener;
|
||||
import javafx.event.EventHandler;
|
||||
import javafx.scene.control.Toggle;
|
||||
import javafx.scene.control.ToggleButton;
|
||||
import javafx.scene.input.MouseEvent;
|
||||
|
||||
public class ToggleButtonGroupExt {
|
||||
private static ToggleButtonGroupExt me;
|
||||
|
||||
private ToggleButtonGroupExt() {
|
||||
}
|
||||
|
||||
public static ToggleButtonGroupExt get() {
|
||||
if (me == null) {
|
||||
me = new ToggleButtonGroupExt();
|
||||
}
|
||||
return me;
|
||||
}
|
||||
|
||||
|
||||
public void addAlwaysOneSelectedSupport(final ToggleButtonGroup toggleGroup) {
|
||||
toggleGroup.getToggles().addListener((ListChangeListener.Change<? extends Toggle> c) -> {
|
||||
while (c.next()) {
|
||||
for (final Toggle addedToggle : c.getAddedSubList()) {
|
||||
addConsumeMouseEventfilter(addedToggle);
|
||||
}
|
||||
}
|
||||
});
|
||||
toggleGroup.getToggles().forEach(this::addConsumeMouseEventfilter);
|
||||
}
|
||||
|
||||
private void addConsumeMouseEventfilter(Toggle toggle) {
|
||||
((ToggleButton) toggle).addEventFilter(MouseEvent.MOUSE_PRESSED, consumeMouseEventfilter);
|
||||
((ToggleButton) toggle).addEventFilter(MouseEvent.MOUSE_RELEASED, consumeMouseEventfilter);
|
||||
((ToggleButton) toggle).addEventFilter(MouseEvent.MOUSE_CLICKED, consumeMouseEventfilter);
|
||||
}
|
||||
|
||||
public EventHandler<MouseEvent> consumeMouseEventfilter = (MouseEvent mouseEvent) -> {
|
||||
if (((Toggle) mouseEvent.getSource()).isSelected()) {
|
||||
mouseEvent.consume();
|
||||
}
|
||||
};
|
||||
}
|
||||
@ -6,6 +6,7 @@ module fabrik.simulator.pic16f84 {
|
||||
requires org.controlsfx.controls;
|
||||
requires org.kordamp.ikonli.javafx;
|
||||
requires eu.hansolo.tilesfx;
|
||||
requires charm.glisten;
|
||||
|
||||
opens fabrik.simulator.pic16f84 to javafx.fxml;
|
||||
exports fabrik.simulator.pic16f84;
|
||||
|
||||
@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
<AnchorPane prefHeight="500.0" prefWidth="500.0" xmlns="http://javafx.com/javafx/17.0.2-ea"
|
||||
xmlns:fx="http://javafx.com/fxml/1" fx:controller="fabrik.simulator.pic16f84.Controller_FileSelect">
|
||||
<VBox alignment="CENTER" prefHeight="500.0" prefWidth="500.0" AnchorPane.bottomAnchor="0.0"
|
||||
AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
|
||||
<Label text="Willkommen beim PIC-Simulator!" textAlignment="CENTER">
|
||||
<padding>
|
||||
<Insets bottom="10.0"/>
|
||||
</padding>
|
||||
<VBox.margin>
|
||||
<Insets bottom="10.0"/>
|
||||
</VBox.margin>
|
||||
</Label>
|
||||
<Button mnemonicParsing="false" onAction="#selectFileLST" text="Datei auswählen!"/>
|
||||
</VBox>
|
||||
</AnchorPane>
|
||||
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
|
||||
|
||||
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/17.0.2-ea"
|
||||
xmlns:fx="http://javafx.com/fxml/1" fx:controller="fabrik.simulator.pic16f84.Controller_MainBody">
|
||||
<VBox alignment="CENTER" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0"
|
||||
AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Hauptseite"/>
|
||||
</VBox>
|
||||
</AnchorPane>
|
||||
@ -1,11 +1,674 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import com.gluonhq.charm.glisten.control.ToggleButtonGroup?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import javafx.scene.control.Button?>
|
||||
<?import javafx.scene.control.Menu?>
|
||||
<?import javafx.scene.control.MenuBar?>
|
||||
<?import javafx.scene.control.MenuItem?>
|
||||
<?import javafx.scene.control.SeparatorMenuItem?>
|
||||
<?import javafx.scene.control.TextArea?>
|
||||
<?import javafx.scene.control.ToggleButton?>
|
||||
<?import javafx.scene.effect.Blend?>
|
||||
<?import javafx.scene.layout.AnchorPane?>
|
||||
<?import javafx.scene.layout.ColumnConstraints?>
|
||||
<?import javafx.scene.layout.GridPane?>
|
||||
<?import javafx.scene.layout.HBox?>
|
||||
<?import javafx.scene.layout.RowConstraints?>
|
||||
<?import javafx.scene.layout.VBox?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
<?import javafx.scene.text.Text?>
|
||||
|
||||
<VBox prefHeight="1400.0" prefWidth="1440.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fabrik.simulator.pic16f84.Controller_FileSelect">
|
||||
<children>
|
||||
<MenuBar prefHeight="26.0" prefWidth="673.0" VBox.vgrow="NEVER">
|
||||
<AnchorPane xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fabrik.simulator.pic16f84.Controller_Frontend">
|
||||
<children>
|
||||
|
||||
<TextArea fx:id="lstContentLabel" editable="false" layoutX="41.0" layoutY="128.0" prefHeight="653.0" prefWidth="758.0" wrapText="true" />
|
||||
<Button fx:id="stepintoButton" layoutX="42.0" layoutY="78.0" mnemonicParsing="false" onAction="#stepintoButton" text="Step IN" />
|
||||
<HBox layoutX="807.0" layoutY="134.0" prefHeight="293.0" prefWidth="701.0">
|
||||
<children>
|
||||
<GridPane alignment="CENTER" gridLinesVisible="true" prefHeight="273.0" prefWidth="687.0">
|
||||
<columnConstraints>
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="70.0" minWidth="10.0" prefWidth="53.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="98.0" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
<ColumnConstraints hgrow="SOMETIMES" minWidth="-Infinity" prefWidth="80.0" />
|
||||
</columnConstraints>
|
||||
<rowConstraints>
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||
</rowConstraints>
|
||||
<effect>
|
||||
<Blend />
|
||||
</effect>
|
||||
<children>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="RA">
|
||||
<font>
|
||||
<Font size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="5">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="132.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="1">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="7">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="6">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="3" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA5">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="230.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="4">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="4">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="304.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="3">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="378.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="6">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="2">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="452.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="7">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="1">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="526.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="8">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="TRIS">
|
||||
<font>
|
||||
<Font size="15.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="56.0" prefHeight="200.0" prefWidth="100.0" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="PORT">
|
||||
<font>
|
||||
<Font size="15.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="217.0" layoutY="56.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA7">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="2" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA6">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="4" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA4">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="5" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA3">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="6" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA2">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="7" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA1">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" GridPane.columnIndex="8" GridPane.rowIndex="1">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgA0">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="RB">
|
||||
<font>
|
||||
<Font size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="3" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="5">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="1" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="7">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="2" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="6">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="4" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="4">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="5" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="3">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="6" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="2">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="7" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="1">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="8" GridPane.rowIndex="3">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0">
|
||||
<font>
|
||||
<Font name="System Italic" size="20.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="56.0" prefHeight="200.0" prefWidth="100.0" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="TRIS">
|
||||
<font>
|
||||
<Font size="15.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="PORT">
|
||||
<font>
|
||||
<Font size="15.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="217.0" layoutY="56.0" GridPane.columnIndex="1" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB7">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="57.0" layoutY="56.0" GridPane.columnIndex="8" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB0">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="137.0" layoutY="56.0" GridPane.columnIndex="7" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB1">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="297.0" layoutY="56.0" GridPane.columnIndex="6" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB2">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="377.0" layoutY="56.0" GridPane.columnIndex="5" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB3">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="457.0" layoutY="56.0" GridPane.columnIndex="4" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB4">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="537.0" layoutY="56.0" GridPane.columnIndex="3" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB5">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="617.0" layoutY="56.0" GridPane.columnIndex="2" GridPane.rowIndex="4">
|
||||
<children>
|
||||
<ToggleButtonGroup prefHeight="30.0" prefWidth="39.0" selectionType="SINGLE" fx:id="bgB6">
|
||||
<toggles>
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" selected="true" text="I" />
|
||||
<ToggleButton contentDisplay="CENTER" minWidth="30.0" prefHeight="30.0" prefWidth="30.0" text="O">
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButton>
|
||||
</toggles>
|
||||
<padding>
|
||||
<Insets left="5.0" />
|
||||
</padding>
|
||||
</ToggleButtonGroup>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="57.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="57.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="8" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="4" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="3" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="2" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="617.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="6" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="10.0" layoutY="10.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="5" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="457.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="7" GridPane.rowIndex="2">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="617.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="8" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="297.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="7" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="217.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="6" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="137.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="5" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="457.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="4" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="377.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="3" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" layoutX="537.0" layoutY="102.0" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="2" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" GridPane.columnIndex="1" GridPane.rowIndex="5">
|
||||
<children>
|
||||
<Text nodeOrientation="LEFT_TO_RIGHT" strokeType="OUTSIDE" strokeWidth="0.0" text="0" textAlignment="CENTER">
|
||||
<font>
|
||||
<Font name="System Bold" size="23.0" />
|
||||
</font>
|
||||
</Text>
|
||||
</children>
|
||||
</VBox>
|
||||
</children>
|
||||
</GridPane>
|
||||
</children>
|
||||
</HBox>
|
||||
<MenuBar prefHeight="31.0" prefWidth="1522.0" AnchorPane.bottomAnchor="1465.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||
<menus>
|
||||
<Menu mnemonicParsing="false" text="File">
|
||||
<items>
|
||||
@ -44,24 +707,5 @@
|
||||
</Menu>
|
||||
</menus>
|
||||
</MenuBar>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" VBox.vgrow="ALWAYS">
|
||||
<children>
|
||||
|
||||
<TextArea fx:id="lstContentLabel" editable="false" layoutX="282.0" layoutY="498.0" prefHeight="189.0" prefWidth="547.0" wrapText="true"/>
|
||||
<Button fx:id="stepintoButton" layoutX="111.0" layoutY="321.0" mnemonicParsing="false" text="Step IN" onAction="#stepintoButton" />
|
||||
</children>
|
||||
</AnchorPane>
|
||||
</children>
|
||||
|
||||
|
||||
</VBox>
|
||||
|
||||
|
||||
|
||||
|
||||
</children>
|
||||
</AnchorPane>
|
||||
|
||||
Reference in New Issue
Block a user