mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
b9a2d60115
#story[1273]
79 lines
3.5 KiB
XML
79 lines
3.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.text.*?>
|
|
<?import com.jfoenix.controls.*?>
|
|
<?import java.lang.*?>
|
|
<?import java.net.*?>
|
|
<?import javafx.geometry.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import com.jfoenix.controls.JFXButton?>
|
|
<?import com.jfoenix.controls.JFXDialogLayout?>
|
|
<?import java.net.URL?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
|
|
<JFXDialogLayout maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
|
|
minWidth="-Infinity" prefHeight="273.0" prefWidth="436.0" xmlns="http://javafx.com/javafx/8"
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
fx:controller="seng302.visualiser.controllers.dialogs.TokenInfoDialogController">
|
|
<children>
|
|
<GridPane>
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308"/>
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="40.0" minHeight="30.0" prefHeight="40.0"
|
|
vgrow="SOMETIMES"/>
|
|
<RowConstraints maxHeight="1.7976931348623157E308" minHeight="80.0"
|
|
prefHeight="115.0" vgrow="SOMETIMES"/>
|
|
<RowConstraints maxHeight="141.0" minHeight="34.0" prefHeight="73.0"
|
|
vgrow="SOMETIMES"/>
|
|
</rowConstraints>
|
|
<children>
|
|
<JFXButton fx:id="optionButton" buttonType="RAISED" prefHeight="55.0"
|
|
prefWidth="150.0" text="Ok" GridPane.halignment="CENTER" GridPane.rowIndex="2"
|
|
GridPane.valignment="CENTER">
|
|
<GridPane.margin>
|
|
<Insets/>
|
|
</GridPane.margin>
|
|
</JFXButton>
|
|
<Label fx:id="headerLabel" text="Popup header" GridPane.halignment="CENTER">
|
|
<font>
|
|
<Font size="15.0"/>
|
|
</font>
|
|
</Label>
|
|
<GridPane GridPane.rowIndex="1">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="270.0" minWidth="10.0"
|
|
prefWidth="270.0"/>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="225.0" minWidth="-Infinity"
|
|
prefWidth="138.0"/>
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints minHeight="10.0" prefHeight="100.0" vgrow="SOMETIMES"/>
|
|
</rowConstraints>
|
|
<children>
|
|
<Pane fx:id="tokenPane" prefHeight="200.0" prefWidth="200.0"
|
|
GridPane.columnIndex="1"/>
|
|
<TextArea fx:id="contentText" nodeOrientation="RIGHT_TO_LEFT"
|
|
prefHeight="200.0" prefWidth="200.0" promptText="This is some text"
|
|
stylesheets="@../../css/TokenInfoDialog.css" wrapText="true">
|
|
<font>
|
|
<Font size="16.0"/>
|
|
</font>
|
|
</TextArea>
|
|
</children>
|
|
</GridPane>
|
|
</children>
|
|
</GridPane>
|
|
</children>
|
|
<stylesheets>
|
|
<URL value="@../../css/dialogs/Popup.css"/>
|
|
<URL value="@../../css/Master.css"/>
|
|
</stylesheets>
|
|
</JFXDialogLayout>
|