annotate KinaMine-Galaxy-7-7/src/kinamine/KinaMineGUI.fxml @ 0:67635b462045 draft

Uploaded
author jfb
date Tue, 20 Feb 2018 14:31:15 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
67635b462045 Uploaded
jfb
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
67635b462045 Uploaded
jfb
parents:
diff changeset
2
67635b462045 Uploaded
jfb
parents:
diff changeset
3 <?import javafx.scene.text.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
4 <?import javafx.geometry.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
5 <?import java.lang.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
6 <?import java.util.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
7 <?import javafx.scene.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
8 <?import javafx.scene.control.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
9 <?import javafx.scene.layout.*?>
67635b462045 Uploaded
jfb
parents:
diff changeset
10
67635b462045 Uploaded
jfb
parents:
diff changeset
11 <VBox id="containerAll" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="kinamine.KinaMineGUIController">
67635b462045 Uploaded
jfb
parents:
diff changeset
12 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
13 <MenuBar id="menuBar">
67635b462045 Uploaded
jfb
parents:
diff changeset
14 <menus>
67635b462045 Uploaded
jfb
parents:
diff changeset
15 <Menu mnemonicParsing="false" text="File">
67635b462045 Uploaded
jfb
parents:
diff changeset
16 <items>
67635b462045 Uploaded
jfb
parents:
diff changeset
17 <MenuItem mnemonicParsing="false" text="Close" />
67635b462045 Uploaded
jfb
parents:
diff changeset
18 </items>
67635b462045 Uploaded
jfb
parents:
diff changeset
19 </Menu>
67635b462045 Uploaded
jfb
parents:
diff changeset
20 <Menu mnemonicParsing="false" text="Edit">
67635b462045 Uploaded
jfb
parents:
diff changeset
21 <items>
67635b462045 Uploaded
jfb
parents:
diff changeset
22 <MenuItem mnemonicParsing="false" text="Delete" />
67635b462045 Uploaded
jfb
parents:
diff changeset
23 </items>
67635b462045 Uploaded
jfb
parents:
diff changeset
24 </Menu>
67635b462045 Uploaded
jfb
parents:
diff changeset
25 <Menu mnemonicParsing="false" text="Help">
67635b462045 Uploaded
jfb
parents:
diff changeset
26 <items>
67635b462045 Uploaded
jfb
parents:
diff changeset
27 <MenuItem mnemonicParsing="false" text="About" />
67635b462045 Uploaded
jfb
parents:
diff changeset
28 </items>
67635b462045 Uploaded
jfb
parents:
diff changeset
29 </Menu>
67635b462045 Uploaded
jfb
parents:
diff changeset
30 </menus>
67635b462045 Uploaded
jfb
parents:
diff changeset
31 </MenuBar>
67635b462045 Uploaded
jfb
parents:
diff changeset
32 <HBox id="pepHBox" spacing="10.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
33 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
34 <Label id="pepLabel" prefHeight="17.0" prefWidth="120.0" text="Peptide Report:" textAlignment="CENTER" underline="true">
67635b462045 Uploaded
jfb
parents:
diff changeset
35 <HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
36 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
37 </HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
38 <padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
39 <Insets left="10.0" right="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
40 </padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
41 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
42 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
43 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
44 </Label>
67635b462045 Uploaded
jfb
parents:
diff changeset
45 <TextField fx:id="pepPath" HBox.hgrow="ALWAYS" />
67635b462045 Uploaded
jfb
parents:
diff changeset
46 <Button fx:id="pepSearchButton" mnemonicParsing="false" onAction="#pepSearchClicked" text="...">
67635b462045 Uploaded
jfb
parents:
diff changeset
47 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
48 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
49 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
50 </Button>
67635b462045 Uploaded
jfb
parents:
diff changeset
51 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
52 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
53 <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
54 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
55 <VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
56 <Insets bottom="5.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
57 </VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
58 </HBox>
67635b462045 Uploaded
jfb
parents:
diff changeset
59 <HBox id="fastaHBox" layoutX="10.0" layoutY="35.0" spacing="10.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
60 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
61 <Label id="fastaLabel" prefWidth="120.0" text="FASTA Database:" textAlignment="CENTER" underline="true">
67635b462045 Uploaded
jfb
parents:
diff changeset
62 <HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
63 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
64 </HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
65 <padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
66 <Insets left="10.0" right="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
67 </padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
68 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
69 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
70 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
71 </Label>
67635b462045 Uploaded
jfb
parents:
diff changeset
72 <TextField fx:id="fastaPath" HBox.hgrow="ALWAYS" />
67635b462045 Uploaded
jfb
parents:
diff changeset
73 <Button id="fastaSearchButton" mnemonicParsing="false" onAction="#fastaSearchClicked" text="..." />
67635b462045 Uploaded
jfb
parents:
diff changeset
74 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
75 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
76 <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
77 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
78 <VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
79 <Insets bottom="5.0" left="10.0" right="10.0" top="5.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
80 </VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
81 </HBox>
67635b462045 Uploaded
jfb
parents:
diff changeset
82 <HBox id="fdrHBox" layoutX="10.0" layoutY="35.0" spacing="10.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
83 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
84 <Label id="fdrLabel" prefHeight="17.0" prefWidth="120.0" text="FDR Score:" textAlignment="CENTER" underline="true">
67635b462045 Uploaded
jfb
parents:
diff changeset
85 <HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
86 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
87 </HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
88 <padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
89 <Insets left="10.0" right="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
90 </padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
91 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
92 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
93 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
94 </Label>
67635b462045 Uploaded
jfb
parents:
diff changeset
95 <TextField fx:id="fdrScore" prefHeight="25.0" prefWidth="74.0"/>
67635b462045 Uploaded
jfb
parents:
diff changeset
96 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
97 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
98 <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
99 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
100 <VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
101 <Insets bottom="10.0" left="10.0" right="10.0" top="5.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
102 </VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
103 </HBox>
67635b462045 Uploaded
jfb
parents:
diff changeset
104 <HBox id="folderHBox" layoutX="20.0" layoutY="80.0" spacing="10.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
105 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
106 <Label id="folderLabel" prefWidth="120.0" text="Output Folder:" textAlignment="CENTER" underline="true">
67635b462045 Uploaded
jfb
parents:
diff changeset
107 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
108 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
109 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
110 <padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
111 <Insets left="10.0" right="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
112 </padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
113 <HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
114 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
115 </HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
116 </Label>
67635b462045 Uploaded
jfb
parents:
diff changeset
117 <TextField fx:id="outPath" HBox.hgrow="ALWAYS" />
67635b462045 Uploaded
jfb
parents:
diff changeset
118 <Button id="outSearchButton" mnemonicParsing="false" onAction="#browseFolderClicked" text="..." />
67635b462045 Uploaded
jfb
parents:
diff changeset
119 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
120 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
121 <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
122 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
123 <VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
124 <Insets bottom="5.0" left="10.0" right="10.0" top="30.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
125 </VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
126 </HBox>
67635b462045 Uploaded
jfb
parents:
diff changeset
127 <HBox id="groupHBox" layoutX="10.0" layoutY="180.0" spacing="10.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
128 <children>
67635b462045 Uploaded
jfb
parents:
diff changeset
129 <Label id="groupLabel" prefWidth="120.0" text="Output Group:" textAlignment="CENTER" underline="true">
67635b462045 Uploaded
jfb
parents:
diff changeset
130 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
131 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
132 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
133 <padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
134 <Insets left="10.0" right="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
135 </padding>
67635b462045 Uploaded
jfb
parents:
diff changeset
136 <HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
137 <Insets />
67635b462045 Uploaded
jfb
parents:
diff changeset
138 </HBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
139 </Label>
67635b462045 Uploaded
jfb
parents:
diff changeset
140 <TextField fx:id="outGroup" />
67635b462045 Uploaded
jfb
parents:
diff changeset
141 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
142 <opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
143 <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
144 </opaqueInsets>
67635b462045 Uploaded
jfb
parents:
diff changeset
145 <VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
146 <Insets bottom="10.0" left="10.0" right="10.0" top="5.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
147 </VBox.margin>
67635b462045 Uploaded
jfb
parents:
diff changeset
148 </HBox>
67635b462045 Uploaded
jfb
parents:
diff changeset
149 <Region id="region" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS" />
67635b462045 Uploaded
jfb
parents:
diff changeset
150 <ToolBar id="toolBar" nodeOrientation="RIGHT_TO_LEFT" prefHeight="40.0" prefWidth="200.0">
67635b462045 Uploaded
jfb
parents:
diff changeset
151 <items>
67635b462045 Uploaded
jfb
parents:
diff changeset
152 <Button id="submitButton" mnemonicParsing="false" text="Submit" onAction="#submitButtonClicked" >
67635b462045 Uploaded
jfb
parents:
diff changeset
153 <font>
67635b462045 Uploaded
jfb
parents:
diff changeset
154 <Font size="13.0" />
67635b462045 Uploaded
jfb
parents:
diff changeset
155 </font>
67635b462045 Uploaded
jfb
parents:
diff changeset
156 </Button>
67635b462045 Uploaded
jfb
parents:
diff changeset
157 </items>
67635b462045 Uploaded
jfb
parents:
diff changeset
158 </ToolBar>
67635b462045 Uploaded
jfb
parents:
diff changeset
159 </children>
67635b462045 Uploaded
jfb
parents:
diff changeset
160 </VBox>