forked from SketchUp/ruby-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UI.html
4178 lines (2115 loc) · 114 KB
/
UI.html
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
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- VIEWPORT -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- AUTHOR and GENERATOR -->
<meta name="author" content="SketchUp Extensibility Team">
<meta name="generator" content="YARD https://yardoc.org">
<!-- TITLE -->
<title>
Module: UI — SketchUp Ruby API Documentation
</title>
<!-- SHORTCUT ICON -->
<link rel="shortcut icon" type="image/vnd.microsoft.icon"
href="https://ruby.sketchup.com/favicon.ico" />
<!-- GENERIC META PROPERTIES -->
<meta name="url" content="https://ruby.sketchup.com/UI.html" />
<meta name="image" content="https://ruby.sketchup.com/images/Ruby.svg" />
<meta name="title" content="Module: UI" />
<meta name="name" content="SketchUp Ruby API Documentation" />
<meta name="description" content="The UI module contains a number of methods for creating simple UI elements from a SketchUp Ruby script." />
<!-- OPEN GRAPH META PROPERTIES -->
<meta property="og:site_name" content="SketchUp Ruby API Documentation" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://ruby.sketchup.com/images/Ruby.svg" />
<meta property="og:image:width" content="60" />
<meta property="og:image:height" content="60" />
<meta property="og:title" content="Module: UI" />
<meta property="og:url" content="https://ruby.sketchup.com/UI.html" />
<meta property="og:description" content="The UI module contains a number of methods for creating simple UI elements from a SketchUp Ruby script." />
<!-- TWITTER CARD META PROPERTIES -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@sketchup" />
<meta name="twitter:title" content="Module: UI" />
<meta name="twitter:description" content="The UI module contains a number of methods for creating simple UI elements from a SketchUp Ruby script." />
<meta name="twitter:image:src" content="https://ruby.sketchup.com/images/Ruby.svg?s=120" />
<meta name="twitter:url" content="https://ruby.sketchup.com/UI.html" />
<!-- STYLESHEETS -->
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic" />
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/sketchup.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/rubyapi.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="css/rouge.css" type="text/css" charset="utf-8" />
<!-- SCRIPTS -->
<script type="text/javascript">
pathId = "UI";
relpath = '';
</script>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery-migrate.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
<script>
// Every time this page is loaded, it sends this action to SketchUp, telling
// SketchUp that a new page has loaded that has example snippets that should
// be replaced with code editors. Nothing happens if the page is loaded in a
// regular browser outside of the SketchUp client.
$( document ).ready(function() {
if (typeof sketchup == 'object') {
sketchup.page_loaded();
}
});
</script>
</head>
<body>
<!-- SU - start -->
<header id="navbar" role="banner" class="navbar navbar-fixed-top navbar-inverse">
<div id="api-documentation-header">
<div class="navbar-header">
<a class="logo navbar-btn pull-left" href="https://developer.sketchup.com" title="Home">
<img src="images/sketchup-logo.svg" alt="SketchUp">
</a>
<a class="name navbar-brand" href="/en" title="Home">SketchUp Developer Center</a>
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<nav role="navigation">
<ul class="menu nav navbar-nav">
<li class="first leaf"><a href="https://forums.sketchup.com/c/developers">Community</a></li>
<li class="leaf"><a href="https://blog.sketchup.com/">SketchUp Blog</a></li>
<li class="leaf"><a href="https://www.sketchup.com/download" class="top-menu--download-button">Download</a></li>
<li class="last expanded dropdown">
<a href="https://www.trimble.com" class="trimble-top-menu-item dropdown-toggle" data-target="#" data-toggle="dropdown"><img src="images/trimble-logo-white.svg" alt="Trimble"><span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="first leaf"><a href="https://connect.trimble.com/">Trimble Connect</a></li>
<li class="leaf"><a href="https://www.trimble.com/Corporate/About_Trimble.aspx">About Trimble</a></li>
<li class="last leaf"><a href="https://buildings.trimble.com/">Trimble Buildings</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- SU - end -->
<div id="su-content">
<div class="nav_wrap">
<iframe id="nav" src="class_list.html"></iframe>
<div id="resizer"></div>
</div>
<div id="main" tabindex="-1">
<div id="header">
<div id="menu">
<a href="_index.html">Index (U)</a> »
<span class="title">UI</span>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="class_list.html">
<svg width="24" height="24">
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
</svg>
</a>
</div>
<div class="clear"></div>
</div>
<div id="content"><h1>Module: UI
</h1>
<div class="box_info">
</div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
<p>The UI module contains a number of methods for creating simple UI elements from a SketchUp Ruby script.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Version:</p>
<ul class="version">
<li>
<div class='inline'>
<p>SketchUp 6.0</p>
</div>
</li>
</ul>
</div><h2>Defined Under Namespace</h2>
<p class="children">
<strong class="classes">Classes:</strong> <span class='object_link'><a href="UI/Command.html" title="UI::Command (class)">Command</a></span>, <span class='object_link'><a href="UI/HtmlDialog.html" title="UI::HtmlDialog (class)">HtmlDialog</a></span>, <span class='object_link'><a href="UI/Notification.html" title="UI::Notification (class)">Notification</a></span>, <span class='object_link'><a href="UI/Toolbar.html" title="UI::Toolbar (class)">Toolbar</a></span>, <span class='object_link'><a href="UI/WebDialog.html" title="UI::WebDialog (class)">WebDialog</a></span>
</p>
<h2>
Class Method Summary
<a
id="class_method_summary"
href="#class_method_summary"
title="Permalink">#</a>
<small><a href="#" class="summary_toggle">collapse</a></small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#add_context_menu_handler-class_method" title="add_context_menu_handler (class method)">.<strong>add_context_menu_handler</strong> {|menu| ... } ⇒ Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The add_context_menu_handler method is used to register a block of code with SketchUp that will be called when a context menu is to be displayed.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#beep-class_method" title="beep (class method)">.<strong>beep</strong> ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The beep method plays a system beep sound.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#create_cursor-class_method" title="create_cursor (class method)">.<strong>create_cursor</strong>(path, hot_x, hot_y) ⇒ Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#create_cursor-class_method" title="UI.create_cursor (method)">UI.create_cursor</a></span> method is used to create a cursor from an image file at the specified location.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#get_clipboard_data-class_method" title="get_clipboard_data (class method)">.<strong>get_clipboard_data</strong> ⇒ String<sup>?</sup> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Returns the plain text available on the clipboard, if there is any.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#inputbox-class_method" title="inputbox (class method)">.<strong>inputbox</strong>(*args) ⇒ Array<String>, false </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Creates a dialog box for inputting user information.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#inspector_names-class_method" title="inspector_names (class method)">.<strong>inspector_names</strong> ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#inspector_names-class_method" title="UI.inspector_names (method)">UI.inspector_names</a></span> method is used to returns the names of all the inspectors.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#menu-class_method" title="menu (class method)">.<strong>menu</strong>(menu_name = "Extensions") ⇒ Sketchup::Menu </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#menu-class_method" title="UI.menu (method)">UI.menu</a></span> method retrieves a SketchUp's menu object with a given name.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#messagebox-class_method" title="messagebox (class method)">.<strong>messagebox</strong>(message, type = MB_OK) ⇒ Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Creates a dialog box containing static text with a series of buttons for the user to choose from.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#model_info_pages-class_method" title="model_info_pages (class method)">.<strong>model_info_pages</strong> ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The model_info_pages method is used to returns the names of all the available model info pages.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#openpanel-class_method" title="openpanel (class method)">.<strong>openpanel</strong>(title, directory, filename) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#openpanel-class_method" title="UI.openpanel (method)">UI.openpanel</a></span> method is used to display the Open dialog box.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#openURL-class_method" title="openURL (class method)">.<strong>openURL</strong>(url) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#openURL-class_method" title="UI.openURL (method)">UI.openURL</a></span> method is used to open the default browser to a URL.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#play_sound-class_method" title="play_sound (class method)">.<strong>play_sound</strong>(filename) ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The play_sound method is used to play a sound file.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#preferences_pages-class_method" title="preferences_pages (class method)">.<strong>preferences_pages</strong> ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The preferences_pages method is used to returns the names of all the preferences pages.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#refresh_inspectors-class_method" title="refresh_inspectors (class method)">.<strong>refresh_inspectors</strong> ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Tells SketchUp to refresh all inspectors such as the Component Browser and the Outliner.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#refresh_toolbars-class_method" title="refresh_toolbars (class method)">.<strong>refresh_toolbars</strong> ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Tells SketchUp to refresh all floating toolbars.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#savepanel-class_method" title="savepanel (class method)">.<strong>savepanel</strong>(title, directory, filename) ⇒ String </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#savepanel-class_method" title="UI.savepanel (method)">UI.savepanel</a></span> method is used to display the Save dialog box.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#scale_factor-class_method" title="scale_factor (class method)">.<strong>scale_factor</strong> ⇒ Float </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Returns the scaling factor SketchUp uses on high DPI monitors.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#select_directory-class_method" title="select_directory (class method)">.<strong>select_directory</strong>(options = {}) ⇒ String, ... </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#select_directory-class_method" title="UI.select_directory (method)">UI.select_directory</a></span> method is used to display the OS dialog for selecting one or several directories from the file system.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#set_clipboard_data-class_method" title="set_clipboard_data (class method)">.<strong>set_clipboard_data</strong>(data) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Copies plain text to the clipboard.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#set_cursor-class_method" title="set_cursor (class method)">.<strong>set_cursor</strong>(cursor_id) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#set_cursor-class_method" title="UI.set_cursor (method)">UI.set_cursor</a></span> method is used to change the cursor to a new cursor with a given cursor id.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#set_toolbar_visible-class_method" title="set_toolbar_visible (class method)">.<strong>set_toolbar_visible</strong>(name, visible) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The set_toolbar_visible method is used to set whether a given toolbar is visible.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#show_extension_manager-class_method" title="show_extension_manager (class method)">.<strong>show_extension_manager</strong> ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <code>show_extension_manager</code> method is used to display the Extension Manager dialog.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#show_inspector-class_method" title="show_inspector (class method)">.<strong>show_inspector</strong>(name) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#show_inspector-class_method" title="UI.show_inspector (method)">UI.show_inspector</a></span> method is used to display the inspector with the given name.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#show_model_info-class_method" title="show_model_info (class method)">.<strong>show_model_info</strong>(page_name) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The <span class='object_link'><a href="#show_model_info-class_method" title="UI.show_model_info (method)">UI.show_model_info</a></span> method is used to display the model info dialog for a specific page.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#show_preferences-class_method" title="show_preferences (class method)">.<strong>show_preferences</strong>(page_name) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The show_preferences method is used to display a SketchUp preferences dialog.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#start_timer-class_method" title="start_timer (class method)">.<strong>start_timer</strong>(seconds, repeat = false) {|procedure| ... } ⇒ Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The start_timer method is used to start a timer.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#stop_timer-class_method" title="stop_timer (class method)">.<strong>stop_timer</strong>(id) ⇒ nil </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The stop_timer method is used to stop a timer based on its id.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#toolbar-class_method" title="toolbar (class method)">.<strong>toolbar</strong>(name) ⇒ UI::Toolbar </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The toolbar method is used to get a Ruby toolbar by name.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#toolbar_names-class_method" title="toolbar_names (class method)">.<strong>toolbar_names</strong> ⇒ Array<String> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The toolbar_names method is used to return the name of all the available native toolbars (this differs between PC and Mac).</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#toolbar_visible%3F-class_method" title="toolbar_visible? (class method)">.<strong>toolbar_visible?</strong>(name) ⇒ Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>The toolbar_visible? method is used to determine whether a given toolbar is visible.</p>
</div></span>
</li>
</ul>
<div id="class_method_details" class="method_details_list">
<h2>Class Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="add_context_menu_handler-class_method">
<a style="float: right;" href="#header" title="Return to Top">↑</a>
.<strong>add_context_menu_handler</strong> {|menu| ... } ⇒ <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>The add_context_menu_handler method is used to register a block of code with SketchUp that will be called when a context menu is to be displayed. The context menu handler can then display the context menu with the items that you have added.</p>
<p>Be careful with what you do in a context menu handler. If you perform an operation takes take a long time, such as traversing the model or selection in a large model it will delay the menu.</p>
<p>See the contextmenu.rb script in the Plugins/examples directory for an example.</p>
</div>
</div>
<div class="tags">
<div class="examples">
<p class="tag_title">Examples:</p>
<pre class="example code"><code><span class='comment'># Right click on anything to see a Hello World item.
</span><span class='const'><span class='object_link'><a href="" title="UI (module)">UI</a></span></span><span class='period'>.</span><span class='id identifier rubyid_add_context_menu_handler'>add_context_menu_handler</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_context_menu'>context_menu</span><span class='op'>|</span>
<span class='id identifier rubyid_context_menu'>context_menu</span><span class='period'>.</span><span class='id identifier rubyid_add_item'>add_item</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Hello World</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span> <span class='lbrace'>{</span>
<span class='const'><span class='object_link'><a href="" title="UI (module)">UI</a></span></span><span class='period'>.</span><span class='id identifier rubyid_messagebox'><span class='object_link'><a href="#messagebox-class_method" title="UI.messagebox (method)">messagebox</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Hello world</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
<span class='rbrace'>}</span>
<span class='kw'>end</span></code></pre>
</div>
<p class="tag_title">Yields:</p>
<ul class="yield">
<li>
<span class='type'>(<tt><span class='object_link'><a href="#menu-class_method" title="UI.menu (method)">menu</a></span></tt>)</span>