2016-09-28 17:04:18 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Copyright 2015 Alexander Nozik.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
2016-09-29 13:52:24 +03:00
|
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
<?import javafx.scene.layout.BorderPane?>
|
2016-09-30 16:36:11 +03:00
|
|
|
<BorderPane xmlns:fx="http://javafx.com/fxml/1" prefHeight="600.0" prefWidth="800.0"
|
|
|
|
xmlns="http://javafx.com/javafx/8.0.60" fx:controller="inr.numass.cryotemp.PKT8MainViewController">
|
2016-09-29 13:52:24 +03:00
|
|
|
<center>
|
|
|
|
<AnchorPane fx:id="plotArea" />
|
|
|
|
</center>
|
|
|
|
<top>
|
|
|
|
<ToolBar BorderPane.alignment="CENTER">
|
2016-09-28 17:04:18 +03:00
|
|
|
<items>
|
2016-09-29 13:52:24 +03:00
|
|
|
<ToggleButton fx:id="startStopButton" disable="true" mnemonicParsing="false" onAction="#onStartStopClick" prefWidth="50.0" text="Start" />
|
2016-09-30 16:36:11 +03:00
|
|
|
<ToggleButton fx:id="rawDataButton" mnemonicParsing="false" text="Raw data"/>
|
2016-09-29 13:52:24 +03:00
|
|
|
<Separator orientation="VERTICAL" />
|
|
|
|
<Button fx:id="loadConfigButton" mnemonicParsing="false" onAction="#onLoadConfigClick" text="Load config" />
|
|
|
|
<ToggleButton fx:id="consoleButton" contentDisplay="CENTER" mnemonicParsing="false" text="Console" />
|
2016-09-28 17:04:18 +03:00
|
|
|
</items>
|
|
|
|
</ToolBar>
|
2016-09-29 13:52:24 +03:00
|
|
|
</top>
|
|
|
|
</BorderPane>
|