welcome.fxml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2014 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <?import java.net.*?>
  10. <?import javafx.geometry.*?>
  11. <?import javafx.scene.control.*?>
  12. <?import javafx.scene.layout.*?>
  13. <?import javafx.scene.text.*?>
  14. <?import java.lang.String?>
  15. <?import javafx.scene.shape.Arc?>
  16. <?import javafx.scene.shape.QuadCurve?>
  17. <?import javafx.scene.shape.Path?>
  18. <?import javafx.scene.shape.Line?>
  19. <AnchorPane xmlns:fx="http://javafx.com/fxml">
  20. <children>
  21. <Label AnchorPane.leftAnchor="100.0" AnchorPane.topAnchor="50.0" style="-fx-font-size: 1.5em;" text="%welcome.welcomeLabel"/>
  22. <Label AnchorPane.leftAnchor="120.0" AnchorPane.topAnchor="280.0" text="%welcome.addButtonInstructionLabel"/>
  23. <QuadCurve AnchorPane.leftAnchor="4.0" AnchorPane.topAnchor="300.0" startX="200.0" startY="0.0" endX="0.0" endY="80.0" controlX="180.0" controlY="80.0" fill="TRANSPARENT" stroke="BLACK" strokeWidth="2.0"/>
  24. <Line AnchorPane.leftAnchor="4.0" AnchorPane.topAnchor="370.0" startX="0.0" endX="10.0" startY="10.0" endY="0.0" strokeWidth="2.0"/>
  25. <Line AnchorPane.leftAnchor="4.0" AnchorPane.topAnchor="380.0" startX="0.0" endX="10.0" startY="0.0" endY="10.0" strokeWidth="2.0"/>
  26. </children>
  27. </AnchorPane>