-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathADCore.daml.xml
1881 lines (1712 loc) · 109 KB
/
ADCore.daml.xml
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"?>
<ArcGIS defaultAssembly="ArcGIS.Desktop.Core.dll"
defaultNamespace="ArcGIS.Desktop.Core"
xmlns="http://schemas.esri.com/DADF/Registry"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.esri.com/DADF/Registry \ArcGIS\ArcGISDesktop\UIFramework\ArcGIS.Desktop.Framework.xsd">
<accelerators>
<insertAccelerator refID="esri_core_openProjectButton" flags="Ctrl" key="O" />
<insertAccelerator refID="esri_core_newProjectButton" flags="Ctrl" key="N" />
<insertAccelerator refID="esri_core_saveProjectButton" flags="Ctrl" key="S" />
<insertAccelerator refID="esri_core_editCopyButton" flags="Ctrl" key="C" />
<insertAccelerator refID="esri_core_editPasteButton" flags="Ctrl" key="V" />
<insertAccelerator refID="esri_core_editDeleteButton" flags="Ctrl" key="D" />
<insertAccelerator refID="esri_core_editPasteSpecialButton" flags="Ctrl+Alt" key="V" />
<insertAccelerator refID="esri_core_editCutButton" flags="Ctrl" key="X" />
<insertAccelerator refID="esri_core_redoButton" flags="Ctrl" key="Y" />
<insertAccelerator refID="esri_core_undoButton" flags="Ctrl" key="Z" />
<insertAccelerator refID="esri_core_CommandSearchControl" flags="Alt" key="Q" />
<insertAccelerator refID="esri_core_groupContext" flags="Ctrl" key="G" />
<insertAccelerator refID="esri_core_ungroupContext" flags="Ctrl+Shift" key="G" />
<insertAccelerator refID="esri_core_exportContext" flags="Ctrl" key="E" />
<insertAccelerator refID="esri_core_printContext" flags="Ctrl" key="P" />
<insertAccelerator refID="esri_core_editCopyPaths" flags="Ctrl+Alt" key="P" />
<insertAccelerator refID="esri_core_SignOnRootCommand" flags="Alt" key="L"/>
<insertAccelerator refID="esri_core_notificationButton" flags="Alt" key="W"/>
<insertAccelerator refID="esri_core_Shortcuts" key="F12"/>
<insertAccelerator refID="esri_core_monitorBtn" key="M" flags="Ctrl+Alt" isReadOnly="true"/>
<insertAccelerator refID="esri_core_paneOptions" key="OemMinus" flags="Alt" isReadOnly="true"/>
<insertAccelerator refID="esri_core_changeView" key="Tab" flags="Ctrl" isReadOnly="true"/>
<insertAccelerator refID="esri_core_changePane" key="F7" flags="Alt" isReadOnly="true"/>
<insertAccelerator refID="esri_core_switchView" key="F6" flags="Ctrl" isReadOnly="true"/>
<insertAccelerator refID="esri_core_closeView" key="F4" flags="Ctrl" isReadOnly="true"/>
<insertAccelerator refID="esri_core_viewHelp" key="F1" isReadOnly="true"/>
<insertAccelerator refID="esri_core_minimizeRibbon" key="F1" flags="Ctrl" isReadOnly="true"/>
</accelerators>
<shortcutTables>
<insertShortcutTable id="esri_core_catalogView_shortcuts"
targetID="esri_core_resourcesPane"
isPrimary="true" category="Catalog" caption="View"
description="Use Catalog view shortcuts to navigate the view, manage item collections, create and search for items, edit metadata, display the details pane, and access the location bar.">
<!-- traditional -->
<shortcut refID="esri_core_refresh" key="F5"/>
<shortcut refID="esri_core_rename" key="F2"/>
<shortcut refID="esri_core_rename_alias" key="F2" flags="Shift"/>
<shortcut refID="esri_core_SearchCatalog" key="F" flags="Ctrl"/>
<shortcut refID="esri_editing_externalTable_openTablePaneButton" flags="Ctrl+Shift" key="T" />
<!-- Ctrl+Shift for operations (new/edit) -->
<shortcut refID="esri_folderConnectionAddButton" key="C" flags="Ctrl+Shift"/>
<shortcut refID="esri_core_newFolderButton" key="F" flags="Ctrl+Shift"/>
<shortcut refID="esri_layouts_projectContainer_NewLayout" key="L" flags="Ctrl+Shift" />
<shortcut refID="esri_GDBCreateNewFileGeodatabaseButton" key="D" flags="Ctrl+Shift"/>
<shortcut refID="esri_geodatabase_databaseConnectionButton" key="E" flags="Ctrl+Shift"/>
<shortcut refID="esri_geodatabase_newMobileGeoDatabaseButton" key="I" flags="Ctrl+Shift"/>
<shortcut refID="esri_geoprocessing_newToolboxButton_atbx" key="B" flags="Ctrl+Shift"/>
<shortcut refID="esri_projectItemEditMetadata" key="M" flags="Ctrl+Shift"/>
<shortcut refID="esri_projectDefaultContextMenu" key="N" flags="Ctrl+Shift"/>
<!-- Alt for navigation -->
<shortcut refID="esri_core_ActivateCatalogPane" key="F3" flags="Alt"/>
<shortcut refID="esri_core_FocusTOC" key="F5" flags="Alt"/>
<shortcut refID="esri_core_Breadcrumb" key="L" flags="Ctrl"/>
<shortcut refID="esri_core_ShowSortMenu" key="F6"/>
<shortcut refID="esri_core_FocusContent" key="F6" flags="Alt"/>
<shortcut refID="esri_core_ShowFilterMenu" key="F8" flags="Alt"/>
<shortcut refID="esri_projectItemViewMetadata" key="M" flags="Alt"/>
<shortcut refID="esri_core_ToggleDetails" key="D" flags="Alt"/>
<shortcut refID="esri_core_MoveBack" key="Left" flags="Alt"/>
<shortcut refID="esri_core_MoveForward" key="Right" flags="Alt"/>
<shortcut refID="esri_core_MoveUp" key="Up" flags="Alt"/>
<shortcut refID="esri_core_ShowProject" key="P" flags="Alt"/>
<shortcut refID="esri_core_ShowPortal" key="O" flags="Alt"/>
<shortcut refID="esri_core_ShowComputer" key="Z" flags="Alt"/>
<shortcut refID="esri_core_ShowFavorites" key="F" flags="Alt"/>
<shortcut refID="esri_core_ShowCatalogOptions" key="B" flags="Alt"/>
<shortcut refID="esri_core_openFileLocation" key="E" flags="Alt"/>
</insertShortcutTable>
<insertShortcutTable id="esri_core_catalogPane_shortcuts"
targetID="esri_core_projectDockPane"
isPrimary="true" category="Catalog" caption="Pane"
description="Use Catalog pane shortcuts to navigate the pane; manage project, portal, computer, and favorite items; create items, and search for items.">
<!-- traditional -->
<shortcut refID="esri_core_refresh" key="F5"/>
<shortcut refID="esri_core_rename" key="F2"/>
<shortcut refID="esri_core_rename_alias" key="F2" flags="Shift"/>
<shortcut refID="esri_core_SearchCatalog" key="F" flags="Ctrl"/>
<shortcut refID="esri_editing_externalTable_openTablePaneButton" flags="Ctrl+Shift" key="T" />
<!-- Ctrl+Shift for operations (new/edit) -->
<shortcut refID="esri_folderConnectionAddButton" key="C" flags="Ctrl+Shift"/>
<shortcut refID="esri_core_newFolderButton" key="F" flags="Ctrl+Shift"/>
<shortcut refID="esri_layouts_projectContainer_NewLayout" key="L" flags="Ctrl+Shift" />
<shortcut refID="esri_GDBCreateNewFileGeodatabaseButton" key="D" flags="Ctrl+Shift"/>
<shortcut refID="esri_geodatabase_databaseConnectionButton" key="E" flags="Ctrl+Shift"/>
<shortcut refID="esri_geodatabase_newMobileGeoDatabaseButton" key="I" flags="Ctrl+Shift"/>
<shortcut refID="esri_geoprocessing_newToolboxButton_atbx" key="B" flags="Ctrl+Shift"/>
<shortcut refID="esri_projectItemEditMetadata" key="M" flags="Ctrl+Shift"/>
<shortcut refID="esri_projectDefaultContextMenu" key="N" flags="Ctrl+Shift"/>
<!-- Alt for navigation -->
<shortcut refID="esri_core_ActivateResourcesPane" key="F3" flags="Alt" />
<shortcut refID="esri_core_ShowSortMenu" key="F6"/>
<shortcut refID="esri_core_FocusContent" key="F6" flags="Alt"/>
<shortcut refID="esri_core_ShowFilterMenu" key="F8" flags="Alt"/>
<shortcut refID="esri_projectItemViewMetadata" key="M" flags="Alt"/>
<shortcut refID="esri_core_MoveBack" key="Left" flags="Alt"/>
<shortcut refID="esri_core_ProjectDP" key="P" flags="Alt"/>
<shortcut refID="esri_core_PortalDP" key="O" flags="Alt"/>
<shortcut refID="esri_core_ShowComputer" key="Z" flags="Alt"/>
<shortcut refID="esri_core_FavoritesDP" key="F" flags="Alt"/>
<shortcut refID="esri_core_ShowCatalogOptions" key="B" flags="Alt"/>
<shortcut refID="esri_core_openFileLocation" key="E" flags="Alt"/>
</insertShortcutTable>
</shortcutTables>
<DockPaneSets>
<!--DockPane Reset for Mapping (Default)-->
<insertDockPaneSet id="esri_DockPaneReset_Mapping" caption="Reset Panes for Mapping (Default)">
<DockPaneID refID="esri_core_projectDockPane"/>
<DockPaneID refID="esri_core_contentsDockPane"/>
</insertDockPaneSet>
<!--DockPane Reset for Editing-->
<insertDockPaneSet id="esri_DockPaneReset_Editing" caption="Reset Panes for Editing">
<DockPaneID refID="esri_core_projectDockPane"/>
<DockPaneID refID="esri_core_contentsDockPane"/>
<DockPaneID refID="esri_editing_AttributesDockPane"/>
<DockPaneID refID="esri_editing_EditFeaturesDockPane"/>
<DockPaneID refID="esri_editing_CreateFeaturesDockPane"/>
</insertDockPaneSet>
<!--DockPane Reset for Geoprocessing-->
<insertDockPaneSet id="esri_DockPaneReset_Geoprocessing" caption="Reset Panes for Geoprocessing" >
<DockPaneID refID="esri_core_contentsDockPane"/>
<DockPaneID refID="esri_core_projectDockPane"/>
<DockPaneID refID="esri_geoprocessing_toolBoxes"/>
</insertDockPaneSet>
</DockPaneSets>
<products>
<insertProduct id="esri_product_streetmapPremiumnNorthAmerica" caption="StreetMap Premium North America" description="Provides high-quality street data for display, geocoding, and routing" code="72"/>
<insertProduct id="esri_product_streetmapPremiumnEurope" caption="StreetMap Premium Europe" description="Provides high-quality street data for display, geocoding, and routing" code="73"/>
<insertProduct id="esri_product_streetmapPremiumnLatinAmerica" caption="StreetMap Premium Latin America" description="Provides high-quality street data for display, geocoding, and routing" code="74"/>
<insertProduct id="esri_product_streetmapPremiumnAsiaPacific" caption="StreetMap Premium Asia Pacific" description="Provides high-quality street data for display, geocoding, and routing" code="75"/>
<insertProduct id="esri_product_streetmapPremiumnMiddleEastAfrica" caption="StreetMap Premium Middle East and Africa" description="Provides high-quality street data for display, geocoding, and routing" code="76"/>
<insertProduct id="esri_product_streetmapPremiumJapan" caption="StreetMap Premium Japan" description="Provides high-quality street data for display, geocoding, and routing" code="77"/>
<insertProduct id="esri_product_publisher" caption="Publisher" description="Enables the sharing of content throughout the ArcGIS platform." code="15"/>
<insertProduct id="esri_product_aviationCharting" caption="Aviation Charting" description="Provides tools and workflows for working with aeronautical data and charting." code="53"/>
<insertProduct id="esri_product_aviationAirports" caption="Aviation Airports" description="Provides tools for airport planning, maintenance and analysis." code="70"/>
<insertProduct id="esri_product_maritimeCharting" caption="Maritime" description="Provides tools and workflows for working with nautical data and charting." code="50"/>
<insertProduct id="esri_product_businessanalyst" caption="Business Analyst" description="Provides advanced analysis tools and an extensive library of data from industry leading data providers to help you make better business decisions." code="33"/>
<insertProduct id="esri_product_imageanalyst" caption="Image Analyst" description="Delivers an integrated image interpretation and analysis workstation which provides powerful image visualization, exploitation, and feature extraction tools." code="86"/>
<insertProduct id="esri_product_locatext" caption="LocateXT" description="Discover and extract geocoordinates, place names, and other critical information from unstructured text and place them instantly on a map." code="87"/>
<insertProduct id="esri_product_reality" caption="Reality" description="ArcGIS Reality." code="94"/>
</products>
<categories>
<insertCategory id="esri_core_projectContainers">
<component id="esri_displayunits_projectContainer" className="ArcGIS.Desktop.Internal.Core.DisplayUnitEnvironmentItemContainer">
<content type="DisplayUnitEnvironment" displayName="DisplayUnitEnvironment"/>
</component>
</insertCategory>
<insertCategory id="esri_item" />
<insertCategory id="esri_cef_customSchemes"/>
<insertCategory id="esri_itemInfoType" />
<insertCategory id="esri_browseFilters" />
<insertCategory id="esri_browseDialogFilters" /> <!--this is now obsolete, replaced by esri_browseFilters-->
<insertCategory id="esri_browsePlaces" />
<insertCategory id="esri_embeddableControls" />
<insertCategory id="esri_tasks_embeddableControls" />
<insertCategory id="esri_core_dataTemplates" />
<insertCategory id="esri_core_multiSelectRecognizer" />
<insertCategory id="esri_core_itemCategories" />
<insertCategory id="esri_core_projectViewProviders" />
<insertCategory id="esri_project_historyControls" />
<insertCategory id="esri_sharingCategory" />
<insertCategory id="esri_customizedCommandsCategory" />
<insertCategory id="esri_commandSearchCategory" />
<insertCategory id="esri_customItems" />
<insertCategory id="portalTypesFilterEnterprise">
<component id="portalEnterprise">
<content>
<typeGroup displayName="Maps" type="maps">
<typeSubGroup displayName="Web Maps" type="webmaps"/>
<typeSubGroup displayName="Map Files" type="mapfiles"/>
</typeGroup>
<typeGroup displayName="Layers" type="layers">
<typeSubGroup displayName="Feature Layers" type="featurelayers"/>
<typeSubGroup displayName="Tile Layers" type="tilelayers"/>
<typeSubGroup displayName="Map Image Layers" type="mapimagelayers"/>
<typeSubGroup displayName="Imagery Layers" type="imagerylayers"/>
<typeSubGroup displayName="Tiled Imagery Layers" type="tiledimagerylayers"/>
<typeSubGroup displayName="Scene Layers" type="scenelayers"/>
<typeSubGroup displayName="Video Layers" type="videolayers"/>
<typeSubGroup displayName="Elevation Layers" type="elevationlayers"/>
<typeSubGroup displayName="Group Layers" type="grouplayers"/>
<typeSubGroup displayName="Tables" type="tables"/>
<typeSubGroup displayName="Layer Files" type="layerfiles"/>
</typeGroup>
<typeGroup displayName="Scenes" type="scenes"/>
<typeGroup displayName="Tools" type="tools">
<typeSubGroup displayName="Locators" type="locators"/>
<typeSubGroup displayName="Geoprocessing Tasks" type="geoprocessingtasks"/>
<typeSubGroup displayName="Network Analysis" type="networkanalysis"/>
</typeGroup>
<typeGroup displayName="Styles" type="styles">
<typeSubGroup displayName="Web styles" type="webstyles"/>
<typeSubGroup displayName="Desktop styles" type="desktopstyles"/>
</typeGroup>
<typeGroup displayName="Notebooks" type="notebooks"/>
<typeGroup displayName="Knowledge graphs" type="knowledgegraphs"/>
</content>
</component>
</insertCategory>
<insertCategory id="portalTypesFilterAGOL">
<component id="portalAGOL">
<content>
<typeGroup displayName="Maps" type="maps">
<typeSubGroup displayName="Web Maps" type="webmaps"/>
<typeSubGroup displayName="Map Files" type="mapfiles"/>
</typeGroup>
<typeGroup displayName="Layers" type="layers">
<typeSubGroup displayName="Feature Layers" type="featurelayers"/>
<typeSubGroup displayName="Tile Layers" type="tilelayers"/>
<typeSubGroup displayName="Map Image Layers" type="mapimagelayers"/>
<typeSubGroup displayName="Imagery Layers" type="imagerylayers"/>
<typeSubGroup displayName="Tiled Imagery Layers" type="tiledimagerylayers"/>
<typeSubGroup displayName="Elevation layers" type="elevationlayers"/>
<typeSubGroup displayName="Scene Layers" type="scenelayers"/>
<typeSubGroup displayName="Group Layers" type="grouplayers"/>
<typeSubGroup displayName="Tables" type="tables"/>
<typeSubGroup displayName="Layer Files" type="layerfiles"/>
</typeGroup>
<typeGroup displayName="Scenes" type="scenes"/>
<typeGroup displayName="Tools" type="tools">
<typeSubGroup displayName="Locators" type="locators"/>
<typeSubGroup displayName="Geoprocessing Tasks" type="geoprocessingtasks"/>
<typeSubGroup displayName="Network Analysis" type="networkanalysis"/>
</typeGroup>
<typeGroup displayName="Styles" type="styles">
<typeSubGroup displayName="Web styles" type="webstyles"/>
<typeSubGroup displayName="Desktop styles" type="desktopstyles"/>
</typeGroup>
<typeGroup displayName="Notebooks" type="notebooks"/>
</content>
</component>
</insertCategory>
<insertCategory id="portalSharingFilter">
<component id="portalSharing">
<content>
<typeGroup displayName="Owner" type="owner">
<typeSubGroup displayName="Shared with groups" type="sharedgroups"/>
<typeSubGroup displayName="Not shared with groups" type="notsharedgroups"/>
</typeGroup>
<typeGroup displayName="Organization" type="organization"/>
<typeGroup displayName="Everyone (public)" type="public"/>
</content>
</component>
</insertCategory>
<insertCategory id="portalStatusFilter">
<component id="portalStatus">
<content>
<typeGroup displayName="Authoritative" type="authoritative"/>
<typeGroup displayName="Deprecated" type="deprecated"/>
</content>
</component>
</insertCategory>
<insertCategory id="localTypesFilter">
<component id="local">
<content>
<typeGroup displayName="Maps" type="allmaps">
<typeSubGroup displayName="Maps" type="maps"/>
<typeSubGroup displayName="Scenes" type="scenes"/>
<typeSubGroup displayName="Stereo maps" type="stereoMaps"/>
<typeSubGroup displayName="Link charts" type="linkCharts"/>
<typeSubGroup displayName="Basemaps" type="basemaps"/>
<typeSubGroup displayName="Map files" type="mapFiles"/>
</typeGroup>
<typeGroup displayName="Layers" type="allLayers">
<typeSubGroup displayName="Map and scene layers" type="mapAndSceneLayers"/>
<typeSubGroup displayName="Standalone tables" type="standaloneTables"/>
<!--Standalone videos will go here when indexing support for them is available-->
<!--<typeSubGroup displayName="Standalone videos" type="standaloneTables"/>-->
<typeSubGroup displayName="Layer files" type="layerFiles"/>
</typeGroup>
<typeGroup displayName="Data" type="allData">
<typeSubGroup displayName="Feature data" type="featureData"/>
<typeSubGroup displayName="Tables" type="tables"/>
<typeSubGroup displayName="Raster and imagery data" type="rasterData"/>
<typeSubGroup displayName="Datasets" type="datasets"/>
<typeSubGroup displayName="Connections and databases" type="connectionsAndDatabases"/>
<typeSubGroup displayName="Folders" type="folders"/>
</typeGroup>
<typeGroup displayName="Styles" type="styles">
</typeGroup>
<typeGroup displayName="Layouts" type="layouts">
</typeGroup>
<typeGroup displayName="Reports" type="reports">
</typeGroup>
<typeGroup displayName="Investigations" type="investigations">
</typeGroup>
<typeGroup displayName="Analysis" type="analysis">
<typeSubGroup displayName="Tools" type="tools"/>
<typeSubGroup displayName="Toolboxes" type="toolBoxes"/>
<typeSubGroup displayName="Tasks" type="tasks"/>
<typeSubGroup displayName="Locators" type="locators"/>
<typeSubGroup displayName="Notebooks" type="notebooks"/>
<typeSubGroup displayName="Spatial Analyst models" type="spatialAnalystModels"/>
<typeSubGroup displayName="Deep learning" type="deepLearning"/>
</typeGroup>
<typeGroup displayName="Other files" type="otherFiles">
</typeGroup>
</content>
</component>
</insertCategory>
<insertCategory id="localTypesFilterForFolders">
<component id="localFolders">
<content>
<typeGroup displayName="Maps" type="allmaps">
</typeGroup>
<typeGroup displayName="Layers" type="allLayers">
</typeGroup>
<typeGroup displayName="Data" type="allData">
<typeSubGroup displayName="Feature data" type="featureData"/>
<typeSubGroup displayName="Tables" type="tables"/>
<typeSubGroup displayName="Raster and imagery data" type="rasterData"/>
<typeSubGroup displayName="Datasets" type="datasets"/>
<typeSubGroup displayName="Connections and databases" type="connectionsAndDatabases"/>
<typeSubGroup displayName="Folders" type="folders"/>
</typeGroup>
<typeGroup displayName="Styles" type="styles">
</typeGroup>
<typeGroup displayName="Layouts" type="layouts">
</typeGroup>
<typeGroup displayName="Reports" type="reports">
</typeGroup>
<!--Investigations will go here when indexing support for them is available-->
<!--<typeGroup displayName="Investigations" type="investigations">
</typeGroup>-->
<typeGroup displayName="Analysis" type="analysis">
<typeSubGroup displayName="Tools" type="tools"/>
<typeSubGroup displayName="Toolboxes" type="toolBoxes"/>
<typeSubGroup displayName="Tasks" type="tasks"/>
<typeSubGroup displayName="Locators" type="locators"/>
<typeSubGroup displayName="Notebooks" type="notebooks"/>
<typeSubGroup displayName="Spatial Analyst models" type="spatialAnalystModels"/>
<typeSubGroup displayName="Deep learning" type="deepLearning"/>
</typeGroup>
<typeGroup displayName="Other files" type="otherFiles">
</typeGroup>
</content>
</component>
</insertCategory>
<insertCategory id="localTypesFilterForDatabases">
<component id="localDatabases">
<content>
<typeGroup displayName="Feature classes" type="featureClasses"/>
<typeGroup displayName="Tables" type="tables"/>
<typeGroup displayName="Vector datasets" type="vectorDatasets">
<typeSubGroup displayName="Feature datasets" type="featureDatasets"/>
<typeSubGroup displayName="Catalog datasets" type="catalogDatasets"/>
<typeSubGroup displayName="Network datasets" type="networkDatasets"/>
<typeSubGroup displayName="Parcel datasets" type="parcelDatasets"/>
<typeSubGroup displayName="Utility networks" type="utilityNetworks"/>
<typeSubGroup displayName="Trajectory datasets" type="trajectoryDatasets"/>
<typeSubGroup displayName="Trace networks" type="traceNetworks"/>
<typeSubGroup displayName="Terrains" type="terrains"/>
<typeSubGroup displayName="Geometric networks" type="geometricNetworks"/>
<typeSubGroup displayName="Topologies" type="topologies"/>
<typeSubGroup displayName="Parcel fabrics for ArcMap" type="parcelFabricsForArcMap"/>
</typeGroup>
<typeGroup displayName="Raster and imagery data" type="allRasterDatasets">
<typeSubGroup displayName="Raster datasets" type="rasterDatasets"/>
<typeSubGroup displayName="Mosaic datasets" type="mosaicDatasets"/>
<typeSubGroup displayName="Oriented imagery datasets" type="orientedImageryDatasets"/>
</typeGroup>
<typeGroup displayName="Databases" type="databases">
<typeSubGroup displayName="File geodatabases" type="fileGeodatabases"/>
<typeSubGroup displayName="Mobile geodatabases" type="mobileGeodatabases"/>
<typeSubGroup displayName="SQLite databases and geopackages" type="sqliteDatabasesAndGeoPackages"/>
</typeGroup>
<typeGroup displayName="Connections" type="allDatabaseConnections">
<typeSubGroup displayName="Enterprise connections" type="enterpriseConnections"/>
<typeSubGroup displayName="Database connections" type="databaseConnections"/>
<typeSubGroup displayName="OLE DB Connection" type="oleDbConnections"/>
</typeGroup>
</content>
</component>
</insertCategory>
<insertCategory id="localTypesFilterForMaps">
<component id="localMaps">
<content>
<typeGroup displayName="Maps" type="allMaps">
<typeSubGroup displayName="Maps" type="maps"/>
<typeSubGroup displayName="Scenes" type="scenes"/>
<typeSubGroup displayName="Stereo maps" type="stereoMaps"/>
<typeSubGroup displayName="Basemaps" type="basemaps"/>
<typeSubGroup displayName="Link charts" type="linkCharts"/>
</typeGroup>
<typeGroup displayName="Layers" type="layers">
<typeSubGroup displayName="Map and scene layers" type="mapAndSceneLayers"/>
<typeSubGroup displayName="Standalone tables" type="standaloneTables"/>
</typeGroup>
</content>
</component>
</insertCategory>
<!-- browse places -->
<updateCategory refID="esri_browsePlaces">
<insertComponent id="project_gebrowse_place_project" className="BrowseProjectViewModelProvider">
<content includeByDefault="True" contextMenuID="esri_projectDefaultContextMenu"/>
</insertComponent>
</updateCategory>
<!-- Package Manager inner add-ins -->
<insertCategory id="esri_packagemanagerTabs">
<customControl id="python_old_backstage" className="ArcGIS.Desktop.Internal.Core.Conda.Backstage.CondaTab">
<content displayName="Python" toolTip="Configure Conda Environments and Packages"/>
</customControl>
</insertCategory>
<insertCategory id="esri_core_ai_skills_category" />
<insertCategory id="esri_core_ai_enterprise_skill_category" />
</categories>
<ribbonToolbar>
<!--<control refID="esri_activeTool" size="middle"/>-->
<!--<control refID="esri_core_notificationControl" size="small"/>-->
<!--<control refID="esri_core_notificationButton" size="small"/>-->
</ribbonToolbar>
<quickAccessToolbar>
<control refID="esri_core_newProjectButton" size="small"/>
<control refID="esri_core_openProjectButton" size="small"/>
<control refID="esri_core_saveProjectButton" size="small"/>
<control refID="esri_core_undoSplitButton" size="small"/>
<control refID="esri_core_redoSplitButton" size="small"/>
<control refID="esri_dockPaneSetDynamicMenu" size ="small" isChecked="false"/>
<control refID="esri_mapping_exploreTool" size ="small" isChecked="false"/>
<control refID="esri_mapping_rectangleZoom" size ="small" isChecked="false"/>
<control refID="esri_mapping_showLocateDockPane" size ="small" isChecked="false"/>
</quickAccessToolbar>
<modules>
<insertModule id="esri_core_module" className="CoreModule" caption="Project Module" description="Project Module" autoLoad="true">
<panes>
<pane id="esri_core_startPage" caption="Start Page" className="StartPageViewModel" smallImage="StartPage16" isClosable="true">
<content className="StartPage" />
</pane>
<pane id="esri_core_resourcesPane" caption="Catalog" extendedCaption="Catalog View" className="ProjectPaneVM" smallImage="ArcGISProject16" isClosable="true" defaultTab="esri_core_homeTab" isDropTarget="false">
<content className="ProjectPane" />
<keyCommands>
<keyCommand id="esri_core_ShowCatalogOptions" caption="Catalog Browsing Options" tooltip="Open the Catalog Browsing tab in the Options dialog box."/>
<keyCommand id="esri_core_SearchCatalog" caption="Search" tooltip="Go to the Search text box."/>
<keyCommand id="esri_core_FocusContent" caption="Contents List" tooltip="Go to Catalog view contents list."/>
<keyCommand id="esri_core_FocusTOC" caption="Contents Pane" tooltip="Go to the Catalog view's Contents pane."/>
<keyCommand id="esri_core_ToggleDetails" caption="Show/hide Details Panel" tooltip="Show/hide the Details panel."/>
<keyCommand id="esri_core_Breadcrumb" caption="Go To Location Bar" tooltip="Go to the location bar."/>
<keyCommand id="esri_core_MoveBack" caption="Go Back" tooltip="Go back to the previous location."/>
<keyCommand id="esri_core_MoveForward" caption="Go Forward" tooltip="Return to a visited location."/>
<keyCommand id="esri_core_MoveUp" caption="Go Up" tooltip="Go up one level."/>
<keyCommand id="esri_core_ShowSortMenu" caption="Sort Menu" tooltip="Show sort menu."/>
<keyCommand id="esri_core_ShowFilterMenu" caption="Filter Menu" tooltip="Show filter menu."/>
<keyCommand id="esri_core_ShowPortal" caption="Go To Portal" tooltip="Go to Portal."/>
<keyCommand id="esri_core_ShowComputer" caption="Go To Computer" tooltip="Go to Computer."/>
<keyCommand id="esri_core_ShowFavorites" caption="Go To Favorites" tooltip="Go to Favorites."/>
<keyCommand id="esri_core_ShowProject" caption="Go To Project" tooltip="Go to Project."/>
<keyCommand id="esri_core_ActivateCatalogPane" caption="Catalog Pane" tooltip="Go to the Catalog pane." />
</keyCommands>
</pane>
</panes>
<dockPanes>
<dockPane id="esri_core_projectDockPane" caption="Catalog" extendedCaption="Catalog Pane"
className="ProjectDockPaneVM" dock="right" width="320" smallImage="CatalogShowTree16">
<content className="ProjectDockPane" />
<keyCommands>
<keyCommand id="esri_core_MoveBack" caption="Go Back" tooltip="Go back to the previous location."/>
<keyCommand id="esri_core_ShowSortMenu" caption="Sort Menu" tooltip="Show sort menu."/>
<keyCommand id="esri_core_FocusContent" caption="Contents List" tooltip="Go to Catalog view contents list."/>
<keyCommand id="esri_core_ShowFilterMenu" caption="Filter Menu" tooltip="Show filter menu."/>
<keyCommand id="esri_core_ShowCatalogOptions" caption="Catalog Browsing Options" tooltip="Open the Catalog Browsing tab in the Options dialog box."/>
<keyCommand id="esri_core_SearchCatalog" caption="Search" tooltip="Go to the Search text box."/>
<keyCommand id="esri_core_PortalDP" caption="Go To Portal" tooltip="Go to Portal."/>
<keyCommand id="esri_core_ShowComputer" caption="Go To Computer" tooltip="Go to Computer."/>
<keyCommand id="esri_core_ProjectDP" caption="Go To Project" tooltip="Go to Project."/>
<keyCommand id="esri_core_FavoritesDP" caption="Go To Favorites" tooltip="Go to Favorites."/>
<keyCommand id="esri_core_ActivateResourcesPane" caption="Catalog View" tooltip="Go to the Catalog view." />
</keyCommands>
</dockPane>
<!--<dockPane id="esri_core_projectDockPane" caption="Project" className="ProjectDockPaneViewModel" dock="right" keytip="prj">
<content className="ProjectDockPaneView" />
</dockPane>-->
<dockPane id="esri_core_contentsDockPane" caption="Contents" className="ContentsDockPaneViewModel" dock="left"
width="320" keytip="toc" delayLoadMessage="Open a map or layout view" smallImage="ContentsWindowShow16">
<content className="ContentsDockPane" />
</dockPane>
<dockPane id="esri_core_notificationDockPane" smallImage="NotificationIndicator16" caption="Notifications" className="ArcGIS.Desktop.Framework.NotificationDockPaneViewModel"
assembly="ArcGIS.Desktop.Framework.dll" dock="right" keytip="">
<content className="ArcGIS.Desktop.Framework.NotificationDockPane" assembly="ArcGIS.Desktop.Framework.dll" />
</dockPane>
<dockPane id="esri_core_projectHistoryDockPane" smallImage="GenericHistory16" caption="History" className="ProjectHistoryDockPaneViewModel"
dock="group" dockWith="esri_core_projectDockPane">
<content className="ProjectHistoryDockPane" />
</dockPane>
</dockPanes>
<tabs>
<tab id="esri_core_homeTab" caption="Catalog" condition="esri_core_resourcesPane" keytip="C">
<group refID="esri_core_clipboardGroup" />
<group refID="esri_core_organize" />
<group refID="esri_core_create" />
<group refID="esri_core_update" />
<group refID="esri_metadata_metadataViewGroup" />
<group refID="esri_core_portalProject"/>
</tab>
<tab id="esri_core_insertTab" caption="Insert" keytip="N">
<group refID="esri_core_projectData"/>
<group refID="esri_project_styles"/>
<group refID="esri_core_favoritesData"/>
</tab>
<tab id="esri_core_analysisTab" caption="Analysis" keytip="A">
<group refID="esri_geoprocessing_analysisTools" />
<group refID="esri_geoprocessing_ToolsGallery" />
<group refID="esri_geoprocessing_portal" />
<group refID="esri_geoprocessing_analysis2" />
<group refID="esri_datasourcesraster_rasterLayerTemplateGroup"/>
</tab>
<tab id="esri_core_viewTab" caption="View" keytip="V">
<group refID="esri_core_dockWindows" />
<group refID="esri_core_projectViewOptionsGroup" />
<group refID="esri_mapping_syncViewGroup" placeWith="esri_core_dockWindows" insert="before" />
<group refID="esri_mapping_viewGroup" placeWith="esri_mapping_syncViewGroup" insert="before" />
<!--<group refID="esri_layouts_thumbnailGroup" insert="after" />-->
<group refID="esri_mapping_animation" insert="after"/>
<group refID="esri_mapping_effectsGroup" insert="after"/>
<group refID="esri_mapping_sceneGroup" insert="after"/>
<group refID="esri_mapping_viewClippingGroup" insert="after"/>
<!--<group refID="esri_mapping_overprint" insert="after"/>-->
<group refID="esri_mapping_profileViewGroup" insert="after"/>
<group refID="esri_mapping_navigation" insert="after"/>
<group refID="esri_layouts_thumbnailGroup"/>
<group refID="esri_mapping_thumbnailGroup"/>
<group refID="esri_mapping_accessibilityGroup"/>
</tab>
<tab id="esri_core_previewTab" caption="Preview" condition="esri_core_previewActiveCondition" tabGroupID="esri_core_previewTabGroup" keytip="W" insert="after">
<group refID="esri_core_previewNavigateGroup" />
<group refID="esri_core_previewPreviewGroup" />
<group refID="esri_core_previewThumbnail" />
</tab>
<tab id="esri_core_helpTab" caption="Help" insert="after" keytip="H">
<group refID="esri_core_customizeGroup"/>
<group refID="esri_core_helpGroup"/>
<group refID="esri_core_performanceGroup"/>
<group refID="esri_core_contactGroup"/>
</tab>
</tabs>
<tabGroups>
<tabGroup caption="Catalog View" id="esri_core_previewTabGroup">
<color A="255" R="238" G="170" B="90" />
<borderColor A="0" R="251" G="226" B="195" />
</tabGroup>
</tabGroups>
<groups>
<group id="esri_core_helpGroup" caption="Help" keytip="H" smallImage="ArcGISProHelp16">
<menu refID="esri_core_helpMenu" size="large"/>
<button refID="esri_core_learningBtn" size="large" />
</group>
<group id="esri_core_customizeGroup" caption="Customize" keytip="C" smallImage="CogWheel16">
<button refID="esri_core_ribbonBtn" size="middle" />
<button refID="esri_core_qatBtn" size="middle" />
<button refID="esri_core_Shortcuts" size="middle" />
</group>
<group id="esri_core_performanceGroup" caption="Performance" keytip="P" smallImage="DiagnosticsMonitor16">
<button refID="esri_core_monitorBtn" size="large" />
</group>
<group id="esri_core_contactGroup" caption="Contact Us" keytip="C" smallImage="SpeechBubbleUI16">
<button refID="esri_core_communityBtn" size="large" />
<button refID="esri_core_supportBtn" size="large" />
</group>
<group id="esri_core_projectData" caption="Project" sizePriorities="25,125,225" smallImage="ArcGISProject16">
<button refID="esri_mapping_newMapPalette" size="large" />
<gallery refID="esri_layouts_gallery" size="large" />
<button refID="esri_reports_newReportSplitButton" size="large"/>
<button refID="esri_presentations_newPresentationSplitButton" size="middle" />
<splitButton refID="esri_geodatabase_AddNewOrExistingNotebookSplitButton" size="middle"/>
<buttonPalette refID="esri_geoprocessing_insertMenu" size="middle"/>
<button refID="esri_layouts_importMap" size="middle" />
<gallery refID="esri_layouts_templateGallery" size="middle" />
<buttonPalette refID="esri_task_insertMenu" size="middle"/>
<menu refID="esri_geodatabase_insertMenu" size="large"/>
<button refID="esri_geodatabase_addFolderConnectionButton" size="large"/>
</group>
<group id="esri_core_favoritesData" caption="Favorites" sizePriorities="25,125,225" smallImage="FavoriteStar16">
</group>
<group id="esri_core_projectViewOptionsGroup" caption="Options" smallImage="GenericOptions16" condition="esri_core_projectItem_resourcesPane">
<buttonPalette refID="esri_core_popupTooltipPalette" size="large" />
<button refID="esri_core_projectViewLayoutCheckBoxOpen" size="middle" />
<buttonPalette refID="esri_core_projectViewDisplayType" size="middle" />
</group>
<group id="esri_core_clipboardGroup" caption="Clipboard" smallImage="EditPaste16">
<buttonPalette refID="esri_core_editPasteSplitButton" size="large" />
<subgroup refID="esri_core_editBtns"/>
</group>
<group id="esri_core_organize" caption="Organize" smallImage="EditPaste16">
<button refID="esri_core_openButton" size="large" />
<subgroup refID="esri_core_organizeItems1"/>
<subgroup refID="esri_core_organizeItems2"/>
<subgroup refID="esri_core_organizeItems3"/>
</group>
<group id="esri_core_update" caption="Update" smallImage="EditPaste16">
</group>
<group id="esri_core_create" caption="Create" smallImage="EditPaste16">
<dynamicMenu refID="esri_core_newItemsDynamicMenu"/>
<dynamicMenu refID="esri_core_addItemsDynamicMenu"/>
<dynamicMenu refID="esri_core_importItemsDynamicMenu"/>
<!--<subgroup refID="esri_core_newItems"/>-->
</group>
<group id="esri_core_dockWindows" caption="Windows" smallImage="ArcGISProjectWindow16" >
<dynamicMenu refID="esri_dockPaneSetDynamicMenu" size ="large"/>
<subgroup refID="esri_core_WindowControls"/>
<subgroup refID="esri_core_WindowControlsGP"/>
<subgroup refID="esri_core_WindowControlsExtensions"/>
</group>
<group id="esri_core_previewNavigateGroup" caption="Navigate">
<button refID="esri_core_previewZoomFullButton" size="small" />
<button refID="esri_core_previewFixedZoomInButton" size="small" />
<button refID="esri_core_previewPrevExtentButton" size="small" />
<button refID="esri_core_previewZoomToSelectionButton" size="small" />
<button refID="esri_core_previewFixedZoomOutButton" size="small" />
<button refID="esri_core_previewNextExtentButton" size="small" />
</group>
<group id="esri_core_previewPreviewGroup" caption="Preview">
<button refID="esri_core_previewShowBasemap" size="middle" />
</group>
<group id="esri_core_previewThumbnail" caption="Thumbnail">
<button refID="esri_core_previewCaptureThumbnail" size="large" />
</group>
</groups>
<palettes>
<buttonPalette id="esri_core_popupTooltipPalette" caption="Item Pop-ups" keytip="SC" itemsInRow="1" showItemCaption="true" bindChecked="false">
<tooltip heading="Display Type">Choose how popups are displayed.</tooltip>
<button refID="esri_core_HideItemTooltips"/>
<button refID="esri_core_ShowItemTooltips"/>
<button refID="esri_core_ShowDetailedItemTooltips"/>
</buttonPalette>
<buttonPalette id="esri_core_projectViewDisplayType" caption="Display Type" temsInRow="1" showItemCaption="true" keytip="DT">
<button refID="esri_core_projectDetailsView"/>
<button refID="esri_core_projectTilesView"/>
</buttonPalette>
</palettes>
<controls>
<!-- Actipro shortcuts-->
<button id="esri_core_paneOptions" caption="Pane Options">
<tooltip heading="">Access options to float, dock, or close the active view or pane.</tooltip>
</button>
<button id="esri_core_changePane" caption="Change Active Pane">
<tooltip heading="">Browse available panes and change the active pane.</tooltip>
</button>
<button id="esri_core_changeView" caption="Change Active View">
<tooltip heading="">Browse available views and change the active view.</tooltip>
</button>
<button id="esri_core_switchView" caption="Switch Active View">
<tooltip heading="">Switch the active view to the next available view.</tooltip>
</button>
<button id="esri_core_closeView" caption="Close Active View">
<tooltip heading="">Close the active view.</tooltip>
</button>
<button id="esri_core_minimizeRibbon" caption="Minimize the Ribbon">
<tooltip heading="">Show only the tab names on the ribbon.</tooltip>
</button>
<button id="esri_core_viewHelp" caption="Help">
<tooltip heading="">View help.</tooltip>
</button>
<!-- end Actipro shortcuts -->
<button id="esri_core_onlineHelpBtn" caption="Online Help" keytip="O"
className="ArcGIS.Desktop.Framework.Help.OnlineHelpCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="" largeImage="">
<tooltip heading="Online Help">Open the web help.</tooltip>
</button>
<button id="esri_core_offlineHelpBtn" caption="Offline Help" keytip="H" loadOnClick="false"
className="ArcGIS.Desktop.Framework.Help.OfflineHelpCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="" largeImage="">
<tooltip heading="Offline Help">Open the offline help.
<disabledText>Install the offline help to enable this command.</disabledText>
</tooltip>
</button>
<button id="esri_core_languageBtn" caption="Language Settings..." keytip="L" helpContextID="120001217"
className="ArcGIS.Desktop.Framework.Help.LanguageCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="GenericOptions16" largeImage="GenericOptions32">
<tooltip heading="Language Settings">Choose the language to display. Languages appear as offline help options after their corresponding language pack for the help is installed.</tooltip>
</button>
<button id="esri_core_learningBtn" caption="Learning Resources" keytip="L" helpContextID="120003935"
className="ArcGIS.Desktop.Framework.Help.LearningCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="ArcGISLearnColor16" largeImage="ArcGISLearnColor32">
<tooltip>Build your ArcGIS Pro skills with tutorials and other resources.</tooltip>
</button>
<button id="esri_core_ribbonBtn" caption="Ribbon" keytip="R" helpContextID="120001218"
className="ArcGIS.Desktop.Framework.Help.RibbonCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="CustomizeRibbon16" largeImage="CustomizeRibbon32">
<tooltip heading="Customize the Ribbon">Arrange commands on ribbon tabs to make your interaction more efficient.</tooltip>
</button>
<button id="esri_core_qatBtn" caption="Quick Access Toolbar" keytip="Q" helpContextID="120001461"
className="ArcGIS.Desktop.Framework.Help.QatCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="QuickAccessToolbar16" largeImage="QuickAccessToolbar32">
<tooltip heading="Customize Quick Access Toolbar">Add, remove, and reorder commands on the Quick Access Toolbar.</tooltip>
</button>
<button id="esri_core_monitorBtn" caption="Diagnostic Monitor" keytip="M" helpContextID="120002882"
className="ArcGIS.Desktop.Framework.Help.MonitorCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="DiagnosticsMonitor16" largeImage="DiagnosticsMonitor32">
<tooltip heading="Diagnostic Monitor">Identify the cause of application problems by monitoring the flow of status information, logs, and events.</tooltip>
</button>
<button id="esri_core_supportBtn" caption="Technical Support" keytip="T"
className="ArcGIS.Desktop.Framework.Help.SupportCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="BusinessAnalystSupport32" largeImage="BusinessAnalystSupport32">
<tooltip heading="Technical Support">Contact Esri Technical Support to troubleshoot software problems.</tooltip>
</button>
<button id="esri_core_communityBtn" caption="Esri Community" keytip="C"
className="ArcGIS.Desktop.Framework.Help.CommunityCmd" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="ArcGISProGeoNetColor16" largeImage="ArcGISProGeoNetColor32">
<tooltip heading="Esri Community">Engage with the community of ArcGIS Pro users to find answers to your questions, provide answers to others, suggest ideas, and more.</tooltip>
</button>
<button id="esri_core_notificationButton" className="NotificationButton" caption="Notification" keytip="W">
<tooltip heading="Notifications">
See messages regarding ArcGIS Pro, the project, or items in the project. Notifications are available when there is a blue dot.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_SignOnRootCommand" className="SignInRootCmd" caption="SignOn">
<tooltip heading="Sign-in Status">
Sign in or out of ArcGIS Online or your ArcGIS organization.
</tooltip>
</button>
<button id="esri_itemInfoRefreshButton" className="RefreshCmd" loadOnClick="false"
caption="Refresh" extendedCaption="Refresh the selected container in the Project pane; on context menu"
smallImage="GenericRefresh16" helpContextID="">
<tooltip heading="">Update the contents list to include any items that were recently added to this location.</tooltip>
</button>
<!-- show project dock pane -->
<button id="esri_core_showProjectDockPane" className="esri_core_module:ShowProjectDockPane"
caption="Catalog Pane" extendedCaption="Show the Catalog pane; on ribbon"
condition="esri_mapping_openProjectCondition" keytip="CP" helpContextID="120003938"
largeImage="ArcGISProjectWindow32"
smallImage="ArcGISProjectWindow16">
<tooltip heading="Catalog">
Show the Catalog pane. You can access items in and available to the project, whether they are available on a local or network computer, or from a database, a server, ArcGIS Online, or your organization's portal.
With the Catalog pane you can drag and drop items onto a map, a model, or a tool parameter. Access geoprocessing and raster function history, and add your favorite items to the project.<disabledText></disabledText>
</tooltip>
</button>
<!-- show project view -->
<button id="esri_core_showProjectView" className="esri_core_module:ShowProjectView"
caption="Catalog View" extendedCaption="Show the Catalog view; on ribbon"
condition="esri_mapping_openProjectCondition" keytip="CV" helpContextID="120003939"
largeImage="ArcGISProject32"
smallImage="ArcGISProject16">
<tooltip heading="">
Open a view that provides access to items in and available to the project. All items and actions that are available in the Catalog pane are also available in the Catalog view. You can also access detailed information about available items.
With the Catalog view you can sort items, preview spatial data, edit an item’s metadata, manage styles and other items, and add your favorite items to the project.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_projectDetailsView"
className="ArcGIS.Desktop.Internal.Core.CatalogViewDetails"
condition="esri_core_resourcesPane"
smallImage="ModelBuilderAddList16"
largeImage="ModelBuilderAddList32"
caption="Columns" extendedCaption="Display Type Columns" keytip="C" loadOnClick="true">
<tooltip heading="Columns">
Display information for each item in columns.
</tooltip>
</button>
<button id="esri_core_projectTilesView"
className="ArcGIS.Desktop.Internal.Core.CatalogViewTiles"
condition="esri_core_resourcesPane"
smallImage="ViewGallery16"
largeImage="ViewGallery32"
caption="Tiles" extendedCaption="Display Type Tiles" keytip="T" loadOnClick="true">
<tooltip heading="Tiles">
Display a thumbnail and other information on tiles.
</tooltip>
</button>
<!-- Backstage -->
<button id="esri_core_showOptionsSheetButton" className="esri_core_module:ArcGIS.Desktop.Internal.Core.IInternalCoreModule.ShowOptionsSheet"
caption="Options" extendedCaption="Show the Options dialog; on the Project tab"
largeImage="GenericOptions32"
smallImage="GenericOptions16" keytip="T">
<tooltip heading="">
Show the Options dialog box.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_showHelpButton" className="esri_core_module:ShowHelp" caption="Help" extendedCaption="Show the Help system; on the Project tab" keytip="H">
<tooltip>
Get Help for the application.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_exitApplicationButton" className="esri_core_module:ExitApplication" caption="Exit" extendedCaption="Stop ArcGIS Pro; on the Project tab" smallImage="Close16" keytip="X">
<tooltip heading="">
Close the ArcGIS Pro application.<disabledText></disabledText>
</tooltip>
</button>
<!--Home - Clipboard-->
<button id="esri_core_editPasteButton" caption="Paste" extendedCaption="Paste the item on the clipboard"
keytip="P" menuKeytip="P" loadOnClick="false"
className="ArcGIS.Desktop.Framework.PasteCMD" assembly="ArcGIS.Desktop.Framework.dll"
largeImage="EditPaste32"
smallImage="EditPaste16" >
<tooltip heading="">
Paste from clipboard.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_editPasteSpecialButton" caption="Paste Special" extendedCaption="Paste the item on the clipboard using special settings" keytip="S" loadOnClick="false"
className="ArcGIS.Desktop.Framework.PasteSpecialCMD" assembly="ArcGIS.Desktop.Framework.dll"
largeImage="EditPaste32"
smallImage="EditPaste16"
helpContextID="120002789">
<tooltip heading="">
Paste special from clipboard.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_editCutButton" caption="Cut" extendedCaption="Cut the selected item and place the item on the clipboard" loadOnClick="false" keytip="X" menuKeytip="U"
className="ArcGIS.Desktop.Framework.CutCMD" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="EditCut16"
largeImage="EditCut32">
<tooltip heading="">
Cut selection to the clipboard.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_editCopyButton" caption="Copy" extendedCaption="Copy the highlighted item(s) to the clipboard"
loadOnClick="false" keytip="CO" menuKeytip="C"
className="ArcGIS.Desktop.Framework.CopyCMD" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="EditCopy16"
largeImage="EditCopy32">
<tooltip heading="">
Copy selection to the clipboard.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_duplicateButton" caption="Duplicate" extendedCaption="Duplicate the highlighted item(s)"
loadOnClick="false" keytip="CO" menuKeytip="U"
className="ArcGIS.Desktop.Framework.DuplicateCMD" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="DuplicateItem16"
largeImage="DuplicateItem32">
<tooltip heading="">
Duplicate the selected item(s).<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_editCopyPaths" caption="Copy Path"
extendedCaption="Copy the path of the selected items to the Clipboard."
loadOnClick="false" keytip="CP" menuKeytip="Y"
className="ArcGIS.Desktop.Framework.CopyPathCMD" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="CopyPath16"
largeImage="CopyPath32">
<tooltip heading="">
Copy the path of the selected items to the Clipboard.
<disabledText>
Requires a selection in an active Catalog pane or view, or in the catalog view's Contents pane.
</disabledText>
</tooltip>
</button>
<button id="esri_core_Remove" className="RemoveProjectItemCmd" loadOnClick="false" keytip="RM"
caption="Remove" extendedCaption="Remove the item from the project."
smallImage="GenericDeleteBlack16">
<tooltip heading="">
Remove the selected items from the project or remove the selected items from the Favorites collection. This command does not delete items.
<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_editDeleteButton"
caption="Delete" extendedCaption="Delete the selection; on map editing context menu"
loadOnClick="false" keytip="D" menuKeytip="D"
className="ArcGIS.Desktop.Framework.DeleteCMD" assembly="ArcGIS.Desktop.Framework.dll"
smallImage="GenericDiscard16"
largeImage="GenericDiscard32">
<tooltip heading="">
Delete the selected items. For items that reference a file or folder on disk, the file or folder is deleted in the file system.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_newFolderButton"
caption="Folder" extendedCaption="Add new folder"
loadOnClick="false" keytip="NF"
className="CreateFolderCmd"
smallImage="FolderNew16"
largeImage="FolderNew32">
<tooltip heading="">
Create a new folder.
<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_repairProjectItem"
caption="Repair" extendedCaption="Repair the broken project item"
loadOnClick="false" keytip="RI"
className="RepairProjectItemCmd"
helpContextID="120003936"
smallImage="ProjectRepair16"
largeImage="ProjectRepair32">
<tooltip heading="">
Repair the broken project item.
<disabledText>A project item can only be repaired when the project's reference to the item is broken, for example, when the file or folder associated with the project item cannot be located on the file system.</disabledText>
</tooltip>
</button>
<!--Project related buttons-->
<button id="esri_core_saveProjectButton" className="Project+ProjectSaveCmd" flipImageRTL="true" caption="Save Project" extendedCaption="Save changes to the current project; on Project tab" loadOnClick="false" condition="esri_mapping_openProjectCondition" largeImage="ArcGISProjectSave32" smallImage="ArcGISProjectSave16" keytip="S">
<tooltip heading="">
Save the project.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_saveProjectAsButton" className="Project+ProjectSaveAsCmd" flipImageRTL="true" caption="Save Project As" extendedCaption="Save the current project to a new file; on Project tab" condition="esri_mapping_openProjectCondition" largeImage="ArcGISProjectSaveAs32" smallImage="ArcGISProjectSaveAs16" keytip="A">
<tooltip heading="">
Save a copy of the ArcGIS Project file to a new location or with a new name.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_newProjectButton" className="esri_core_module:CreateNewProject" caption="New Project" smallImage="ArcGISProjectNew16">
<tooltip heading="New Project">
Create a new project.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_openProjectButton" className="esri_core_module:OpenProject" caption="Open Project" largeImage="ArcGISProjectOpenState32" smallImage="ArcGISProjectOpenState16">
<tooltip heading="Open Project">
Open an existing project.<disabledText></disabledText>
</tooltip>
</button>
<labelControl id="esri_emptyLabel1" caption=" " hasTwoLines="false" />
<!--Undo / Redo controls-->
<customControl id="esri_core_undoHistory" caption="Undo" extendedCaption="Show the history of previous operations that can be undone; on quick access toolbar" className="ArcGIS.Desktop.Framework.UndoRedo.UndoHistoryVM" assembly="ArcGIS.Desktop.Framework.dll" smallImage="EditUndo_B_16" loadOnClick="false">
<content className="ArcGIS.Desktop.Framework.UndoRedo.UndoRedoControl" assembly="ArcGIS.Desktop.Framework.dll" />
<tooltip heading="Undo">
Undo the previous operation.<disabledText></disabledText>
</tooltip>
</customControl>
<customControl id="esri_core_redoHistory" caption="Redo" extendedCaption="Show the history of previous operations that can be redone; on quick access toolbar" className="ArcGIS.Desktop.Framework.UndoRedo.RedoHistoryVM" assembly="ArcGIS.Desktop.Framework.dll" smallImage="EditRedo_B_16" loadOnClick="false">
<content className="ArcGIS.Desktop.Framework.UndoRedo.UndoRedoControl" assembly="ArcGIS.Desktop.Framework.dll" />
<tooltip heading="Redo">
Redo the previous operation.<disabledText></disabledText>
</tooltip>
</customControl>
<button id="esri_core_undoButton" caption="Undo" extendedCaption="Undo the previous operation; on quick access toolbar" className="ArcGIS.Desktop.Framework.UndoRedo.UndoCommand" assembly="ArcGIS.Desktop.Framework.dll" flipImageRTL="true" largeImage="EditUndo_B_32" smallImage="EditUndo_B_16" loadOnClick="false">
<tooltip heading="">
Undo the previous operation.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_redoButton" caption="Redo" extendedCaption="Redo the previous operation; on quick access toolbar" className="ArcGIS.Desktop.Framework.UndoRedo.RedoCommand" assembly="ArcGIS.Desktop.Framework.dll" flipImageRTL="true" largeImage="EditRedo_B_32" smallImage="EditRedo_B_16" loadOnClick="false">
<tooltip heading="">
Redo the previous operation.<disabledText></disabledText>
</tooltip>
</button>
<button id="esri_core_Shortcuts" caption="Shortcuts" extendedCaption="Show current shortcuts" keytip="S"
className="ArcGIS.Desktop.Internal.Framework.Shortcuts.ShortcutsCmd" assembly="ArcGIS.Desktop.Framework.dll"
largeImage="Keyboard32"
smallImage="Keyboard16"