mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
5cbd729214
#story[1293]
54 lines
2.2 KiB
XML
54 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?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" prefWidth="550.0" xmlns="http://javafx.com/javafx/8"
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
fx:controller="seng302.visualiser.controllers.dialogs.PopupDialogController">
|
|
<children>
|
|
<GridPane>
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308"/>
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints maxHeight="-Infinity" minHeight="30.0" prefHeight="30.0"
|
|
vgrow="SOMETIMES"/>
|
|
<RowConstraints maxHeight="1.7976931348623157E308" minHeight="80.0"
|
|
prefHeight="80.0" vgrow="SOMETIMES"/>
|
|
<RowConstraints minHeight="50.0" prefHeight="50.0" vgrow="SOMETIMES"/>
|
|
</rowConstraints>
|
|
<children>
|
|
<JFXButton fx:id="optionButton" buttonType="RAISED" prefHeight="55.0"
|
|
prefWidth="150.0" GridPane.halignment="RIGHT" GridPane.rowIndex="2"
|
|
GridPane.valignment="CENTER">
|
|
<GridPane.margin>
|
|
<Insets/>
|
|
</GridPane.margin>
|
|
</JFXButton>
|
|
<Label fx:id="contentLabel" text="Popup content goes here ..."
|
|
GridPane.rowIndex="1"/>
|
|
<Label fx:id="headerLabel" text="Popup header"/>
|
|
<Label fx:id="closeLabel" text="✖" translateY="-10.0" GridPane.halignment="RIGHT"/>
|
|
</children>
|
|
</GridPane>
|
|
</children>
|
|
<stylesheets>
|
|
<URL value="@../../css/dialogs/Popup.css"/>
|
|
<URL value="@../../css/Master.css"/>
|
|
</stylesheets>
|
|
</JFXDialogLayout>
|