-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSimpleEditor.fxml
201 lines (191 loc) · 9.64 KB
/
SimpleEditor.fxml
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?xml version="1.0" encoding="UTF-8"?>
<!--
/////////////////////////////////////////////////////////////////////////////
//
// This demo file is part of yFiles for JavaFX 3.6.
//
// Copyright (c) 2000-2023 by yWorks GmbH, Vor dem Kreuzberg 28,
// 72070 Tuebingen, Germany. All rights reserved.
//
// yFiles demo files exhibit yFiles for JavaFX functionalities. Any redistribution
// of demo resource files, with or without modification, is not permitted.
// Owners of a valid software license for a yFiles for JavaFX version that this
// demo is shipped with are allowed to use the resource file as basis for
// their own yFiles for JavaFX powered applications. Use of such programs is
// governed by the rights and conditions as set out in the yFiles for JavaFX
// license agreement.
//
// THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
// NO EVENT SHALL yWorks BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
/////////////////////////////////////////////////////////////////////////////
-->
<?import com.yworks.yfiles.view.GraphControl?>
<?import com.yworks.yfiles.view.GraphOverviewControl?>
<?import toolkit.CommandButton?>
<?import toolkit.CommandMenuItem?>
<?import toolkit.IconProvider?>
<?import toolkit.TooltipProvider?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.SeparatorMenuItem?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.ToolBar?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ToggleButton?>
<?import javafx.scene.control.TitledPane?>
<?import javafx.scene.web.WebView?>
<?import java.lang.Double?>
<!-- Basic demo structure containing toolbar and graph control -->
<BorderPane xmlns:fx="http://javafx.com/fxml"
fx:id="root">
<top>
<!--menu and toolbar-->
<VBox>
<children>
<MenuBar fx:id="menubar">
<menus>
<Menu text="File">
<items>
<CommandMenuItem command="New" commandTarget="${graphControl}"/>
<CommandMenuItem command="Open" commandTarget="${graphControl}"/>
<CommandMenuItem command="SaveAs" commandTarget="${graphControl}"/>
<CommandMenuItem command="Print" commandTarget="${graphControl}"/>
<MenuItem text="Export..." onAction="#exportImage"/>
<MenuItem text="Exit" onAction="#exit"/>
</items>
</Menu>
<Menu text="Edit">
<items>
<CommandMenuItem command="Cut" commandTarget="${graphControl}"/>
<CommandMenuItem command="Copy" commandTarget="${graphControl}"/>
<CommandMenuItem command="Paste" commandTarget="${graphControl}"/>
<CommandMenuItem command="Duplicate" commandTarget="${graphControl}"/>
<CommandMenuItem command="Delete" commandTarget="${graphControl}"/>
<SeparatorMenuItem/>
<CommandMenuItem command="Undo" commandTarget="${graphControl}"/>
<CommandMenuItem command="Redo" commandTarget="${graphControl}"/>
<SeparatorMenuItem/>
<CommandMenuItem command="ReverseEdge" commandTarget="${graphControl}"/>
</items>
</Menu>
<Menu text="View">
<items>
<CommandMenuItem command="IncreaseZoom" commandTarget="${graphControl}"/>
<CommandMenuItem command="DecreaseZoom" commandTarget="${graphControl}"/>
<MenuItem text="Zoom 1:1" onAction="#resetZoom"/>
<CommandMenuItem command="FitGraphBounds" commandTarget="${graphControl}"/>
</items>
</Menu>
<Menu text="Grouping">
<items>
<CommandMenuItem command="GroupSelection" commandTarget="${graphControl}"/>
<CommandMenuItem command="UngroupSelection" commandTarget="${graphControl}"/>
<SeparatorMenuItem/>
<CommandMenuItem command="ExpandGroup" commandTarget="${graphControl}"/>
<CommandMenuItem command="CollapseGroup" commandTarget="${graphControl}"/>
<SeparatorMenuItem/>
<CommandMenuItem command="EnterGroup" commandTarget="${graphControl}"/>
<CommandMenuItem command="ExitGroup" commandTarget="${graphControl}"/>
</items>
</Menu>
</menus>
</MenuBar>
<ToolBar>
<items>
<CommandButton command="New" commandTarget="${graphControl}"/>
<CommandButton command="Open" commandTarget="${graphControl}"/>
<CommandButton command="Save" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<CommandButton command="Print" commandTarget="${graphControl}"/>
<Button onAction="#exportImage" styleClass="command-button">
<graphic><IconProvider fx:value="EXPORT_IMAGE"/></graphic>
<tooltip><TooltipProvider fx:value="EXPORT_IMAGE"/></tooltip>
</Button>
<Separator orientation="VERTICAL"/>
<CommandButton command="Undo" commandTarget="${graphControl}"/>
<CommandButton command="Redo" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<CommandButton command="Cut" commandTarget="${graphControl}"/>
<CommandButton command="Copy" commandTarget="${graphControl}"/>
<CommandButton command="Paste" commandTarget="${graphControl}"/>
<CommandButton command="Delete" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<CommandButton command="IncreaseZoom" commandTarget="${graphControl}"/>
<CommandButton command="DecreaseZoom" commandTarget="${graphControl}"/>
<CommandButton command="Zoom" commandTarget="${graphControl}" text="">
<commandParameter><Double fx:value="1.0"></Double></commandParameter>
<graphic><IconProvider fx:value="ZOOM_RESET"/></graphic>
<tooltip><TooltipProvider fx:value="ZOOM_RESET"/></tooltip>
</CommandButton>
<CommandButton command="FitGraphBounds" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<CommandButton command="GroupSelection" commandTarget="${graphControl}"/>
<CommandButton command="UngroupSelection" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<CommandButton command="ToFront" commandTarget="${graphControl}"/>
<CommandButton command="Raise" commandTarget="${graphControl}"/>
<CommandButton command="Lower" commandTarget="${graphControl}"/>
<CommandButton command="ToBack" commandTarget="${graphControl}"/>
<Separator orientation="VERTICAL"/>
<ToggleButton onAction="#toggleSnapping" styleClass="command-button">
<graphic><IconProvider fx:value="SNAPPING"/></graphic>
<tooltip><TooltipProvider fx:value="SNAPPING"/></tooltip>
</ToggleButton>
<ToggleButton onAction="#toggleOrthogonalEditing" styleClass="command-button">
<graphic><IconProvider fx:value="ORTHOGONAL_EDITING"/></graphic>
<tooltip><TooltipProvider fx:value="ORTHOGONAL_EDITING"/></tooltip>
</ToggleButton>
<ToggleButton onAction="#toggleGrid" styleClass="command-button">
<graphic><IconProvider fx:value="GRID"/></graphic>
<tooltip><TooltipProvider fx:value="GRID"/></tooltip>
</ToggleButton>
<Separator orientation="VERTICAL"/>
<ToggleButton onAction="#toggleSelectionMode" styleClass="command-button">
<graphic><IconProvider fx:value="LASSO"/></graphic>
<tooltip><TooltipProvider fx:value="LASSO"/></tooltip>
</ToggleButton>
</items>
</ToolBar>
</children>
</VBox>
</top>
<center>
<!--the GraphControl-->
<GraphControl fx:id="graphControl" fileIOEnabled="true"/>
</center>
<left>
<VBox>
<children>
<!--the graph overview on the left side.-->
<TitledPane animated="false" collapsible="false" expanded="true" maxHeight="1.7976931348623157E308"
text="Overview">
<content>
<GraphOverviewControl fx:id="overviewControl"
prefHeight="200"
maxHeight="Infinity"
maxWidth="Infinity"/>
</content>
</TitledPane>
<!--The help panel on the left side.-->
<TitledPane VBox.vgrow="ALWAYS" animated="false" collapsible="false" expanded="true" maxHeight="1.7976931348623157E308"
text="Help">
<content>
<WebView prefWidth="300.0" fx:id="webView" fontScale="1"/>
</content>
</TitledPane>
</children>
</VBox>
</left>
</BorderPane>