Skip to main content
summaryrefslogtreecommitdiffstats
blob: 93a771c8d4625aea6791200f223627c84dad8141 (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
<?xml version="1.0" encoding="UTF-8"?>
<!-- 
	Do not edit this file it is generated by e(fx)clipse from ../src/org/eclipse/fx/demo/fxgraph/profile.fxgraph
-->

<?import java.lang.*?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.Hyperlink?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane xmlns:fx="http://javafx.com/fxml" fx:id="Profile" fx:controller="org.eclipse.fx.demo.fxgraph.ProfileController" prefWidth="650.0" prefHeight="443.0">

	<children>
		<Button fx:id="update" maxHeight="2.0" text="Update" onAction="#processUpdate" AnchorPane.bottomAnchor="15.0" AnchorPane.rightAnchor="168.0"/> 
		<Label fx:id="message" layoutX="56.0" layoutY="77.0" text="Please review your profile data."/> 
		<Label layoutX="56.0" layoutY="123.0" text="User:"/> 
		<Label layoutX="56.0" layoutY="224.0" text="Phone:"/> 
		<Label layoutX="56.0" layoutY="173.0" text="Email:"/> 
		<TextField fx:id="user" editable="false" layoutX="149.0" layoutY="120.0" maxWidth="2.0" maxHeight="30.0" minWidth="215.0" prefWidth="215.0" prefHeight="30.0"/> 
		<TextField fx:id="email" editable="true" layoutX="149.0" layoutY="171" maxWidth="2.0" minHeight="30.0" minWidth="215.0" prefHeight="30.0" prefWidth="215.0"/> 
		<TextField fx:id="phone" layoutX="149.0" layoutY="224" maxWidth="2.0" minHeight="30.0" minWidth="215.0" prefHeight="30.0" prefWidth="215.0"/> 
		<CheckBox fx:id="subscribed" layoutX="402" layoutY="120" text="Subscribe to Newsletter"/> 
		<Separator layoutX="380" layoutY="110" prefHeight="155" orientation="vertical"/> 
		<Hyperlink fx:id="logout" layoutY="24.0" text="logout" onAction="#processLogout" AnchorPane.rightAnchor="52.0"/> 
		<Button fx:id="Button" disable="true" maxHeight="2" maxWidth="2.0" text="Continue" defaultButton="true" onAction="#processLogout" AnchorPane.bottomAnchor="15.0" AnchorPane.rightAnchor="52.0"/> 
		<Label fx:id="success" layoutX="100.0" layoutY="401.0" opacity="0" text="Profile successfully updated!"/> 
		<Label layoutX="56.0" layoutY="284.0" text="Address:"/> 
		<TextArea fx:id="address" maxHeight="2.0" maxWidth="2.0" minHeight="85.0" minWidth="448.0" prefHeight="85.0" prefWidth="448.0" AnchorPane.bottomAnchor="69.0" AnchorPane.leftAnchor="149.0" AnchorPane.rightAnchor="52.0" AnchorPane.topAnchor="289.0"/> 
	</children>
	<styleClass>
		<String fx:value="profile"/> 
	</styleClass>
	<properties>
		<elementLockSel>
			<Boolean fx:value="true"/> 
		</elementLockSel>
	</properties>
</AnchorPane>

Back to the top