-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonitor.fxml
More file actions
123 lines (121 loc) · 6.39 KB
/
Copy pathMonitor.fxml
File metadata and controls
123 lines (121 loc) · 6.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<?import wf.util.ComboBoxChLabels?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.chart.LineChart?>
<?import javafx.scene.chart.NumberAxis?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.Slider?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.layout.VBox?>
<AnchorPane fx:id="monitor_ap" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wf.view.MonitorController">
<children>
<VBox fx:id="monitor_vb" spacing="10.0" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="5.0">
<children>
<AnchorPane fx:id="top_ap">
<children>
<Label fx:id="title_lb" text="Monitor" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="5.0">
<padding>
<Insets left="10.0" />
</padding></Label>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
</AnchorPane>
<Separator fx:id="north_sp" />
<HBox fx:id="monitor_hb">
<children>
<StackPane fx:id="lineChartLeftContainer_sp">
<children>
<LineChart fx:id="chartLineLeft" prefHeight="400.0" prefWidth="500.0" title="Raw Waveforms">
<xAxis>
<NumberAxis fx:id="leftXAxis" label="Bin" side="BOTTOM" />
</xAxis>
<yAxis>
<NumberAxis fx:id="leftYAxis" label="Amplitude" side="LEFT" />
</yAxis>
<StackPane.margin>
<Insets />
</StackPane.margin>
</LineChart>
</children>
<HBox.margin>
<Insets right="10.0" />
</HBox.margin></StackPane>
<StackPane fx:id="lineChartRightContainer_sp">
<children>
<LineChart fx:id="chartLineRight" prefHeight="400.0" prefWidth="500.0" title="Processed Waveforms">
<xAxis>
<NumberAxis fx:id="rightXAxis" label="Bin" side="BOTTOM" />
</xAxis>
<yAxis>
<NumberAxis fx:id="rightYAxis" label="Amplitude" side="LEFT" />
</yAxis>
<StackPane.margin>
<Insets />
</StackPane.margin>
</LineChart>
</children>
<HBox.margin>
<Insets left="10.0" />
</HBox.margin>
</StackPane>
</children>
<VBox.margin>
<Insets />
</VBox.margin>
<padding>
<Insets left="10.0" right="10.0" />
</padding>
</HBox>
<Separator fx:id="south_sp" />
<AnchorPane fx:id="bottom_ap" nodeOrientation="LEFT_TO_RIGHT">
<children>
<GridPane fx:id="grid1_gr" hgap="10.0" prefHeight="30.0" vgap="10.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="70.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="80.0" prefWidth="80.0" />
<ColumnConstraints halignment="CENTER" hgrow="SOMETIMES" minWidth="160.0" prefWidth="160.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="240.0" prefWidth="240.0" />
<ColumnConstraints halignment="CENTER" hgrow="SOMETIMES" minWidth="60.0" prefWidth="60.0" />
<ColumnConstraints halignment="CENTER" hgrow="SOMETIMES" minWidth="60.0" prefWidth="60.0" />
<ColumnConstraints halignment="RIGHT" hgrow="SOMETIMES" minWidth="10.0" prefWidth="300.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Label fx:id="chNumber_lb" text="Channel">
<GridPane.margin>
<Insets left="5.0" />
</GridPane.margin>
</Label>
<ComboBoxChLabels fx:id="chNumber_cb" GridPane.columnIndex="1" />
<Label fx:id="wfNumber_lb" text="Waveform" GridPane.columnIndex="2" />
<Slider fx:id="wfSlider_sl" GridPane.columnIndex="3" />
<Button fx:id="previous_bt" mnemonicParsing="false" prefWidth="40.0" text="<<" GridPane.columnIndex="4" />
<Button fx:id="next_bt" mnemonicParsing="false" prefWidth="40.0" text=">>" GridPane.columnIndex="5" />
<ButtonBar fx:id="bar_bb" nodeOrientation="LEFT_TO_RIGHT" GridPane.columnIndex="6" GridPane.halignment="RIGHT">
<buttons>
<Button fx:id="close_bt" mnemonicParsing="false" onAction="#exitAction" prefWidth="140.0" text="Close" />
</buttons>
<GridPane.margin>
<Insets right="5.0" />
</GridPane.margin>
</ButtonBar>
</children>
</GridPane>
</children>
</AnchorPane>
</children>
</VBox>
</children>
</AnchorPane>