-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainMenu.fxml
More file actions
35 lines (33 loc) · 2.45 KB
/
mainMenu.fxml
File metadata and controls
35 lines (33 loc) · 2.45 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
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.lang.String?>
<?import javafx.collections.FXCollections?>
<?import javafx.scene.control.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.*?>
<?import javafx.scene.text.Font?>
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="780.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2" fx:controller="AnalyzerPackage.Controller">
<Button id="browseButton" fx:id="browseFile" layoutX="264.0" layoutY="268.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#browseFiles" prefHeight="67.9610595703125" prefWidth="253.0" text="Browse Files" />
<Button id="browseButton" fx:id="browseFolder" layoutX="390.0" layoutY="268.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#browseFolder" prefHeight="67.9610595703125" prefWidth="153.0" text="Browse Folder" visible="false" />
<Button id="browseButton" fx:id="analyzerButton" layoutX="61.0" layoutY="140.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showAnalyzer" prefHeight="67.9610595703125" prefWidth="153.0" text="Analyzer" />
<Button id="browseButton" fx:id="visualizerButton" layoutX="314.0" layoutY="140.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showVisualizer" prefHeight="67.9610595703125" prefWidth="153.0" text="Visualizer" />
<Button id="browseButton" fx:id="slicerButton" layoutX="563.0" layoutY="140.0" minHeight="17.9610595703125" mnemonicParsing="false" onAction="#showSlicer" prefHeight="67.9610595703125" prefWidth="153.0" text="Slicer" />
<Label alignment="CENTER" layoutX="264.0" layoutY="14.0" prefHeight="61.9609375" prefWidth="253.0" text="EVAS Framework" textAlignment="CENTER">
<font>
<Font name="System Bold" size="30.0" />
</font>
</Label>
<Label alignment="CENTER" layoutX="264.0" layoutY="68.0" prefHeight="37.9609375" prefWidth="253.0" text="Welcome to EVAS Framework" textAlignment="CENTER">
<font>
<Font name="System Bold" size="10.0" />
</font>
</Label>
<Label fx:id="statusLabel" layoutX="214.0" layoutY="359.0" text="Status:" />
</Pane>