Skip to main content
summaryrefslogtreecommitdiffstats
blob: eb434d9325b77f706a5a4eb01bec739e460d9099 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.shape.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import java.lang.*?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.ToolBar?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?>

<BorderPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="420.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.eclipse.fx.demo.customWindow.app.controller.MainFrameController">
	<top>
		<VBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308">
			<children>
				<HBox id="top-trim-area" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" />
				<HBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308">
					<children>
						<HBox id="menu-bar-area" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" HBox.hgrow="ALWAYS" />
						<TextField fx:id="searchField" promptText="Search..." />
					</children>
				</HBox>
			</children>
		</VBox>
	</top>
	<right>
		<HBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308">
			<children>
				<VBox minWidth="10.0" prefWidth="20.0" maxWidth="20.0" maxHeight="1.7976931348623157E308"
				style="-fx-background-color: #1f0899;">
					<children>
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<VBox maxHeight="1.7976931348623157E308" VBox.vgrow="ALWAYS" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
					</children>
				</VBox>
				<HBox id="right-trim-area" minWidth="50.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" />
			</children>
		</HBox>
	</right>
	<left>
		<HBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308">
			<children>
				<HBox id="left-trim-area" minWidth="16.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" />
				<VBox minWidth="10.0" prefWidth="20.0" maxWidth="20.0" maxHeight="1.7976931348623157E308" 
				style="-fx-background-color: #1f0899;">
					<children>
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<VBox maxHeight="1.7976931348623157E308" VBox.vgrow="ALWAYS" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
					</children>
				</VBox>
			</children>
		</HBox>
	</left>
	<bottom>
		<VBox maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308">
			<children>
				<HBox minHeight="10.0" prefHeight="20.0" maxHeight="20.0" maxWidth="1.7976931348623157E308"
				style="-fx-background-color: #1f0899;">
					<children>
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<VBox maxWidth="1.7976931348623157E308" HBox.hgrow="ALWAYS" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
						<Circle fill="DODGERBLUE" radius="10.0" stroke="BLACK" strokeType="INSIDE" />
					</children>
				</HBox>
				<HBox id="bottom-trim-area" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="16.0" />
			</children>
		</VBox>
	</bottom>
	<center>
		<BorderPane id="client-area" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" />
	</center>
</BorderPane>

Back to the top