Initial commit...

This commit is contained in:
2021-02-18 17:45:52 -06:00
parent dc3906fa9b
commit 1180e3171f
2159 changed files with 45470 additions and 2 deletions

Binary file not shown.

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="650.0" minWidth="350.0" prefHeight="650.0" prefWidth="350.0" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<ListView fx:id="pathListView" editable="true" layoutX="14.0" layoutY="92.0" prefHeight="543.0" prefWidth="320.0" AnchorPane.bottomAnchor="15.0" AnchorPane.leftAnchor="15.0" AnchorPane.rightAnchor="15.0" AnchorPane.topAnchor="100.0" />
<TextField fx:id="newEntry" layoutX="14.0" layoutY="14.0" onKeyReleased="#addEntryEnter" AnchorPane.leftAnchor="15.0" AnchorPane.rightAnchor="15.0" AnchorPane.topAnchor="15.0" />
<Button layoutX="64.0" layoutY="62.0" mnemonicParsing="false" onAction="#addEntryBttn" text="Add" AnchorPane.leftAnchor="15.0" AnchorPane.topAnchor="60.0" />
<Button layoutX="235.0" layoutY="60.0" mnemonicParsing="false" onAction="#delEntry" text="Delete" AnchorPane.rightAnchor="15.0" AnchorPane.topAnchor="60.0" />
<Button layoutX="204.0" layoutY="60.0" mnemonicParsing="false" onAction="#saveEnteriesToPATH" text="Save" AnchorPane.rightAnchor="85.0" AnchorPane.topAnchor="60.0" />
<Button layoutX="72.0" layoutY="60.0" mnemonicParsing="false" onAction="#addBack" text="Undo" AnchorPane.leftAnchor="65.0" AnchorPane.topAnchor="60.0" />
</children>
</AnchorPane>