2016-10-07 14:19:01 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<?import javafx.scene.text.Font?>
|
2017-05-14 21:51:20 +03:00
|
|
|
<BorderPane fx:id="root" xmlns:fx="http://javafx.com/fxml/1" prefHeight="400.0" prefWidth="400.0"
|
2017-05-31 09:53:21 +03:00
|
|
|
xmlns="http://javafx.com/javafx/8.0.111" fx:controller="inr.numass.control.cryotemp.PKT8ViewConnection">
|
2016-10-07 14:19:01 +03:00
|
|
|
<center>
|
|
|
|
<TableView fx:id="table" BorderPane.alignment="CENTER">
|
|
|
|
<columns>
|
|
|
|
<TableColumn fx:id="sensorColumn" prefWidth="75.0" text="Sensor"/>
|
|
|
|
<TableColumn fx:id="resColumn" prefWidth="75.0" text="Resistance"/>
|
|
|
|
<TableColumn fx:id="tempColumn" prefWidth="116.0" text="Temperature"/>
|
|
|
|
</columns>
|
|
|
|
<columnResizePolicy>
|
|
|
|
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY"/>
|
|
|
|
</columnResizePolicy>
|
|
|
|
</TableView>
|
|
|
|
</center>
|
|
|
|
<top>
|
|
|
|
<ToolBar prefHeight="40.0" prefWidth="200.0" BorderPane.alignment="CENTER">
|
2017-05-19 15:02:31 +03:00
|
|
|
<ToggleButton fx:id="startStopButton" mnemonicParsing="false" onAction="#onStartStopClick"
|
|
|
|
text="Start"/>
|
|
|
|
<ToggleButton fx:id="storeButton" text="Store"/>
|
|
|
|
<Separator orientation="VERTICAL"/>
|
|
|
|
<Pane HBox.hgrow="ALWAYS"/>
|
|
|
|
<Separator orientation="VERTICAL"/>
|
|
|
|
<ToggleButton fx:id="plotButton" mnemonicParsing="false" text="Plot"/>
|
|
|
|
<ToggleButton fx:id="consoleButton" mnemonicParsing="false" text="Console"/>
|
2016-10-07 14:19:01 +03:00
|
|
|
</ToolBar>
|
|
|
|
</top>
|
|
|
|
<bottom>
|
|
|
|
<ToolBar prefHeight="40.0" prefWidth="200.0" BorderPane.alignment="CENTER">
|
2017-05-31 09:53:21 +03:00
|
|
|
<Label text="Last update: "/>
|
|
|
|
<Label fx:id="lastUpdateLabel" text="NONE">
|
|
|
|
<font>
|
|
|
|
<Font name="System Bold" size="12.0"/>
|
|
|
|
</font>
|
|
|
|
</Label>
|
2016-10-07 14:19:01 +03:00
|
|
|
</ToolBar>
|
|
|
|
</bottom>
|
|
|
|
</BorderPane>
|