12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.scene.Cursor?>
- <?import javafx.scene.chart.PieChart?>
- <?import javafx.scene.control.Label?>
- <?import javafx.scene.layout.AnchorPane?>
- <?import javafx.scene.layout.BorderPane?>
- <?import javafx.scene.layout.HBox?>
- <?import javafx.scene.layout.Pane?>
- <?import javafx.scene.layout.VBox?>
- <?import javafx.scene.text.Font?>
- <?import javafx.scene.text.TextFlow?>
- <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="0.0" prefHeight="553.0" prefWidth="616.0" stylesheets="@AddMovieWindowStyle.css" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.moviesdb.GenreStatisticsController">
- <right>
- <Pane fx:id="borderRight" maxWidth="5.0" prefHeight="520.0" prefWidth="230.0" style="-fx-background-color: #121212;" BorderPane.alignment="CENTER">
- <cursor>
- <Cursor fx:constant="E_RESIZE" />
- </cursor></Pane>
- </right>
- <bottom>
- <AnchorPane>
- <Pane fx:id="cornerBottomLeft" maxHeight="5.0" maxWidth="5.0" minHeight="5.0" minWidth="5.0" prefHeight="5.0" prefWidth="5.0" style="-fx-background-color: #121212;" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0">
- <cursor>
- <Cursor fx:constant="NE_RESIZE" />
- </cursor>
- </Pane>
- <Pane fx:id="borderBottom" prefHeight="5.0" prefWidth="745.0" style="-fx-background-color: #121212;" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0" BorderPane.alignment="CENTER">
- <cursor>
- <Cursor fx:constant="S_RESIZE" />
- </cursor></Pane>
- <Pane fx:id="cornerBottomRight" maxHeight="5.0" maxWidth="5.0" minHeight="5.0" minWidth="5.0" prefHeight="5.0" prefWidth="5.0" style="-fx-background-color: #121212;" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
- <cursor>
- <Cursor fx:constant="SE_RESIZE" />
- </cursor>
- </Pane>
- <cursor>
- <Cursor fx:constant="DEFAULT" />
- </cursor>
- </AnchorPane>
- </bottom>
- <left>
- <Pane fx:id="borderLeft" maxWidth="5.0" prefWidth="10.0" style="-fx-background-color: #121212;" BorderPane.alignment="CENTER">
- <cursor>
- <Cursor fx:constant="W_RESIZE" />
- </cursor></Pane>
- </left>
- <top>
- <AnchorPane fx:id="borderTop" maxHeight="24.0" prefHeight="24.0" style="-fx-background-color: #121212;" BorderPane.alignment="CENTER">
- <children>
- <Label fx:id="closeButton" onMouseClicked="#closeStage" prefHeight="16.0" prefWidth="16.0" AnchorPane.bottomAnchor="4.0" AnchorPane.rightAnchor="4.0" AnchorPane.topAnchor="4.0">
- <font>
- <Font name="Arimo" size="12.0" />
- </font>
- </Label>
- <Label fx:id="minimizeButton" onMouseClicked="#minimizeStage" prefHeight="16.0" prefWidth="16.0" AnchorPane.bottomAnchor="4.0" AnchorPane.rightAnchor="24.0" AnchorPane.topAnchor="4.0">
- <font>
- <Font name="Arimo" size="12.0" />
- </font>
- </Label>
- <Label fx:id="borderTopTitle" layoutX="10.0" layoutY="2.0" text="Title" textFill="#9f9f9f" AnchorPane.bottomAnchor="2.0" AnchorPane.leftAnchor="10.0" AnchorPane.topAnchor="2.0">
- <font>
- <Font size="14.0" />
- </font>
- </Label>
- </children>
- <cursor>
- <Cursor fx:constant="DEFAULT" />
- </cursor>
- </AnchorPane>
- </top>
- <center>
- <AnchorPane prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: #212121;" BorderPane.alignment="CENTER">
- <children>
- <VBox style="-fx-background-color: transparent;" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
- <AnchorPane minHeight="20.0" prefHeight="20.0" prefWidth="200.0" style="-fx-background-color: transparent;" />
- <AnchorPane prefHeight="385.0" prefWidth="600.0" style="-fx-background-color: transparent;" VBox.vgrow="ALWAYS">
- <children>
- <PieChart fx:id="genrePie" layoutX="50.0" prefHeight="250.0" prefWidth="600.0" style="-fx-max-height: 600; -fx-max-width: 600;" stylesheets="@PieChartStyle.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
- </children>
- </AnchorPane>
- <AnchorPane prefHeight="120.0">
- <children>
- <HBox prefHeight="100.0" prefWidth="200.0" AnchorPane.bottomAnchor="17.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0">
- <children>
- <Pane prefHeight="200.0" prefWidth="200.0" HBox.hgrow="ALWAYS" />
- <TextFlow fx:id="statsTextBox" prefHeight="111.0" prefWidth="200.0" style="-fx-text-fill: #9F9F9F;" />
- <Pane prefHeight="200.0" prefWidth="200.0" HBox.hgrow="ALWAYS" />
- </children>
- </HBox>
- </children></AnchorPane>
- <Pane maxHeight="5.0" minHeight="5.0" prefHeight="5.0" prefWidth="200.0" VBox.vgrow="NEVER" />
- </VBox>
- </children>
- </AnchorPane>
- </center>
- </BorderPane>
|