-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCommandsConfig.xml
More file actions
2422 lines (2087 loc) · 99.1 KB
/
Copy pathCommandsConfig.xml
File metadata and controls
2422 lines (2087 loc) · 99.1 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!-- *************************************************************** -->
<!-- CommandsConfig_compat.xml -->
<!-- Notes: -->
<!-- 1) Commands reference icons via iconRef (preferred). -->
<!-- 2) iconRef is resolved from IconLibraryConfig.xml. -->
<!-- 3) The compat file may also keep legacy @icon for fallback. -->
<!-- *************************************************************** -->
<CommandsConfig version="1.0">
<!-- ========================================================= -->
<!-- 1. Command dictionary: all environments share these IDs -->
<!-- ========================================================= -->
<commands>
<!-- ===== UI built-in commands (wired to MainWindowQt) ===== -->
<command id="data.openLastSession"
label="Open Last Session"
tooltip="Open the last session"
category="data"
iconRef="home.open_last_session"
icon=":/Ribbon/home/data/light/png/32/open_last_session.png"
environments="workbench.home"/>
<command id="data.selectWorkingDirectory"
label="Select Working Directory"
tooltip="Select the working directory"
category="data"
iconRef="home.select_working_directory"
icon=":/Ribbon/home/data/light/png/32/select_working_directory.png"
environments="workbench.home"/>
<command id="data.eraseNotDisplayed"
label="Erase Not Displayed"
tooltip="Erase the not displayed"
category="data"
iconRef="home.erase_not_displayed"
icon=":/Ribbon/home/data/light/png/32/erase_not_displayed.png"
environments="workbench.home"/>
<command id="settings.modelDisplay"
label="Model Display"
tooltip="Set model display options"
category="settings"
iconRef="home.model_display"
icon=":/Ribbon/home/settings/light/png/16/model_display.png"
environments="workbench.home"/>
<command id="settings.systemAppearance"
label="System Appearance"
tooltip="Set system appearance options"
category="settings"
iconRef="home.system_appearance"
icon=":/Ribbon/home/settings/light/png/16/system_appearance.png"
environments="workbench.home"/>
<command id="utilities.playTrailFile"
label="Play Trail File"
tooltip="Play the trail file"
category="utilities"
iconRef="home.play_trail_file"
icon=":/Ribbon/home/utilities/light/png/16/play_trail_file.png"
environments="workbench.home"/>
<command id="utilities.auxApplication"
label="Auxiliary Application"
tooltip="Manage the auxiliary application"
category="utilities"
iconRef="home.aux_application"
icon=":/Ribbon/home/utilities/light/png/16/auxiliary_applications.png"
environments="workbench.home"/>
<command id="ui.appMenu"
label="SolidDesigner"
tooltip="Open application menu"
category="ui.titlebar"
iconRef="app"
icon=":/TitleBar/brand/app.svg"
environments="workbench.home,workbench.part,workbench.sketch,workbench.assembly,workbench.drawing,workbench.mfg,workbench.bim"/>
<!-- titlebar's windows button -->
<command id="ui.windowsMenu"
label="Windows"
tooltip="Window and view management"
category="ui.titlebar"
iconRef="windows"
icon=":/TitleBar/commands/windows.svg"
environments="workbench.home,workbench.part,workbench.sketch,workbench.assembly,workbench.drawing,workbench.mfg,workbench.bim"/>
<command id="ui.qatMenu"
label="Quick Access"
tooltip="Quick access toolbar options"
category="ui.titlebar"
iconRef="qat"
icon=":/TitleBar/quick/light/svg/qat.svg"
environments="workbench.home,workbench.part,workbench.sketch,workbench.assembly,workbench.drawing,workbench.mfg,workbench.bim"/>
<!-- ===== Edit commands ===== -->
<command id="edit.undo"
label="Undo"
tooltip="Undo last operation"
category="edit"
iconRef="edit.undo"
icon="icons/edit/undo.svg"
gesture="Ctrl+Z"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.redo"
label="Redo"
tooltip="Redo last undone operation"
category="edit"
iconRef="edit.redo"
icon="icons/edit/redo.svg"
gesture="Ctrl+Y"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.cut"
label="Cut"
tooltip="Cut selected items to clipboard"
category="edit"
iconRef="edit.cut"
icon="icons/edit/cut.svg"
gesture="Ctrl+X"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.copy"
label="Copy"
tooltip="Copy selected items to clipboard"
category="edit"
iconRef="edit.copy"
icon="icons/edit/copy.svg"
gesture="Ctrl+C"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.paste"
label="Paste"
tooltip="Paste items from clipboard"
category="edit"
iconRef="edit.paste"
icon="icons/edit/paste.svg"
gesture="Ctrl+V"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.delete"
label="Delete"
tooltip="Delete selected items"
category="edit"
iconRef="edit.delete"
icon="icons/edit/delete.svg"
gesture="Del"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="edit.selectAll"
label="Select All"
tooltip="Select all objects"
category="edit"
iconRef="edit.select_all"
icon="icons/edit/select_all.svg"
gesture="Ctrl+A"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== UI built-in commands (wired to MainWindowQt) ===== -->
<command id="ui.toggleMode"
label="Toggle Ribbon / Classic"
tooltip="Switch between Ribbon and Classic menu modes"
category="ui"
iconRef="ui.toggle_mode"
icon="icons/ui/toggle_mode.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="ui.saveLayout"
label="Save Layout"
tooltip="Save current window layout"
category="ui"
iconRef="ui.save_layout"
icon="icons/ui/save_layout.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="ui.restoreLayout"
label="Restore Layout"
tooltip="Restore saved window layout"
category="ui"
iconRef="ui.restore_layout"
icon="icons/ui/restore_layout.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== Help commands ===== -->
<command id="help.contents"
label="Help Contents"
tooltip="Open help contents"
category="help"
iconRef="help.contents"
icon="icons/help/contents.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="help.about"
label="About"
tooltip="Show about dialog"
category="help"
iconRef="help.about"
icon="icons/help/about.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== Tools / Journal / Expressions / Python ===== -->
<command id="tools.commandLine"
label="Command Line"
tooltip="Open command line window"
category="tools"
iconRef="tools.command_line"
icon="icons/tools/command_line.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== General: File / Window ===== -->
<command id="file.new"
label="New"
tooltip="Create a new document"
category="file"
iconRef="file.new"
icon="icons/file/new.svg"
gesture="Ctrl+N"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="file.open"
label="Open"
tooltip="Open an existing document"
category="file"
iconRef="file.open"
icon="icons/file/open.svg"
gesture="Ctrl+O"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="file.save"
label="Save"
tooltip="Save the active document"
category="file"
iconRef="file.save"
icon="icons/file/save.svg"
gesture="Ctrl+S"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="file.saveAs"
label="Save As"
tooltip="Save the active document under a new name"
category="file"
iconRef="file.save_as"
icon="icons/file/save_as.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="file.close"
label="Close"
tooltip="Close the active window"
category="file"
iconRef="file.close"
icon="icons/file/close.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="file.exit"
label="Exit"
tooltip="Exit the application"
category="file"
iconRef="file.exit"
icon="icons/file/exit.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== UI built-in commands (wired to MainWindowQt) ===== -->
<command id="window.new"
label="New Window"
tooltip="Open a new document window"
category="window"
iconRef="window.new_window"
icon="icons/window/new_window.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="window.arrange"
label="Arrange Windows"
tooltip="Arrange all open windows"
category="window"
iconRef="window.arrange"
icon="icons/window/arrange.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="window.tileHorizontal"
label="Tile Horizontally"
tooltip="Tile all open windows horizontally"
category="window"
iconRef="window.tile_horizontal"
icon="icons/window/tile_horizontal.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<!-- ===== Flexible Modeling / Direct Edit ===== -->
<command id="smove.face"
label="Move Face"
tooltip="Move or rotate selected faces"
category="synchronous"
iconRef="synchronous.move_face"
icon="icons/synchronous/move_face.svg"
environments="workbench.part"/>
<command id="synchronous.pull"
label="Pull"
tooltip="Modify the shape by dragging faces"
category="synchronous"
iconRef="synchronous.pull"
icon="icons/synchronous/pull.svg"
environments="workbench.part"/>
<command id="synchronous.offsetRegion"
label="Offset Region"
tooltip="Offset local face regions"
category="synchronous"
iconRef="synchronous.offset_region"
icon="icons/synchronous/offset_region.svg"
environments="workbench.part"/>
<command id="synchronous.deleteFace"
label="Delete Face"
tooltip="Delete faces and heal topology"
category="synchronous"
iconRef="synchronous.delete_face"
icon="icons/synchronous/delete_face.svg"
environments="workbench.part"/>
<!-- ===== Curves / sketch geometry ===== -->
<command id="curve.line"
label="Line"
tooltip="Create lines"
category="curve"
iconRef="curve.line"
icon="icons/curve/line.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.centerline"
label="Centerline"
tooltip="Create sketch centerlines"
category="curve"
iconRef="curve.centerline"
icon="icons/curve/centerline.svg"
environments="workbench.sketch"/>
<command id="curve.arc"
label="Arc"
tooltip="Create arcs"
category="curve"
iconRef="curve.arc"
icon="icons/curve/arc.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.arc.3PointTangentEnd"
label="3-Point / Tangent End"
tooltip="Create a 3-point arc with tangent end option"
category="curve"
iconRef="curve.arc_3pt_tangent_end"
icon="icons/curve/arc_3pt_tangent_end.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.arc.centerAndEnds"
label="Center and Ends"
tooltip="Create an arc by center and two ends"
category="curve"
iconRef="curve.arc_center_ends"
icon="icons/curve/arc_center_ends.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.arc.3Tangent"
label="3 Tangent"
tooltip="Create a 3-tangent arc"
category="curve"
iconRef="curve.arc_3tangent"
icon="icons/curve/arc_3tangent.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.arc.concentric"
label="Concentric"
tooltip="Create a concentric arc"
category="curve"
iconRef="curve.arc_concentric"
icon="icons/curve/arc_concentric.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.arc.conic"
label="Conic"
tooltip="Create a conic arc"
category="curve"
iconRef="curve.arc_conic"
icon="icons/curve/arc_conic.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.circle"
label="Circle"
tooltip="Create circles"
category="curve"
iconRef="curve.circle"
icon="icons/curve/circle.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.circle.centerAndPoint"
label="Center and Point"
tooltip="Create a circle by center and point"
category="curve"
iconRef="curve.circle_center_point"
icon="icons/curve/circle_center_point.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.circle.concentric"
label="Concentric"
tooltip="Create a concentric circle"
category="curve"
iconRef="curve.circle_concentric"
icon="icons/curve/circle_concentric.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.circle.3Point"
label="3 Point"
tooltip="Create a circle by 3 points"
category="curve"
iconRef="curve.circle_3pt"
icon="icons/curve/circle_3pt.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.circle.3Tangent"
label="3 Tangent"
tooltip="Create a circle tangent to three entities"
category="curve"
iconRef="curve.circle_3tangent"
icon="icons/curve/circle_3tangent.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.rectangle"
label="Rectangle"
tooltip="Create rectangles"
category="curve"
iconRef="curve.rectangle"
icon="icons/curve/rectangle.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.ellipse"
label="Ellipse"
tooltip="Create ellipses"
category="curve"
iconRef="curve.ellipse"
icon="icons/curve/ellipse.svg"
environments="workbench.sketch"/>
<command id="curve.ellipse.axisAndEnds"
label="Axis and Ends Ellipse"
tooltip="Create an ellipse by axis and ends"
category="curve"
iconRef="curve.ellipse_axis_ends"
icon="icons/curve/ellipse_axis_ends.svg"
environments="workbench.sketch"/>
<command id="curve.ellipse.centerAndAxis"
label="Center and Axis Ellipse"
tooltip="Create an ellipse by center and axis"
category="curve"
iconRef="curve.ellipse_center_axis"
icon="icons/curve/ellipse_center_axis.svg"
environments="workbench.sketch"/>
<command id="curve.rectangle.corner"
label="Corner Rectangle"
tooltip="Create a corner rectangle"
category="curve"
iconRef="curve.rect_corner"
icon="icons/curve/rect_corner.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.rectangle.slanted"
label="Slanted Rectangle"
tooltip="Create a slanted rectangle"
category="curve"
iconRef="curve.rect_slanted"
icon="icons/curve/rect_slanted.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.rectangle.center"
label="Center Rectangle"
tooltip="Create a center rectangle"
category="curve"
iconRef="curve.rect_center"
icon="icons/curve/rect_center.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.rectangle.parallelogram"
label="Parallelogram"
tooltip="Create a parallelogram"
category="curve"
iconRef="curve.parallelogram"
icon="icons/curve/parallelogram.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.point"
label="Point"
tooltip="Create points"
category="curve"
iconRef="curve.point"
icon="icons/curve/point.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.splineThrough"
label="Spline Through Points"
tooltip="Create spline curves through points"
category="curve"
iconRef="curve.spline_through"
icon="icons/curve/spline_through.svg"
environments="workbench.part,workbench.sketch,workbench.assembly"/>
<command id="curve.fitSpline"
label="Fit Spline"
tooltip="Fit splines to existing geometry"
category="curve"
iconRef="curve.fit_spline"
icon="icons/curve/fit_spline.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.studioSpline"
label="Studio Spline"
tooltip="Advanced spline creation and editing"
category="curve"
iconRef="curve.studio_spline"
icon="icons/curve/studio_spline.svg"
environments="workbench.part"/>
<command id="curve.trim"
label="Trim Curve"
tooltip="Trim curves"
category="curve"
iconRef="curve.trim"
icon="icons/curve/trim.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.extend"
label="Extend Curve"
tooltip="Extend curves"
category="curve"
iconRef="curve.extend"
icon="icons/curve/extend.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.join"
label="Join Curves"
tooltip="Join curves into a single entity"
category="curve"
iconRef="curve.join"
icon="icons/curve/join.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.fillet"
label="Curve Fillet"
tooltip="Apply fillets between curves"
category="curve"
iconRef="curve.fillet"
icon="icons/curve/fillet.svg"
environments="workbench.part,workbench.sketch"/>
<command id="curve.offset"
label="Offset Curve"
tooltip="Offset curves"
category="curve"
iconRef="curve.offset"
icon="icons/curve/offset.svg"
environments="workbench.part,workbench.sketch"/>
<!-- ===== Sketch-only: dimensions / constraints / modify ===== -->
<command id="sketch.dim.horizontal"
label="Horizontal Dimension"
tooltip="Create horizontal linear dimensions"
category="sketch.dim"
iconRef="sketch.dim_horizontal"
icon="icons/sketch/dim_horizontal.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.vertical"
label="Vertical Dimension"
tooltip="Create vertical linear dimensions"
category="sketch.dim"
iconRef="sketch.dim_vertical"
icon="icons/sketch/dim_vertical.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.radius"
label="Radius Dimension"
tooltip="Create radius dimensions"
category="sketch.dim"
iconRef="sketch.dim_radius"
icon="icons/sketch/dim_radius.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.diameter"
label="Diameter Dimension"
tooltip="Create diameter dimensions"
category="sketch.dim"
iconRef="sketch.dim_diameter"
icon="icons/sketch/dim_diameter.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.angle"
label="Angular Dimension"
tooltip="Create angular dimensions"
category="sketch.dim"
iconRef="sketch.dim_angle"
icon="icons/sketch/dim_angle.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.general"
label="Smart Dimension"
tooltip="Create smart dimensions"
category="sketch.dim"
iconRef="sketch.dim_smart"
icon="icons/sketch/dim_smart.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.dimension"
label="Dimension"
tooltip="Create sketch dimensions"
category="sketch.dim"
iconRef="sketch.dim_smart"
icon="icons/sketch/dim_smart.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.reference"
label="Reference"
tooltip="Create reference dimensions"
category="sketch.dim"
iconRef="sketch.dim_reference"
icon="icons/sketch/dim_reference.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.baseline"
label="Baseline"
tooltip="Create baseline dimensions"
category="sketch.dim"
iconRef="sketch.dim_baseline"
icon="icons/sketch/dim_baseline.svg"
environments="workbench.sketch"/>
<command id="sketch.dim.perimeter"
label="Perimeter"
tooltip="Create perimeter dimensions"
category="sketch.dim"
iconRef="sketch.dim_perimeter"
icon="icons/sketch/dim_perimeter.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.horizontal"
label="Horizontal"
tooltip="Apply horizontal constraint"
category="sketch.constraint"
iconRef="sketch.constr_horizontal"
icon="icons/sketch/constr_horizontal.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.vertical"
label="Vertical"
tooltip="Apply vertical constraint"
category="sketch.constraint"
iconRef="sketch.constr_vertical"
icon="icons/sketch/constr_vertical.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.parallel"
label="Parallel"
tooltip="Apply parallel constraint"
category="sketch.constraint"
iconRef="sketch.constr_parallel"
icon="icons/sketch/constr_parallel.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.perpendicular"
label="Perpendicular"
tooltip="Apply perpendicular constraint"
category="sketch.constraint"
iconRef="sketch.constr_perp"
icon="icons/sketch/constr_perp.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.tangent"
label="Tangent"
tooltip="Apply tangent constraint"
category="sketch.constraint"
iconRef="sketch.constr_tangent"
icon="icons/sketch/constr_tangent.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.midPoint"
label="Mid-point"
tooltip="Apply mid-point constraint"
category="sketch.constraint"
iconRef="sketch.constr_midpoint"
icon="icons/sketch/constr_midpoint.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.coincident"
label="Coincident"
tooltip="Apply coincident constraint"
category="sketch.constraint"
iconRef="sketch.constr_coincident"
icon="icons/sketch/constr_coincident.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.equal"
label="Equal"
tooltip="Apply equal length or equal radius constraint"
category="sketch.constraint"
iconRef="sketch.constr_equal"
icon="icons/sketch/constr_equal.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.symmetric"
label="Symmetric"
tooltip="Apply symmetry constraint"
category="sketch.constraint"
iconRef="sketch.constr_symmetric"
icon="icons/sketch/constr_symmetric.svg"
environments="workbench.sketch"/>
<command id="sketch.constraint.fix"
label="Fix"
tooltip="Fix elements in place"
category="sketch.constraint"
iconRef="sketch.constr_fix"
icon="icons/sketch/constr_fix.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.trim"
label="Trim"
tooltip="Trim sketch geometry"
category="sketch.modify"
iconRef="sketch.trim"
icon="icons/sketch/trim.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.extend"
label="Extend"
tooltip="Extend sketch geometry"
category="sketch.modify"
iconRef="sketch.extend"
icon="icons/sketch/extend.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.fillet"
label="Fillet"
tooltip="Create sketch fillets"
category="sketch.modify"
iconRef="sketch.fillet"
icon="icons/sketch/fillet.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.offset"
label="Offset"
tooltip="Offset sketch geometry"
category="sketch.modify"
iconRef="sketch.offset"
icon="icons/sketch/offset.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.mirror"
label="Mirror"
tooltip="Mirror sketch entities"
category="sketch.modify"
iconRef="sketch.mirror"
icon="icons/sketch/mirror.svg"
environments="workbench.sketch"/>
<command id="sketch.modify.pattern"
label="Pattern"
tooltip="Pattern sketch entities"
category="sketch.modify"
iconRef="sketch.pattern"
icon="icons/sketch/pattern.svg"
environments="workbench.sketch"/>
<!-- ===== Model tab: Sketch ===== -->
<command id="sketch.setup"
label="Sketch Setup"
tooltip="Open sketch setup options"
category="sketch"
iconRef="sketch.setup"
icon="icons/sketch/setup.svg"
environments="workbench.sketch"/>
<command id="sketch.references"
label="References"
tooltip="Manage sketch references"
category="sketch"
iconRef="sketch.references"
icon="icons/sketch/references.svg"
environments="workbench.sketch"/>
<command id="sketch.view"
label="Sketch View"
tooltip="Control sketch view and orientation"
category="sketch"
iconRef="sketch.view"
icon="icons/sketch/view.svg"
environments="workbench.sketch"/>
<command id="sketch.section.setHorizontalReference"
label="Set horizontal reference"
tooltip="Set horizontal reference"
category="sketch"
iconRef="sketch.section_set_horizontal"
icon="icons/sketch/section_set_horizontal.svg"
environments="workbench.sketch"/>
<command id="sketch.section.setVerticalReference"
label="Set vertical reference"
tooltip="Set vertical reference"
category="sketch"
iconRef="sketch.section_set_vertical"
icon="icons/sketch/section_set_vertical.svg"
environments="workbench.sketch"/>
<command id="sketch.section.restoreSectionOrientation"
label="Restore section orientation"
tooltip="Restore section orientation"
category="sketch"
iconRef="sketch.section_restore"
icon="icons/sketch/section_restore.svg"
environments="workbench.sketch"/>
<command id="sketch.section.flipSectionOrientation"
label="Flip section orientation"
tooltip="Flip section orientation"
category="sketch"
iconRef="sketch.section_flip"
icon="icons/sketch/section_flip.svg"
environments="workbench.sketch"/>
<command id="sketch.section.flipSketchingPlane"
label="Flip sketching plane"
tooltip="Flip the selected sketching plane"
category="sketch"
iconRef="sketch.flip_plane"
icon="icons/sketch/flip_plane.svg"
environments="workbench.sketch"/>
<command id="sketch.display.dimensions"
label="Dimensions Display"
tooltip="Toggle dimensions display"
category="sketch"
iconRef="sketch.display_dimensions"
icon="icons/sketch/display_dimensions.svg"
environments="workbench.sketch"/>
<command id="sketch.display.constraints"
label="Constraints Display"
tooltip="Toggle constraints display"
category="sketch"
iconRef="sketch.display_constraints"
icon="icons/sketch/display_constraints.svg"
environments="workbench.sketch"/>
<command id="sketch.display.vertices"
label="Vertices Display"
tooltip="Toggle vertices display"
category="sketch"
iconRef="sketch.display_vertices"
icon="icons/sketch/display_vertices.svg"
environments="workbench.sketch"/>
<command id="sketch.display.grid"
label="Grid Display"
tooltip="Toggle grid display"
category="sketch"
iconRef="sketch.display_grid"
icon="icons/sketch/display_grid.svg"
environments="sketch"/>
<command id="sketch.gridSettings"
label="Grid Settings"
tooltip="Edit grid settings"
category="sketch"
iconRef="sketch.grid_settings"
icon="icons/sketch/grid_settings.svg"
environments="workbench.sketch"/>
<command id="sketch.properties"
label="Properties"
tooltip="Open sketch properties"
category="sketch"
iconRef="sketch.properties"
icon="icons/sketch/properties.svg"
environments="workbench.sketch"/>
<command id="sketch.lineStyle.set"
label="Set Line Style"
tooltip="Set sketch line style"
category="sketch"
iconRef="sketch.line_style_set"
icon="icons/sketch/line_style_set.svg"
environments="workbench.sketch"/>
<command id="sketch.lineStyle.clear"
label="Clear Line Style"
tooltip="Clear sketch line style"
category="sketch"
iconRef="sketch.line_style_clear"
icon="icons/sketch/line_style_clear.svg"
environments="workbench.sketch"/>
<command id="sketch.underConstrainedMode"
label="Under-Constrained Mode"
tooltip="Toggle under-constrained display/mode"
category="sketch"
iconRef="sketch.underconstrained"
icon="icons/sketch/underconstrained.svg"
environments="workbench.sketch"/>
<command id="sketch.fileSystem"
label="File System"
tooltip="Show or hide file system"
category="sketch"
iconRef="ui.file_system"
icon="icons/ui/file_system.svg"
environments="workbench.sketch"/>
<!-- ===== View / Display / Selection ===== -->
<command id="sketch.select"
label="Select"
tooltip="Selection tools"
category="selection"
iconRef="select.select"
icon="icons/select/select.svg"
environments="workbench.sketch"/>
<!-- ===== Sketch-only: dimensions / constraints / modify ===== -->
<command id="sketch.ops.delete"
label="Delete"
tooltip="Delete selected sketch entities"
category="sketch.modify"
iconRef="sketch.delete"
icon="icons/sketch/delete.svg"
environments="workbench.sketch"/>
<command id="sketch.ops.replace"
label="Replace"
tooltip="Replace selected sketch entities"
category="sketch.modify"
iconRef="sketch.replace"
icon="icons/sketch/replace.svg"
environments="workbench.sketch"/>
<command id="sketch.ops.construction"
label="Construction"
tooltip="Convert entities to construction geometry"
category="sketch.modify"
iconRef="sketch.construction"
icon="icons/sketch/construction.svg"
gesture="Shift+G"
environments="workbench.sketch"/>
<command id="sketch.ops.toggleLock"
label="Toggle Lock"
tooltip="Toggle lock on selected entities"
category="sketch.modify"
iconRef="sketch.toggle_lock"
icon="icons/sketch/toggle_lock.svg"
environments="workbench.sketch"/>
<command id="sketch.ops.convertTo"
label="Convert To"
tooltip="Convert entities to another type"
category="sketch.modify"
iconRef="sketch.convert_to"
icon="icons/sketch/convert_to.svg"
environments="workbench.sketch"/>
<!-- ===== Model tab: Sketch ===== -->
<command id="sketch.text"
label="Text"
tooltip="Create sketch text"
category="sketch"
iconRef="sketch.text"
icon="icons/sketch/text.svg"
environments="workbench.sketch"/>
<!-- ===== Sketch-only: dimensions / constraints / modify ===== -->
<command id="sketch.project"
label="Project"
tooltip="Project edges or curves into sketch"