forked from CS2103AUG2016-F11-C2/main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.fxml
More file actions
70 lines (67 loc) · 2.94 KB
/
MainWindow.fxml
File metadata and controls
70 lines (67 loc) · 2.94 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- @@author A0141006B -->
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<VBox prefHeight="600.0" prefWidth="650.0" stylesheets="@../CSS/Labels.css" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seedu.cmdo.ui.MainWindow">
<children>
<MenuBar VBox.vgrow="NEVER">
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem mnemonicParsing="false" onAction="#handleExit" text="Exit" />
</items>
</Menu>
<Menu mnemonicParsing="false" text="Help">
<items>
<MenuItem fx:id="helpMenuItem" mnemonicParsing="false" onAction="#handleHelp" text="Help" />
</items>
</Menu>
</menus>
<VBox.margin>
<Insets />
</VBox.margin>
</MenuBar>
<AnchorPane fx:id="commandBoxPlaceholder" styleClass="anchor-pane-with-border" VBox.vgrow="NEVER">
<padding>
<Insets bottom="5.0" left="10.0" right="10.0" top="5.0" />
</padding>
<VBox.margin>
<Insets bottom="2.0" left="2.0" right="2.0" top="2.0" />
</VBox.margin>
</AnchorPane>
<AnchorPane fx:id="resultDisplayPlaceholder" prefHeight="20.0" styleClass="anchor-pane-with-border" VBox.vgrow="NEVER">
<padding>
<Insets bottom="5.0" left="10.0" right="10.0" top="5.0" />
</padding>
</AnchorPane>
<SplitPane id="splitPane" fx:id="splitPane" dividerPositions="0.0" VBox.vgrow="ALWAYS">
<items>
<VBox fx:id="taskList" SplitPane.resizableWithParent="false">
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
</padding>
<children>
<AnchorPane fx:id="taskCategoryPlaceholder" maxHeight="-Infinity" maxWidth="-Infinity" VBox.vgrow="ALWAYS" />
<AnchorPane fx:id="welcomePanePlaceholder" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" VBox.vgrow="ALWAYS">
<VBox.margin>
<Insets />
</VBox.margin></AnchorPane>
</children>
</VBox>
<AnchorPane fx:id="taskListPanelPlaceholder" />
</items>
<VBox.margin>
<Insets bottom="5.0" left="12.0" right="12.0" top="5.0" />
</VBox.margin>
<padding>
<Insets bottom="2.0" left="2.0" right="2.0" top="2.0" />
</padding>
</SplitPane>
<AnchorPane fx:id="statusbarPlaceholder" VBox.vgrow="NEVER" />
</children>
</VBox>