summaryrefslogtreecommitdiffstats
path: root/doc/classes/NativeMenu.xml
blob: 2b9e41410688c10d1feb09069cd7976e08c1067b (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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
<?xml version="1.0" encoding="UTF-8" ?>
<class name="NativeMenu" inherits="Object" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		A server interface for OS native menus.
	</brief_description>
	<description>
		[NativeMenu] handles low-level access to the OS native global menu bar and popup menus.
		[b]Note:[/b] This is low-level API, consider using [MenuBar] with [member MenuBar.prefer_global_menu] set to [code]true[/code], and [PopupMenu] with [member PopupMenu.prefer_native_menu] set to [code]true[/code].
		To create a menu, use [method create_menu], add menu items using [code]add_*_item[/code] methods. To remove a menu, use [method free_menu].
		[codeblock]
		var menu

		func _menu_callback(item_id):
		    if item_id == "ITEM_CUT":
		        cut()
		    elif item_id == "ITEM_COPY":
		        copy()
		    elif item_id == "ITEM_PASTE":
		        paste()

		func _enter_tree():
		    # Create new menu and add items:
		    menu = NativeMenu.create_menu()
		    NativeMenu.add_item(menu, "Cut", _menu_callback, Callable(), "ITEM_CUT")
		    NativeMenu.add_item(menu, "Copy", _menu_callback, Callable(), "ITEM_COPY")
		    NativeMenu.add_separator(menu)
		    NativeMenu.add_item(menu, "Paste", _menu_callback, Callable(), "ITEM_PASTE")

		func _on_button_pressed():
		    # Show popup menu at mouse position:
		    NativeMenu.popup(menu, DisplayServer.mouse_get_position())

		func _exit_tree():
		    # Remove menu when it's no longer needed:
		    NativeMenu.free_menu(menu)
		[/codeblock]
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="add_check_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="label" type="String" />
			<param index="2" name="callback" type="Callable" default="Callable()" />
			<param index="3" name="key_callback" type="Callable" default="Callable()" />
			<param index="4" name="tag" type="Variant" default="null" />
			<param index="5" name="accelerator" type="int" enum="Key" default="0" />
			<param index="6" name="index" type="int" default="-1" />
			<description>
				Adds a new checkable item with text [param label] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_icon_check_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="icon" type="Texture2D" />
			<param index="2" name="label" type="String" />
			<param index="3" name="callback" type="Callable" default="Callable()" />
			<param index="4" name="key_callback" type="Callable" default="Callable()" />
			<param index="5" name="tag" type="Variant" default="null" />
			<param index="6" name="accelerator" type="int" enum="Key" default="0" />
			<param index="7" name="index" type="int" default="-1" />
			<description>
				Adds a new checkable item with text [param label] and icon [param icon] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_icon_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="icon" type="Texture2D" />
			<param index="2" name="label" type="String" />
			<param index="3" name="callback" type="Callable" default="Callable()" />
			<param index="4" name="key_callback" type="Callable" default="Callable()" />
			<param index="5" name="tag" type="Variant" default="null" />
			<param index="6" name="accelerator" type="int" enum="Key" default="0" />
			<param index="7" name="index" type="int" default="-1" />
			<description>
				Adds a new item with text [param label] and icon [param icon] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_icon_radio_check_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="icon" type="Texture2D" />
			<param index="2" name="label" type="String" />
			<param index="3" name="callback" type="Callable" default="Callable()" />
			<param index="4" name="key_callback" type="Callable" default="Callable()" />
			<param index="5" name="tag" type="Variant" default="null" />
			<param index="6" name="accelerator" type="int" enum="Key" default="0" />
			<param index="7" name="index" type="int" default="-1" />
			<description>
				Adds a new radio-checkable item with text [param label] and icon [param icon] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] Radio-checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See [method set_item_checked] for more info on how to control it.
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="label" type="String" />
			<param index="2" name="callback" type="Callable" default="Callable()" />
			<param index="3" name="key_callback" type="Callable" default="Callable()" />
			<param index="4" name="tag" type="Variant" default="null" />
			<param index="5" name="accelerator" type="int" enum="Key" default="0" />
			<param index="6" name="index" type="int" default="-1" />
			<description>
				Adds a new item with text [param label] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_multistate_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="label" type="String" />
			<param index="2" name="max_states" type="int" />
			<param index="3" name="default_state" type="int" />
			<param index="4" name="callback" type="Callable" default="Callable()" />
			<param index="5" name="key_callback" type="Callable" default="Callable()" />
			<param index="6" name="tag" type="Variant" default="null" />
			<param index="7" name="accelerator" type="int" enum="Key" default="0" />
			<param index="8" name="index" type="int" default="-1" />
			<description>
				Adds a new item with text [param label] to the global menu [param rid].
				Contrarily to normal binary items, multistate items can have more than two states, as defined by [param max_states]. Each press or activate of the item will increase the state by one. The default value is defined by [param default_state].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] By default, there's no indication of the current item state, it should be changed manually.
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_radio_check_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="label" type="String" />
			<param index="2" name="callback" type="Callable" default="Callable()" />
			<param index="3" name="key_callback" type="Callable" default="Callable()" />
			<param index="4" name="tag" type="Variant" default="null" />
			<param index="5" name="accelerator" type="int" enum="Key" default="0" />
			<param index="6" name="index" type="int" default="-1" />
			<description>
				Adds a new radio-checkable item with text [param label] to the global menu [param rid].
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				An [param accelerator] can optionally be defined, which is a keyboard shortcut that can be pressed to trigger the menu button even if it's not currently open. The [param accelerator] is generally a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] Radio-checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See [method set_item_checked] for more info on how to control it.
				[b]Note:[/b] The [param callback] and [param key_callback] Callables need to accept exactly one Variant parameter, the parameter passed to the Callables will be the value passed to [param tag].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] On Windows, [param accelerator] and [param key_callback] are ignored.
			</description>
		</method>
		<method name="add_separator">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="index" type="int" default="-1" />
			<description>
				Adds a separator between items to the global menu [param rid]. Separators also occupy an index.
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="add_submenu_item">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="label" type="String" />
			<param index="2" name="submenu_rid" type="RID" />
			<param index="3" name="tag" type="Variant" default="null" />
			<param index="4" name="index" type="int" default="-1" />
			<description>
				Adds an item that will act as a submenu of the global menu [param rid]. The [param submenu_rid] argument is the RID of the global menu that will be shown when the item is clicked.
				Returns index of the inserted item, it's not guaranteed to be the same as [param index] value.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="clear">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<description>
				Removes all items from the global menu [param rid].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="create_menu">
			<return type="RID" />
			<description>
				Creates a new global menu object.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="find_item_index_with_submenu" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="submenu_rid" type="RID" />
			<description>
				Returns the index of the item with the submenu specified by [param submenu_rid]. Indices are automatically assigned to each item by the engine, and cannot be set manually.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="find_item_index_with_tag" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="tag" type="Variant" />
			<description>
				Returns the index of the item with the specified [param tag]. Indices are automatically assigned to each item by the engine, and cannot be set manually.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="find_item_index_with_text" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="text" type="String" />
			<description>
				Returns the index of the item with the specified [param text]. Indices are automatically assigned to each item by the engine, and cannot be set manually.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="free_menu">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<description>
				Frees a global menu object created by this [NativeMenu].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_accelerator" qualifiers="const">
			<return type="int" enum="Key" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the accelerator of the item at index [param idx]. Accelerators are special combinations of keys that activate the item, no matter which control is focused.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_item_callback" qualifiers="const">
			<return type="Callable" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the callback of the item at index [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_count" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns number of items in the global menu [param rid].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_icon" qualifiers="const">
			<return type="Texture2D" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the icon of the item at index [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_indentation_level" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the horizontal offset of the item at the given [param idx].
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_item_key_callback" qualifiers="const">
			<return type="Callable" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the callback of the item accelerator at index [param idx].
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_item_max_states" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns number of states of a multistate item. See [method add_multistate_item] for details.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_state" qualifiers="const">
			<return type="int" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the state of a multistate item. See [method add_multistate_item] for details.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_submenu" qualifiers="const">
			<return type="RID" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the submenu ID of the item at index [param idx]. See [method add_submenu_item] for more info on how to add a submenu.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_tag" qualifiers="const">
			<return type="Variant" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the metadata of the specified item, which might be of any type. You can set it with [method set_item_tag], which provides a simple way of assigning context data to items.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_text" qualifiers="const">
			<return type="String" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the text of the item at index [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_item_tooltip" qualifiers="const">
			<return type="String" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns the tooltip associated with the specified index [param idx].
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_minimum_width" qualifiers="const">
			<return type="float" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns global menu minimum width.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_popup_close_callback" qualifiers="const">
			<return type="Callable" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns global menu close callback.
				b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_popup_open_callback" qualifiers="const">
			<return type="Callable" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns global menu open callback.
				b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_size" qualifiers="const">
			<return type="Vector2" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns global menu size.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="get_system_menu" qualifiers="const">
			<return type="RID" />
			<param index="0" name="menu_id" type="int" enum="NativeMenu.SystemMenus" />
			<description>
				Returns RID of a special system menu.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="get_system_menu_name" qualifiers="const">
			<return type="String" />
			<param index="0" name="menu_id" type="int" enum="NativeMenu.SystemMenus" />
			<description>
				Returns readable name of a special system menu.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="has_feature" qualifiers="const">
			<return type="bool" />
			<param index="0" name="feature" type="int" enum="NativeMenu.Feature" />
			<description>
				Returns [code]true[/code] if the specified [param feature] is supported by the current [NativeMenu], [code]false[/code] otherwise.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="has_menu" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns [code]true[/code] if [param rid] is valid global menu.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="has_system_menu" qualifiers="const">
			<return type="bool" />
			<param index="0" name="menu_id" type="int" enum="NativeMenu.SystemMenus" />
			<description>
				Returns [code]true[/code] if a special system menu is supported.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="is_item_checkable" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns [code]true[/code] if the item at index [param idx] is checkable in some way, i.e. if it has a checkbox or radio button.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="is_item_checked" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns [code]true[/code] if the item at index [param idx] is checked.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="is_item_disabled" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns [code]true[/code] if the item at index [param idx] is disabled. When it is disabled it can't be selected, or its action invoked.
				See [method set_item_disabled] for more info on how to disable an item.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="is_item_hidden" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns [code]true[/code] if the item at index [param idx] is hidden.
				See [method set_item_hidden] for more info on how to hide an item.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="is_item_radio_checkable" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Returns [code]true[/code] if the item at index [param idx] has radio button-style checkability.
				[b]Note:[/b] This is purely cosmetic; you must add the logic for checking/unchecking items in radio groups.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="is_opened" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<description>
				Returns [code]true[/code] if the menu is currently opened.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="is_system_menu" qualifiers="const">
			<return type="bool" />
			<param index="0" name="rid" type="RID" />
			<description>
				Return [code]true[/code] is global menu is a special system menu.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="popup">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="position" type="Vector2i" />
			<description>
				Shows the global menu at [param position] in the screen coordinates.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="remove_item">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<description>
				Removes the item at index [param idx] from the global menu [param rid].
				[b]Note:[/b] The indices of items after the removed item will be shifted by one.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_interface_direction">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="is_rtl" type="bool" />
			<description>
				Sets the menu text layout direction from right-to-left if [param is_rtl] is [code]true[/code].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_accelerator">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="keycode" type="int" enum="Key" />
			<description>
				Sets the accelerator of the item at index [param idx]. [param keycode] can be a single [enum Key], or a combination of [enum KeyModifierMask]s and [enum Key]s using bitwise OR such as [code]KEY_MASK_CTRL | KEY_A[/code] ([kbd]Ctrl + A[/kbd]).
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_item_callback">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="callback" type="Callable" />
			<description>
				Sets the callback of the item at index [param idx]. Callback is emitted when an item is pressed.
				[b]Note:[/b] The [param callback] Callable needs to accept exactly one Variant parameter, the parameter passed to the Callable will be the value passed to the [code]tag[/code] parameter when the menu item was created.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_checkable">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="checkable" type="bool" />
			<description>
				Sets whether the item at index [param idx] has a checkbox. If [code]false[/code], sets the type of the item to plain text.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_checked">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="checked" type="bool" />
			<description>
				Sets the checkstate status of the item at index [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_disabled">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="disabled" type="bool" />
			<description>
				Enables/disables the item at index [param idx]. When it is disabled, it can't be selected and its action can't be invoked.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_hidden">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="hidden" type="bool" />
			<description>
				Hides/shows the item at index [param idx]. When it is hidden, an item does not appear in a menu and its action cannot be invoked.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_item_hover_callbacks">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="callback" type="Callable" />
			<description>
				Sets the callback of the item at index [param idx]. The callback is emitted when an item is hovered.
				[b]Note:[/b] The [param callback] Callable needs to accept exactly one Variant parameter, the parameter passed to the Callable will be the value passed to the [code]tag[/code] parameter when the menu item was created.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_item_icon">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="icon" type="Texture2D" />
			<description>
				Replaces the [Texture2D] icon of the specified [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
				[b]Note:[/b] This method is not supported by macOS Dock menu items.
			</description>
		</method>
		<method name="set_item_indentation_level">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="level" type="int" />
			<description>
				Sets the horizontal offset of the item at the given [param idx].
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_item_key_callback">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="key_callback" type="Callable" />
			<description>
				Sets the callback of the item at index [param idx]. Callback is emitted when its accelerator is activated.
				[b]Note:[/b] The [param key_callback] Callable needs to accept exactly one Variant parameter, the parameter passed to the Callable will be the value passed to the [code]tag[/code] parameter when the menu item was created.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_item_max_states">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="max_states" type="int" />
			<description>
				Sets number of state of a multistate item. See [method add_multistate_item] for details.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_radio_checkable">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="checkable" type="bool" />
			<description>
				Sets the type of the item at the specified index [param idx] to radio button. If [code]false[/code], sets the type of the item to plain text.
				[b]Note:[/b] This is purely cosmetic; you must add the logic for checking/unchecking items in radio groups.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_state">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="state" type="int" />
			<description>
				Sets the state of a multistate item. See [method add_multistate_item] for details.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_submenu">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="submenu_rid" type="RID" />
			<description>
				Sets the submenu RID of the item at index [param idx]. The submenu is a global menu that would be shown when the item is clicked.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_tag">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="tag" type="Variant" />
			<description>
				Sets the metadata of an item, which may be of any type. You can later get it with [method get_item_tag], which provides a simple way of assigning context data to items.
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_text">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="text" type="String" />
			<description>
				Sets the text of the item at index [param idx].
				[b]Note:[/b] This method is implemented on macOS and Windows.
			</description>
		</method>
		<method name="set_item_tooltip">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="idx" type="int" />
			<param index="2" name="tooltip" type="String" />
			<description>
				Sets the [String] tooltip of the item at the specified index [param idx].
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_minimum_width">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="width" type="float" />
			<description>
				Sets the minimum width of the global menu.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_popup_close_callback">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="callback" type="Callable" />
			<description>
				Registers callable to emit when the menu is about to show.
				[b]Note:[/b] The OS can simulate menu opening to track menu item changes and global shortcuts, in which case the corresponding close callback is not triggered. Use [method is_opened] to check if the menu is currently opened.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
		<method name="set_popup_open_callback">
			<return type="void" />
			<param index="0" name="rid" type="RID" />
			<param index="1" name="callback" type="Callable" />
			<description>
				Registers callable to emit after the menu is closed.
				[b]Note:[/b] This method is implemented only on macOS.
			</description>
		</method>
	</methods>
	<constants>
		<constant name="FEATURE_GLOBAL_MENU" value="0" enum="Feature">
			[NativeMenu] supports native global main menu.
		</constant>
		<constant name="FEATURE_POPUP_MENU" value="1" enum="Feature">
			[NativeMenu] supports native popup menus.
		</constant>
		<constant name="FEATURE_OPEN_CLOSE_CALLBACK" value="2" enum="Feature">
			[NativeMenu] supports menu open and close callbacks.
		</constant>
		<constant name="FEATURE_HOVER_CALLBACK" value="3" enum="Feature">
			[NativeMenu] supports menu item hover callback.
		</constant>
		<constant name="FEATURE_KEY_CALLBACK" value="4" enum="Feature">
			[NativeMenu] supports menu item accelerator/key callback.
		</constant>
		<constant name="INVALID_MENU_ID" value="0" enum="SystemMenus">
			Invalid special system menu ID.
		</constant>
		<constant name="MAIN_MENU_ID" value="1" enum="SystemMenus">
			Global main menu ID.
		</constant>
		<constant name="APPLICATION_MENU_ID" value="2" enum="SystemMenus">
			Application (first menu after "Apple" menu on macOS) menu ID.
		</constant>
		<constant name="WINDOW_MENU_ID" value="3" enum="SystemMenus">
			"Window" menu ID (on macOS this menu includes standard window control items and a list of open windows).
		</constant>
		<constant name="HELP_MENU_ID" value="4" enum="SystemMenus">
			"Help" menu ID (on macOS this menu includes help search bar).
		</constant>
		<constant name="DOCK_MENU_ID" value="5" enum="SystemMenus">
			Dock icon right-click menu ID (on macOS this menu include standard application control items and a list of open windows).
		</constant>
	</constants>
</class>