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.
|
|
|
|
-->
|
|
|
|
|
2016-10-07 14:19:01 +03:00
|
|
|
<?import javafx.scene.control.Separator?>
|
|
|
|
<?import javafx.scene.control.ToggleButton?>
|
|
|
|
<?import javafx.scene.control.ToolBar?>
|
2016-10-05 18:56:17 +03:00
|
|
|
<?import javafx.scene.layout.*?>
|
2016-10-07 14:19:01 +03:00
|
|
|
<BorderPane xmlns:fx="http://javafx.com/fxml/1" prefHeight="600.0" prefWidth="800.0"
|
|
|
|
xmlns="http://javafx.com/javafx/8.0.60">
|
2016-10-05 18:56:17 +03:00
|
|
|
<center>
|
|
|
|
<AnchorPane fx:id="plotArea"/>
|
|
|
|
</center>
|
|
|
|
<top>
|
2016-09-29 13:52:24 +03:00
|
|
|
<ToolBar BorderPane.alignment="CENTER">
|
2016-09-28 17:04:18 +03:00
|
|
|
<items>
|
2016-09-30 16:36:11 +03:00
|
|
|
<ToggleButton fx:id="rawDataButton" mnemonicParsing="false" text="Raw data"/>
|
2016-10-05 18:56:17 +03:00
|
|
|
<Separator orientation="VERTICAL"/>
|
2016-10-07 14:19:01 +03:00
|
|
|
<Pane HBox.hgrow="ALWAYS"/>
|
2016-10-05 18:56:17 +03:00
|
|
|
<Separator orientation="VERTICAL"/>
|
2016-09-28 17:04:18 +03:00
|
|
|
</items>
|
|
|
|
</ToolBar>
|
2016-10-05 18:56:17 +03:00
|
|
|
</top>
|
2016-09-29 13:52:24 +03:00
|
|
|
</BorderPane>
|