|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<?import java.net.URL?> |
| 4 | +<?import javafx.geometry.Insets?> |
| 5 | +<?import javafx.scene.control.Label?> |
| 6 | +<?import javafx.scene.image.Image?> |
| 7 | +<?import javafx.scene.image.ImageView?> |
| 8 | +<?import javafx.scene.layout.HBox?> |
| 9 | +<?import javafx.scene.layout.Pane?> |
| 10 | +<?import javafx.scene.layout.StackPane?> |
| 11 | +<?import javafx.scene.layout.VBox?> |
| 12 | +<?import javafx.scene.text.Font?> |
| 13 | + |
| 14 | +<VBox fx:id="root" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="330.0" prefWidth="600.0" styleClass="about-window" stylesheets="@GRIP.css" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="edu.wpi.grip.ui.AboutDialogController"> |
| 15 | + <children> |
| 16 | + <Pane VBox.vgrow="ALWAYS" /> |
| 17 | + <HBox> |
| 18 | + <children> |
| 19 | + <Pane HBox.hgrow="ALWAYS" /> |
| 20 | + <ImageView fitHeight="156.0" fitWidth="156.0" pickOnBounds="true" preserveRatio="true"> |
| 21 | + <image> |
| 22 | + <Image url="@icons/grip.png" /> |
| 23 | + </image> |
| 24 | + </ImageView> |
| 25 | + <Pane HBox.hgrow="ALWAYS" /> |
| 26 | + <VBox HBox.hgrow="ALWAYS"> |
| 27 | + <children> |
| 28 | + <Label style="-fx-font-size: 64; -fx-font-weight: BOLD;" text="GRIP" /> |
| 29 | + <Label fx:id="versionNumberLabel" text="Version 0.0.0" /> |
| 30 | + <Pane VBox.vgrow="ALWAYS" /> |
| 31 | + <HBox> |
| 32 | + <children> |
| 33 | + <StackPane onMousePressed="#mousePressedGithubButton" styleClass="about-button"> |
| 34 | + <children> |
| 35 | + <Label text="➔ Github"> |
| 36 | + <font> |
| 37 | + <Font size="14.0" /> |
| 38 | + </font></Label> |
| 39 | + </children> |
| 40 | + <opaqueInsets> |
| 41 | + <Insets /> |
| 42 | + </opaqueInsets> |
| 43 | + <HBox.margin> |
| 44 | + <Insets left="-3.0" /> |
| 45 | + </HBox.margin> |
| 46 | + <padding> |
| 47 | + <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" /> |
| 48 | + </padding> |
| 49 | + </StackPane> |
| 50 | + </children> |
| 51 | + </HBox> |
| 52 | + <Pane VBox.vgrow="ALWAYS" /> |
| 53 | + <HBox> |
| 54 | + <children> |
| 55 | + <StackPane onMousePressed="#mousePressedDocumentationButton" styleClass="about-button"> |
| 56 | + <children> |
| 57 | + <Label text="➔ ScreenSteps Documentation" /> |
| 58 | + </children> |
| 59 | + <HBox.margin> |
| 60 | + <Insets left="-3.0" /> |
| 61 | + </HBox.margin> |
| 62 | + <padding> |
| 63 | + <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" /> |
| 64 | + </padding> |
| 65 | + </StackPane> |
| 66 | + </children> |
| 67 | + </HBox> |
| 68 | + </children> |
| 69 | + </VBox> |
| 70 | + <Pane HBox.hgrow="ALWAYS" /> |
| 71 | + </children> |
| 72 | + </HBox> |
| 73 | + <Pane VBox.vgrow="ALWAYS"> |
| 74 | + <VBox.margin> |
| 75 | + <Insets /> |
| 76 | + </VBox.margin> |
| 77 | + </Pane> |
| 78 | + <HBox> |
| 79 | + <children> |
| 80 | + <Pane HBox.hgrow="ALWAYS" /> |
| 81 | + <Label style="-fx-font-size: 12;" text="GRIP is licensed under a 3 Clause BSD License" textFill="#818181" /> |
| 82 | + <Pane HBox.hgrow="ALWAYS" /> |
| 83 | + </children> |
| 84 | + <padding> |
| 85 | + <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> |
| 86 | + </padding> |
| 87 | + </HBox> |
| 88 | + </children> |
| 89 | + <stylesheets> |
| 90 | + <URL value="@GRIP.css" /> |
| 91 | + </stylesheets> |
| 92 | +</VBox> |
0 commit comments