summaryrefslogtreecommitdiff
path: root/doc/classes/GraphEdit.xml
blob: ea4e4b53bafd95b8c84d865cc25eacb0fa1be251 (plain)
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<?xml version="1.0" encoding="UTF-8" ?>
<class name="GraphEdit" inherits="Control" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		GraphEdit is a control responsible for displaying and manipulating graph-like data using [GraphNode]s. It provides access to creation, removal, connection, and disconnection of nodes.
	</brief_description>
	<description>
		GraphEdit provides tools for creation, manipulation, and display of various graphs. Its main purpose in the engine is to power the visual programming systems, such as visual shaders, but it is also available for use in user projects.
		GraphEdit by itself is only an empty container, representing an infinite grid where [GraphNode]s can be placed. Each [GraphNode] represent a node in the graph, a single unit of data in the connected scheme. GraphEdit, in turn, helps to control various interactions with nodes and between nodes. When the user attempts to connect, disconnect, or close a [GraphNode], a signal is emitted in the GraphEdit, but no action is taken by default. It is the responsibility of the programmer utilizing this control to implement the necessary logic to determine how each request should be handled.
		[b]Performance:[/b] It is greatly advised to enable low-processor usage mode (see [member OS.low_processor_usage_mode]) when using GraphEdits.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="_get_connection_line" qualifiers="virtual const">
			<return type="PackedVector2Array" />
			<param index="0" name="from_position" type="Vector2" />
			<param index="1" name="to_position" type="Vector2" />
			<description>
				Virtual method which can be overridden to customize how connections are drawn.
			</description>
		</method>
		<method name="_is_in_input_hotzone" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="in_node" type="Object" />
			<param index="1" name="in_port" type="int" />
			<param index="2" name="mouse_position" type="Vector2" />
			<description>
				Returns whether the [param mouse_position] is in the input hot zone.
				By default, a hot zone is a [Rect2] positioned such that its center is at [param in_node].[method GraphNode.get_connection_input_position]([param in_port]) (For output's case, call [method GraphNode.get_connection_output_position] instead). The hot zone's width is twice the Theme Property [code]port_grab_distance_horizontal[/code], and its height is twice the [code]port_grab_distance_vertical[/code].
				Below is a sample code to help get started:
				[codeblock]
				func _is_in_input_hotzone(in_node, in_port, mouse_position):
				    var port_size : Vector2 = Vector2(get_theme_constant("port_grab_distance_horizontal"), get_theme_constant("port_grab_distance_vertical"))
				    var port_pos : Vector2 = in_node.get_position() + in_node.get_connection_input_position(in_port) - port_size / 2
				    var rect = Rect2(port_pos, port_size)

				    return rect.has_point(mouse_position)
				[/codeblock]
			</description>
		</method>
		<method name="_is_in_output_hotzone" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="in_node" type="Object" />
			<param index="1" name="in_port" type="int" />
			<param index="2" name="mouse_position" type="Vector2" />
			<description>
				Returns whether the [param mouse_position] is in the output hot zone. For more information on hot zones, see [method _is_in_input_hotzone].
				Below is a sample code to help get started:
				[codeblock]
				func _is_in_output_hotzone(in_node, in_port, mouse_position):
				    var port_size : Vector2 = Vector2(get_theme_constant("port_grab_distance_horizontal"), get_theme_constant("port_grab_distance_vertical"))
				    var port_pos : Vector2 = in_node.get_position() + in_node.get_connection_output_position(in_port) - port_size / 2
				    var rect = Rect2(port_pos, port_size)

				    return rect.has_point(mouse_position)
				[/codeblock]
			</description>
		</method>
		<method name="_is_node_hover_valid" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				This virtual method can be used to insert additional error detection while the user is dragging a connection over a valid port.
				Return [code]true[/code] if the connection is indeed valid or return [code]false[/code] if the connection is impossible. If the connection is impossible, no snapping to the port and thus no connection request to that port will happen.
				In this example a connection to same node is suppressed:
				[codeblocks]
				[gdscript]
				func _is_node_hover_valid(from, from_port, to, to_port):
				    return from != to
				[/gdscript]
				[csharp]
				public override bool _IsNodeHoverValid(String from, int fromSlot, String to, int toSlot) {
				    return from != to;
				}
				[/csharp]
				[/codeblocks]
			</description>
		</method>
		<method name="add_valid_connection_type">
			<return type="void" />
			<param index="0" name="from_type" type="int" />
			<param index="1" name="to_type" type="int" />
			<description>
				Allows the connection between two different port types. The port type is defined individually for the left and the right port of each slot with the [method GraphNode.set_slot] method.
				See also [method is_valid_connection_type] and [method remove_valid_connection_type].
			</description>
		</method>
		<method name="add_valid_left_disconnect_type">
			<return type="void" />
			<param index="0" name="type" type="int" />
			<description>
				Allows to disconnect nodes when dragging from the left port of the [GraphNode]'s slot if it has the specified type. See also [method remove_valid_left_disconnect_type].
			</description>
		</method>
		<method name="add_valid_right_disconnect_type">
			<return type="void" />
			<param index="0" name="type" type="int" />
			<description>
				Allows to disconnect nodes when dragging from the right port of the [GraphNode]'s slot if it has the specified type. See also [method remove_valid_right_disconnect_type].
			</description>
		</method>
		<method name="arrange_nodes">
			<return type="void" />
			<description>
				Rearranges selected nodes in a layout with minimum crossings between connections and uniform horizontal and vertical gap between nodes.
			</description>
		</method>
		<method name="clear_connections">
			<return type="void" />
			<description>
				Removes all connections between nodes.
			</description>
		</method>
		<method name="connect_node">
			<return type="int" enum="Error" />
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				Create a connection between the [param from_port] of the [param from_node] [GraphNode] and the [param to_port] of the [param to_node] [GraphNode]. If the connection already exists, no connection is created.
			</description>
		</method>
		<method name="disconnect_node">
			<return type="void" />
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				Removes the connection between the [param from_port] of the [param from_node] [GraphNode] and the [param to_port] of the [param to_node] [GraphNode]. If the connection does not exist, no connection is removed.
			</description>
		</method>
		<method name="force_connection_drag_end">
			<return type="void" />
			<description>
				Ends the creation of the current connection. In other words, if you are dragging a connection you can use this method to abort the process and remove the line that followed your cursor.
				This is best used together with [signal connection_drag_started] and [signal connection_drag_ended] to add custom behavior like node addition through shortcuts.
				[b]Note:[/b] This method suppresses any other connection request signals apart from [signal connection_drag_ended].
			</description>
		</method>
		<method name="get_connection_line">
			<return type="PackedVector2Array" />
			<param index="0" name="from_node" type="Vector2" />
			<param index="1" name="to_node" type="Vector2" />
			<description>
				Returns the points which would make up a connection between [param from_node] and [param to_node].
			</description>
		</method>
		<method name="get_connection_list" qualifiers="const">
			<return type="Dictionary[]" />
			<description>
				Returns an Array containing the list of connections. A connection consists in a structure of the form [code]{ from_port: 0, from: "GraphNode name 0", to_port: 1, to: "GraphNode name 1" }[/code].
			</description>
		</method>
		<method name="get_zoom_hbox">
			<return type="HBoxContainer" />
			<description>
				Gets the [HBoxContainer] that contains the zooming and grid snap controls in the top left of the graph. You can use this method to reposition the toolbar or to add your own custom controls to it.
				[b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to hide it or any of its children, use their [member CanvasItem.visible] property.
			</description>
		</method>
		<method name="is_node_connected">
			<return type="bool" />
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				Returns [code]true[/code] if the [param from_port] of the [param from_node] [GraphNode] is connected to the [param to_port] of the [param to_node] [GraphNode].
			</description>
		</method>
		<method name="is_valid_connection_type" qualifiers="const">
			<return type="bool" />
			<param index="0" name="from_type" type="int" />
			<param index="1" name="to_type" type="int" />
			<description>
				Returns whether it's possible to make a connection between two different port types. The port type is defined individually for the left and the right port of each slot with the [method GraphNode.set_slot] method.
				See also [method add_valid_connection_type] and [method remove_valid_connection_type].
			</description>
		</method>
		<method name="remove_valid_connection_type">
			<return type="void" />
			<param index="0" name="from_type" type="int" />
			<param index="1" name="to_type" type="int" />
			<description>
				Disallows the connection between two different port types previously allowed by [method add_valid_connection_type]. The port type is defined individually for the left and the right port of each slot with the [method GraphNode.set_slot] method.
				See also [method is_valid_connection_type].
			</description>
		</method>
		<method name="remove_valid_left_disconnect_type">
			<return type="void" />
			<param index="0" name="type" type="int" />
			<description>
				Disallows to disconnect nodes when dragging from the left port of the [GraphNode]'s slot if it has the specified type. Use this to disable disconnection previously allowed with [method add_valid_left_disconnect_type].
			</description>
		</method>
		<method name="remove_valid_right_disconnect_type">
			<return type="void" />
			<param index="0" name="type" type="int" />
			<description>
				Disallows to disconnect nodes when dragging from the right port of the [GraphNode]'s slot if it has the specified type. Use this to disable disconnection previously allowed with [method add_valid_right_disconnect_type].
			</description>
		</method>
		<method name="set_connection_activity">
			<return type="void" />
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<param index="4" name="amount" type="float" />
			<description>
				Sets the coloration of the connection between [param from_node]'s [param from_port] and [param to_node]'s [param to_port] with the color provided in the [theme_item activity] theme property.
			</description>
		</method>
		<method name="set_selected">
			<return type="void" />
			<param index="0" name="node" type="Node" />
			<description>
				Sets the specified [param node] as the one selected.
			</description>
		</method>
	</methods>
	<members>
		<member name="arrange_nodes_button_hidden" type="bool" setter="set_arrange_nodes_button_hidden" getter="is_arrange_nodes_button_hidden" default="false">
			If [code]true[/code], the Arrange Nodes button is hidden.
		</member>
		<member name="clip_contents" type="bool" setter="set_clip_contents" getter="is_clipping_contents" overrides="Control" default="true" />
		<member name="connection_lines_antialiased" type="bool" setter="set_connection_lines_antialiased" getter="is_connection_lines_antialiased" default="true">
			If [code]true[/code], the lines between nodes will use antialiasing.
		</member>
		<member name="connection_lines_curvature" type="float" setter="set_connection_lines_curvature" getter="get_connection_lines_curvature" default="0.5">
			The curvature of the lines between the nodes. 0 results in straight lines.
		</member>
		<member name="connection_lines_thickness" type="float" setter="set_connection_lines_thickness" getter="get_connection_lines_thickness" default="2.0">
			The thickness of the lines between the nodes.
		</member>
		<member name="focus_mode" type="int" setter="set_focus_mode" getter="get_focus_mode" overrides="Control" enum="Control.FocusMode" default="2" />
		<member name="minimap_enabled" type="bool" setter="set_minimap_enabled" getter="is_minimap_enabled" default="true">
			If [code]true[/code], the minimap is visible.
		</member>
		<member name="minimap_opacity" type="float" setter="set_minimap_opacity" getter="get_minimap_opacity" default="0.65">
			The opacity of the minimap rectangle.
		</member>
		<member name="minimap_size" type="Vector2" setter="set_minimap_size" getter="get_minimap_size" default="Vector2(240, 160)">
			The size of the minimap rectangle. The map itself is based on the size of the grid area and is scaled to fit this rectangle.
		</member>
		<member name="panning_scheme" type="int" setter="set_panning_scheme" getter="get_panning_scheme" enum="GraphEdit.PanningScheme" default="0">
			Defines the control scheme for panning with mouse wheel.
		</member>
		<member name="right_disconnects" type="bool" setter="set_right_disconnects" getter="is_right_disconnects_enabled" default="false">
			If [code]true[/code], enables disconnection of existing connections in the GraphEdit by dragging the right end.
		</member>
		<member name="scroll_offset" type="Vector2" setter="set_scroll_ofs" getter="get_scroll_ofs" default="Vector2(0, 0)">
			The scroll offset.
		</member>
		<member name="show_zoom_label" type="bool" setter="set_show_zoom_label" getter="is_showing_zoom_label" default="false">
			If [code]true[/code], makes a label with the current zoom level visible. The zoom value is displayed in percents.
		</member>
		<member name="snap_distance" type="int" setter="set_snap" getter="get_snap" default="20">
			The snapping distance in pixels.
		</member>
		<member name="use_snap" type="bool" setter="set_use_snap" getter="is_using_snap" default="true">
			If [code]true[/code], enables snapping.
		</member>
		<member name="zoom" type="float" setter="set_zoom" getter="get_zoom" default="1.0">
			The current zoom value.
		</member>
		<member name="zoom_max" type="float" setter="set_zoom_max" getter="get_zoom_max" default="2.0736">
			The upper zoom limit.
		</member>
		<member name="zoom_min" type="float" setter="set_zoom_min" getter="get_zoom_min" default="0.232568">
			The lower zoom limit.
		</member>
		<member name="zoom_step" type="float" setter="set_zoom_step" getter="get_zoom_step" default="1.2">
			The step of each zoom level.
		</member>
	</members>
	<signals>
		<signal name="begin_node_move">
			<description>
				Emitted at the beginning of a GraphNode movement.
			</description>
		</signal>
		<signal name="connection_drag_ended">
			<description>
				Emitted at the end of a connection drag.
			</description>
		</signal>
		<signal name="connection_drag_started">
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="is_output" type="bool" />
			<description>
				Emitted at the beginning of a connection drag.
			</description>
		</signal>
		<signal name="connection_from_empty">
			<param index="0" name="to_node" type="StringName" />
			<param index="1" name="to_port" type="int" />
			<param index="2" name="release_position" type="Vector2" />
			<description>
				Emitted when user drags a connection from an input port into the empty space of the graph.
			</description>
		</signal>
		<signal name="connection_request">
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				Emitted to the GraphEdit when the connection between the [param from_port] of the [param from_node] [GraphNode] and the [param to_port] of the [param to_node] [GraphNode] is attempted to be created.
			</description>
		</signal>
		<signal name="connection_to_empty">
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="release_position" type="Vector2" />
			<description>
				Emitted when user drags a connection from an output port into the empty space of the graph.
			</description>
		</signal>
		<signal name="copy_nodes_request">
			<description>
				Emitted when the user presses [kbd]Ctrl + C[/kbd].
			</description>
		</signal>
		<signal name="delete_nodes_request">
			<param index="0" name="nodes" type="StringName[]" />
			<description>
				Emitted when a GraphNode is attempted to be removed from the GraphEdit. Provides a list of node names to be removed (all selected nodes, excluding nodes without closing button).
			</description>
		</signal>
		<signal name="disconnection_request">
			<param index="0" name="from_node" type="StringName" />
			<param index="1" name="from_port" type="int" />
			<param index="2" name="to_node" type="StringName" />
			<param index="3" name="to_port" type="int" />
			<description>
				Emitted to the GraphEdit when the connection between [param from_port] of [param from_node] [GraphNode] and [param to_port] of [param to_node] [GraphNode] is attempted to be removed.
			</description>
		</signal>
		<signal name="duplicate_nodes_request">
			<description>
				Emitted when a GraphNode is attempted to be duplicated in the GraphEdit.
			</description>
		</signal>
		<signal name="end_node_move">
			<description>
				Emitted at the end of a GraphNode movement.
			</description>
		</signal>
		<signal name="node_deselected">
			<param index="0" name="node" type="Node" />
			<description>
			</description>
		</signal>
		<signal name="node_selected">
			<param index="0" name="node" type="Node" />
			<description>
				Emitted when a GraphNode is selected.
			</description>
		</signal>
		<signal name="paste_nodes_request">
			<description>
				Emitted when the user presses [kbd]Ctrl + V[/kbd].
			</description>
		</signal>
		<signal name="popup_request">
			<param index="0" name="position" type="Vector2" />
			<description>
				Emitted when a popup is requested. Happens on right-clicking in the GraphEdit. [param position] is the position of the mouse pointer when the signal is sent.
			</description>
		</signal>
		<signal name="scroll_offset_changed">
			<param index="0" name="offset" type="Vector2" />
			<description>
				Emitted when the scroll offset is changed by the user. It will not be emitted when changed in code.
			</description>
		</signal>
	</signals>
	<constants>
		<constant name="SCROLL_ZOOMS" value="0" enum="PanningScheme">
			[kbd]Mouse Wheel[/kbd] will zoom, [kbd]Ctrl + Mouse Wheel[/kbd] will move the view.
		</constant>
		<constant name="SCROLL_PANS" value="1" enum="PanningScheme">
			[kbd]Mouse Wheel[/kbd] will move the view, [kbd]Ctrl + Mouse Wheel[/kbd] will zoom.
		</constant>
	</constants>
	<theme_items>
		<theme_item name="activity" data_type="color" type="Color" default="Color(1, 1, 1, 1)">
		</theme_item>
		<theme_item name="grid_major" data_type="color" type="Color" default="Color(1, 1, 1, 0.2)">
			Color of major grid lines.
		</theme_item>
		<theme_item name="grid_minor" data_type="color" type="Color" default="Color(1, 1, 1, 0.05)">
			Color of minor grid lines.
		</theme_item>
		<theme_item name="selection_fill" data_type="color" type="Color" default="Color(1, 1, 1, 0.3)">
			The fill color of the selection rectangle.
		</theme_item>
		<theme_item name="selection_stroke" data_type="color" type="Color" default="Color(1, 1, 1, 0.8)">
			The outline color of the selection rectangle.
		</theme_item>
		<theme_item name="port_hotzone_inner_extent" data_type="constant" type="int" default="22">
			The horizontal range within which a port can be grabbed (inner side).
		</theme_item>
		<theme_item name="port_hotzone_outer_extent" data_type="constant" type="int" default="26">
			The horizontal range within which a port can be grabbed (outer side).
		</theme_item>
		<theme_item name="layout" data_type="icon" type="Texture2D">
		</theme_item>
		<theme_item name="minimap" data_type="icon" type="Texture2D">
		</theme_item>
		<theme_item name="minus" data_type="icon" type="Texture2D">
			The icon for the zoom out button.
		</theme_item>
		<theme_item name="more" data_type="icon" type="Texture2D">
			The icon for the zoom in button.
		</theme_item>
		<theme_item name="reset" data_type="icon" type="Texture2D">
			The icon for the zoom reset button.
		</theme_item>
		<theme_item name="snap" data_type="icon" type="Texture2D">
			The icon for the snap toggle button.
		</theme_item>
		<theme_item name="bg" data_type="style" type="StyleBox">
			The background drawn under the grid.
		</theme_item>
	</theme_items>
</class>