<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="300.0"
prefWidth="500.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="CalculatorControl">
<columnConstraints>
<ColumnConstraints halignment="RIGHT" hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
</rowConstraints>
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</padding>
<children>
<Label text="Размер матрицы:">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<Label text="Параметры распределения:" GridPane.rowIndex="2">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<Label text="Тип соседства:" GridPane.rowIndex="3">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<TextField fx:id="sizeField" maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="25.0" prefWidth="45.0"
text="100" GridPane.columnIndex="1">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</TextField>
<ChoiceBox fx:id="nType" prefWidth="90.0" GridPane.columnIndex="1" GridPane.rowIndex="3">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</ChoiceBox>
<Button fx:id="startButton" mnemonicParsing="false" onAction="#startClick" text="Старт"
GridPane.halignment="CENTER" GridPane.rowIndex="6"/>
<Button fx:id="stopButton" disable="true" mnemonicParsing="false" onAction="#stopClick" text="Стоп"
GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="6"/>
<Label text="Коэффициент перколяции:" GridPane.rowIndex="4">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<TextField fx:id="coefPerc" editable="false" maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="25.0"
prefWidth="150.0" text="0.0" GridPane.columnIndex="1" GridPane.rowIndex="4">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</TextField>
<Label text="Количество экспериментов:" GridPane.rowIndex="5">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<TextField fx:id="exNumber" editable="false" maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="25.0"
prefWidth="85.0" text="0" GridPane.columnIndex="1" GridPane.rowIndex="5">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</TextField>
<Label text="Распределение:" GridPane.rowIndex="1">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</Label>
<ChoiceBox fx:id="distrType" prefHeight="25.0" prefWidth="200.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
</ChoiceBox>
<HBox alignment="BOTTOM_LEFT" maxHeight="42.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
<children>
<TextField fx:id="param1" maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="25.0" prefWidth="45.0"
text="0.5" GridPane.columnIndex="1" GridPane.rowIndex="2">
<GridPane.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</GridPane.margin>
<HBox.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</HBox.margin>
</TextField>
<TextField fx:id="param2" disable="true" maxHeight="-Infinity" maxWidth="-Infinity" prefHeight="25.0"
prefWidth="45.0" text="10">
<HBox.margin>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0"/>
</HBox.margin>
</TextField>
</children>
</HBox>
</children>
</GridPane>