-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWaveformsMonitor.fxml
More file actions
90 lines (88 loc) · 4.25 KB
/
Copy pathWaveformsMonitor.fxml
File metadata and controls
90 lines (88 loc) · 4.25 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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.chart.LineChart?>
<?import javafx.scene.chart.NumberAxis?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.ProgressBar?>
<?import javafx.scene.control.ProgressIndicator?>
<?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.VBox?>
<AnchorPane fx:id="main_ap" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="wf.view.MainController">
<children>
<VBox fx:id="main_vb">
<children>
<MenuBar>
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem mnemonicParsing="false" onAction="#importDataset" text="Import Dataset" />
<MenuItem mnemonicParsing="false" text="Close" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Edit">
<items>
<MenuItem mnemonicParsing="false" text="Delete" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Help">
<items>
<MenuItem mnemonicParsing="false" text="About" />
</items>
</Menu>
</menus>
</MenuBar>
<HBox fx:id="middle_hb">
<children>
<AnchorPane fx:id="left_ap" prefHeight="600.0" prefWidth="400.0">
<children>
<GridPane>
<columnConstraints>
<ColumnConstraints 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>
<children>
<ComboBox fx:id="chNumber_cb" prefWidth="150.0" GridPane.columnIndex="1" />
<ComboBox fx:id="wfNumber_cb" prefWidth="150.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
<Label text="Channel" />
<Label text="Waveform" GridPane.rowIndex="1" />
</children>
</GridPane>
</children></AnchorPane>
<AnchorPane fx:id="right_ap" prefHeight="600.0" prefWidth="1000.0">
<children>
<LineChart fx:id="lineChart" prefHeight="600.0" prefWidth="1000.0">
<xAxis>
<NumberAxis side="BOTTOM" fx:id="xAxis" />
</xAxis>
<yAxis>
<NumberAxis fx:id="yAxis" side="LEFT" />
</yAxis>
</LineChart>
</children></AnchorPane>
</children>
</HBox>
<AnchorPane fx:id="south_ap" prefHeight="200.0" prefWidth="1400.0">
<children>
<HBox fx:id="south_hb" AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0">
<children>
<ProgressBar fx:id="progressBar" prefHeight="40.0" prefWidth="1360.0" progress="0.0" />
<ProgressIndicator fx:id="progressIndicator" prefWidth="40.0" progress="0.0" />
</children>
</HBox>
</children></AnchorPane>
</children>
</VBox>
</children>
</AnchorPane>