mirror of
https://github.com/yasuhirokimura/db18
synced 2026-06-08 18:29:23 +00:00
21 lines
1.8 KiB
XML
21 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.Separator?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
<AnchorPane id="DbCompact" prefHeight="300.0" prefWidth="786.0" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" fx:controller="db_gui.dbpage.DatabaseCompactController">
|
|
<children>
|
|
<Separator layoutY="124.0" prefHeight="0.0" prefWidth="786.0" />
|
|
<Label layoutX="644.0" layoutY="6.0" text="Required Configurations" />
|
|
<Label layoutX="644.0" layoutY="127.0" text="Optional Configurations" />
|
|
<Label accessibleHelp="Label for the text box for selecting a database file." accessibleText="Database File Label" layoutX="14.0" layoutY="45.0" text="Database File" />
|
|
<TextField fx:id="DatabaseFileTextField" accessibleHelp="Shows the selected database file." accessibleText="Datbase file text box" layoutX="96.0" layoutY="41.0" />
|
|
<Button accessibleHelp="Press this button to browse and select a database file to compact." accessibleText="Browse database files button." layoutX="193.0" layoutY="80.0" mnemonicParsing="false" onAction="#selectDatabaseFile" text="Browse" />
|
|
<Button fx:id="CompactButton" accessibleHelp="Press this button to compact the database selected in the database file text box." accessibleText="Compact button" layoutX="652.0" layoutY="261.0" mnemonicParsing="false" onAction="#handleCompactDatabaseButton" text="Compact" />
|
|
<Button fx:id="ClearButton" accessibleHelp="Clear all selections." accessibleText="Clear button" layoutX="730.0" layoutY="261.0" mnemonicParsing="false" onAction="#clearAllFields" text="Clear" />
|
|
</children>
|
|
</AnchorPane>
|