1 <?xml version="1.0" encoding="UTF-8"?>
   2 
   3 <!--
   4   Copyright (c) 2012, 2014, Oracle and/or its affiliates.
   5   All rights reserved. Use is subject to license terms.
   6 
   7   This file is available and licensed under the following license:
   8 
   9   Redistribution and use in source and binary forms, with or without
  10   modification, are permitted provided that the following conditions
  11   are met:
  12 
  13   - Redistributions of source code must retain the above copyright
  14     notice, this list of conditions and the following disclaimer.
  15   - Redistributions in binary form must reproduce the above copyright
  16     notice, this list of conditions and the following disclaimer in
  17     the documentation and/or other materials provided with the distribution.
  18   - Neither the name of Oracle Corporation nor the names of its
  19     contributors may be used to endorse or promote products derived
  20     from this software without specific prior written permission.
  21 
  22   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  23   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  24   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  25   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  26   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  27   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  28   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  29   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  30   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  31   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  32   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33 -->
  34 
  35 <?import java.lang.*?>
  36 <?import javafx.geometry.*?>
  37 <?import javafx.scene.control.*?>
  38 <?import javafx.scene.image.*?>
  39 <?import javafx.scene.layout.*?>
  40 
  41 <VBox fx:id="vbox" alignment="CENTER" minHeight="-Infinity" minWidth="-Infinity" spacing="0.0" style="-fx-background-color: white;" styleClass="theme-presets" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
  42   <children>
  43     <ImageView onMousePressed="#onMousePressed" pickOnBounds="true" VBox.vgrow="NEVER">
  44       <image>
  45         <Image preserveRatio="true" smooth="true" url="@about-header.png" />
  46       </image>
  47       <VBox.margin>
  48         <Insets bottom="40.0" />
  49       </VBox.margin>
  50     </ImageView>
  51     <TextArea fx:id="textArea" editable="false" focusTraversable="false" prefWidth="200.0" text="" wrapText="true" VBox.vgrow="ALWAYS" />
  52     <ImageView pickOnBounds="true" VBox.vgrow="NEVER">
  53       <image>
  54         <Image preserveRatio="true" smooth="true" url="@about-footer.png" />
  55       </image>
  56     </ImageView>
  57   </children>
  58   <padding>
  59     <Insets bottom="30.0" left="30.0" right="30.0" top="30.0" />
  60   </padding>
  61 </VBox>