-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmViewMain.dfm
4932 lines (4884 loc) · 249 KB
/
frmViewMain.dfm
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
object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'TES5View'
ClientHeight = 663
ClientWidth = 1370
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
Padding.Left = 3
Padding.Top = 3
Padding.Right = 3
Padding.Bottom = 3
OldCreateOrder = False
Position = poScreenCenter
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object splElements: TSplitter
Left = 458
Top = 33
Height = 603
AutoSnap = False
MinSize = 250
ResizeStyle = rsUpdate
end
object stbMain: TStatusBar
AlignWithMargins = True
Left = 3
Top = 639
Width = 1364
Height = 21
Margins.Left = 0
Margins.Right = 0
Margins.Bottom = 0
Panels = <
item
Width = 50
end>
ParentFont = True
UseSystemFont = False
end
object pnlRight: TPanel
Left = 461
Top = 33
Width = 906
Height = 603
Align = alClient
BevelOuter = bvNone
BorderStyle = bsSingle
TabOrder = 1
object pgMain: TPageControl
Left = 0
Top = 0
Width = 902
Height = 599
ActivePage = tbsView
Align = alClient
RaggedRight = True
TabOrder = 0
TabPosition = tpBottom
OnChange = pgMainChange
object tbsView: TTabSheet
Caption = 'View'
OnShow = tbsViewShow
object vstView: TVirtualEditTree
AlignWithMargins = True
Left = 0
Top = 25
Width = 894
Height = 545
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Align = alClient
BevelInner = bvNone
BevelKind = bkSoft
BorderStyle = bsNone
ClipboardFormats.Strings = (
'Plain text'
'Virtual Tree Data')
DefaultText = 'Node'
DragOperations = [doCopy]
Header.AutoSizeIndex = 1
Header.Height = 21
Header.Options = [hoColumnResize, hoDblClickResize, hoDrag, hoOwnerDraw, hoVisible]
Header.PopupMenu = pmuViewHeader
HintMode = hmTooltip
HotCursor = crHandPoint
LineStyle = lsCustomStyle
NodeDataSize = 8
ParentShowHint = False
PopupMenu = pmuView
SelectionBlendFactor = 48
SelectionCurveRadius = 3
ShowHint = True
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScroll, toAutoScrollOnExpand, toAutoTristateTracking, toAutoDeleteMovedNodes, toAutoChangeScale]
TreeOptions.MiscOptions = [toAcceptOLEDrop, toEditable, toGridExtensions, toInitOnSave, toWheelPanning, toFullRowDrag, toEditOnClick]
TreeOptions.PaintOptions = [toHotTrack, toShowButtons, toShowHorzGridLines, toShowRoot, toShowTreeLines, toShowVertGridLines, toThemeAware, toUseBlendedImages, toFullVertGridLines, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toExtendedFocus, toFullRowSelect, toRightClickSelect, toSimpleDrawSelection]
TreeOptions.StringOptions = [toAutoAcceptEditChange]
OnAdvancedHeaderDraw = vstViewAdvancedHeaderDraw
OnBeforeCellPaint = vstViewBeforeCellPaint
OnBeforeItemErase = vstViewBeforeItemErase
OnClick = vstViewClick
OnCollapsed = vstViewCollapsed
OnCollapsing = vstViewCollapsing
OnCreateEditor = vstViewCreateEditor
OnDblClick = vstViewDblClick
OnDragAllowed = vstViewDragAllowed
OnDragOver = vstViewDragOver
OnDragDrop = vstViewDragDrop
OnEditing = vstViewEditing
OnExpanded = vstViewExpanded
OnFocusChanged = vstViewFocusChanged
OnFocusChanging = vstViewFocusChanging
OnFreeNode = vstViewFreeNode
OnGetText = vstViewGetText
OnPaintText = vstViewPaintText
OnGetHint = vstViewGetHint
OnHeaderClick = vstViewHeaderClick
OnHeaderDrawQueryElements = vstViewHeaderDrawQueryElements
OnHeaderMouseDown = vstViewHeaderMouseDown
OnInitChildren = vstViewInitChildren
OnInitNode = vstViewInitNode
OnKeyDown = vstViewKeyDown
OnKeyPress = vstViewKeyPress
OnNewText = vstViewNewText
OnResize = vstViewResize
OnScroll = vstViewScroll
Columns = <
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coFixed]
Position = 0
Text = 'Labels'
Width = 250
end
item
Position = 1
Text = 'Values'
Width = 233
end>
end
object pnlViewTop: TPanel
Left = 0
Top = 0
Width = 894
Height = 25
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object fpnlViewFilter: TFlowPanel
Left = 0
Top = 0
Width = 828
Height = 25
Align = alClient
BevelOuter = bvNone
TabOrder = 0
OnResize = fpnlViewFilterResize
object lblViewFilterName: TLabel
AlignWithMargins = True
Left = 3
Top = 7
Width = 73
Height = 13
Margins.Top = 7
Caption = 'Filter by &Name:'
FocusControl = edViewFilterName
end
object edViewFilterName: TEdit
AlignWithMargins = True
Left = 82
Top = 3
Width = 121
Height = 21
TabOrder = 0
OnChange = edViewFilterChange
OnKeyDown = edViewFilterNameKeyDown
OnKeyPress = edFilterNoBeepOnEnterKeyPress
end
object cobViewFilter: TComboBox
AlignWithMargins = True
Left = 209
Top = 3
Width = 53
Height = 21
AutoDropDown = True
AutoCloseUp = True
Style = csDropDownList
ItemIndex = 0
TabOrder = 1
Text = 'and'
OnChange = edViewFilterChange
OnKeyDown = edViewFilterNameKeyDown
Items.Strings = (
'and'
'or')
end
object lblViewFilterValue: TLabel
AlignWithMargins = True
Left = 268
Top = 7
Width = 45
Height = 13
Margins.Top = 7
Caption = 'by &Value:'
FocusControl = edViewFilterValue
end
object edViewFilterValue: TEdit
AlignWithMargins = True
Left = 319
Top = 3
Width = 121
Height = 21
TabOrder = 2
OnChange = edViewFilterChange
OnKeyDown = edViewFilterNameKeyDown
OnKeyPress = edFilterNoBeepOnEnterKeyPress
end
object fpnlViewFilterKeep: TFlowPanel
AlignWithMargins = True
Left = 446
Top = 0
Width = 259
Height = 27
Margins.Top = 0
Margins.Bottom = 0
BevelOuter = bvNone
TabOrder = 3
object lblViewFilterKeep: TLabel
AlignWithMargins = True
Left = 3
Top = 7
Width = 24
Height = 13
Margins.Top = 7
Caption = 'Keep'
end
object cbViewFilterKeepChildren: TCheckBox
AlignWithMargins = True
Left = 33
Top = 3
Width = 54
Height = 21
Caption = '&children'
TabOrder = 0
OnClick = edViewFilterChange
end
object cbViewFilterKeepSiblings: TCheckBox
AlignWithMargins = True
Left = 93
Top = 3
Width = 54
Height = 21
Caption = '&siblings'
TabOrder = 1
OnClick = edViewFilterChange
end
object cbViewFilterKeepParentsSiblings: TCheckBox
AlignWithMargins = True
Left = 153
Top = 3
Width = 96
Height = 21
Caption = '&parent'#39's siblings'
TabOrder = 2
OnClick = edViewFilterChange
end
end
end
object pnlViewTopLegend: TPanel
Left = 828
Top = 0
Width = 66
Height = 25
Align = alRight
BevelOuter = bvNone
TabOrder = 1
object bnLegend: TSpeedButton
AlignWithMargins = True
Left = 3
Top = 3
Width = 60
Height = 21
Align = alTop
AllowAllUp = True
GroupIndex = 1
Caption = 'Legend'
Flat = True
OnClick = bnLegendClick
end
end
end
end
object tbsReferencedBy: TTabSheet
Caption = 'Referenced By'
ImageIndex = 3
TabVisible = False
OnShow = tbsViewShow
object lvReferencedBy: TListView
AlignWithMargins = True
Left = 0
Top = 0
Width = 894
Height = 570
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Align = alClient
BevelInner = bvNone
BevelKind = bkSoft
BorderStyle = bsNone
Columns = <
item
AutoSize = True
Caption = 'Record'
end
item
Caption = 'Signature'
Width = 70
end
item
AutoSize = True
Caption = 'File'
end>
GridLines = True
MultiSelect = True
ReadOnly = True
RowSelect = True
PopupMenu = pmuRefBy
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = lvReferencedByColumnClick
OnCompare = lvReferencedByCompare
OnDblClick = lvReferencedByDblClick
end
end
object tbsMessages: TTabSheet
Caption = 'Messages'
ImageIndex = 1
OnShow = tbsMessagesShow
object mmoMessages: TMemo
AlignWithMargins = True
Left = 0
Top = 0
Width = 894
Height = 570
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Align = alClient
HideSelection = False
PopupMenu = pmuMessages
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
OnDblClick = mmoMessagesDblClick
end
end
object tbsInfo: TTabSheet
Caption = 'Information'
ImageIndex = 2
object Memo1: TMemo
AlignWithMargins = True
Left = 3
Top = 3
Width = 888
Height = 567
Align = alClient
BorderStyle = bsNone
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'xEdit is an advanced graphical esp editor and conflict detector.'
''
'Discord: https://discord.gg/5t8RnNQ'
'Forum: https://afkmods.iguanadons.net/index.php?/topic/3750-wipz' +
'-tes5edit/'
''
'The navigation treeview on the left side shows all active master' +
's and plugins in their correct load order. By navigating that tr' +
'eeview you can look at every single record in any of your master' +
's or plugins. Once a record has been selected the detailed conte' +
'nts of that record is shown on the right side.'
''
'The view treeview shows all versions of the selected record from' +
' all plugins which contain it. The left most column is the maste' +
'r. The right most column is the plugin that "wins". This is the ' +
'version of the record that the game sees.'
''
'The navigation and view treeview use the same color coding to si' +
'gnal the conflict state of individual fields (in the view treevi' +
'ew) and the record overall (in the navigation treeview).'
''
'Previously colors were listed by background and text color. Inst' +
'ead, click the Legend button in the upper right corner. The Lege' +
'nd window will summarizes the meaning of the colors.'
''
'Conflict detection is not simply based on the existence of multi' +
'ple records for the same FormID in different plugins but instead' +
' performs a comparison of the parsed subrecord data.'
''
'The navigation treeview has a context menu where you can activat' +
'e filtering. Filtering is based on the same conflict categorizat' +
'ion as the background and text color.'
''
'Command Line Switches:'
''
'-cp:<codepage> or -cp-trans:<codepage> [sets codepage for transl' +
'atable strings to codepage number or utf8]'
'-l:<language> [Sets language, affects used codepage and .strings' +
' files]'
'-edit [Enable Edit Mode]'
'-view [Enable View Mode]'
'-saves [Enable Saves Mode / View Mode Only]'
'-IgnoreESL [Will load all modules as full modules, even if ESL f' +
'lagged]'
'-PseudoESL [xEdit will check if the module falls within ESL cons' +
'traints (not containing new records with ObjectIDs > $FFF) and l' +
'oad the file like an ESL (mapped into the FE xxx namespace) if p' +
'ossible]'
'-DontCache [Completely disables ref caching]'
'-DontCacheLoad [Don'#39't load cache files if present, but save if p' +
'ossible]'
'-DontCacheSave [Don'#39't save cache files after building refs]'
'-AllowDirectSaves:<filename list> [File may be an .esm, .esl, or' +
' .esp. Without a list of files, this will load non-official (off' +
'icial = game master, official dlcs, CCs) modules without using m' +
'emory mapped files. Optionally you can specify a list of files. ' +
'Which will only load the listed modules without using memory map' +
'ped files. This optional list may include official modules.]'
'-<gamemode> [Specifies which game mode to use. <gamemode> can be' +
' any of the following: '#39'tes5vr'#39', '#39'fo4vr'#39', '#39'tes4'#39', '#39'tes5'#39', '#39'ender' +
'al'#39', '#39'sse'#39', '#39'fo3'#39', '#39'fnv'#39', '#39'fo4'#39', '#39'fo76'#39']'
'-moprofile:<profilename> Opens the plugin selection from the MO ' +
'profile named in the switch.'
'-setesm [Set ESM flag. Plugin selection screen will appear.]'
'-clearesm [Remove ESM flag. Plugin selection screen will appear.' +
']'
'-VeryQuickShowConflicts [loads all modules according to plugins.' +
'txt without showing module selection, except if CTRL is pressed ' +
'on start]'
'-quickclean [cleans and prompts to save the file]'
'-quickautoclean [Cleans 3 times and saves in between each step]'
'-C:<path> [path to use for cache files]'
'-S:<path> [Path to look for scripts]'
'-T:<path> [Temporary Directory]'
'-D:<path> [Specify a Data Directory]'
'-O:<path> [Specify path for generated LOD files]'
'-I:<path> [Game INI Files]'
'-G:<path> [Save Game Path]'
'-P:<path><filename> [Custom Plugins.txt file]'
'-B:<path> [Backups path i.e. Edit Backups\]'
'-R:<path><filename> [Custom xEdit Log Filename]'
'All path parameters must be specified with trailing backslash.'
''
'Keyboard Shortcuts:'
''
'- Holding Shift+Ctrl+Alt while starting shows a dialog asking if' +
' the setting file should be deleted.'
'- Holding Shift while starting to reset window position'
''
'Module Selection Treeview:'
''
'- Hold SHIFT to skip building/loading references for all plugins' +
'.'
'- [UP/DOWN] arrow to navigate plugin list. If multiple plugins a' +
're selected, this will deselect them.'
'- [Space] to check or uncheck selected plugins.'
''
'Main Treeview:'
''
'- Ctrl + S Create temporary save.'
'- Ctrl + F3 to open Assets Browser'
'- Alt + F3 to open Worldspace Browser'
''
'Navagation treeview:'
''
'- Ctrl + 1 through 5 to set a Bookmark.'
'- ALT + 1 through 5 to jump to a Bookmark.'
'- F2 to change FormID of a record'
'- Ctrl or Shift while clicking to select several records/plugins' +
' at once'
'- Del To delete a record or a group of records'
'- Alt + Click to fully expand a tree. This can take a lot of tim' +
'e when expanding large trees.'
'- [Right Arrow] or + to expand current node'
'- [Left Arrow] or - to collapse current node'
'- * Expand treview (recursive)'
'- / Collapse treeview (recursive)'
''
'View treeview:'
''
'- Ctrl + UP/DOWN to move elements in unordered lists.'
'- F2 to activate inplace editor'
'- CTRL + Click on FormID to switch focus to that record'
'- [Double Click] on text field to open multiline viewer'
'- [Double Click] on [Integer, Float, or FormID] to open In-Place' +
' Editor'
'- Shift + [Double Click] on text field to open multiline editor'
'- Ctrl + C to copy to clipboard'
'- Ctrl + W from a weather record to open the visual weather edit' +
'or'
'- Alt + CRSR while in view treeview to navigate within the Navag' +
'ation treeview'
''
'Messages tab:'
''
'- CTRL + [Double Click] on FormID to switch focus to that record'
''
'Modgroup Editor:'
''
'- CTRL UP/DOWN - Move entry'
'- INSERT - Insert entry (Insert Module or CRC depending on which' +
' is selected)'
'- SHIFT + INSERT - Insert crc (when on a module)'
'- DELETE - Delete a module or crc'
'- SPACE / Mouse Click - toggle flag when a flag is currently foc' +
'used'
''
'Modgroups:'
''
'For a modgroup the be activateable, the order of the mods in the' +
' load order and modgroup must match.'
''
'If a modgroup is active, what it essentially means is that for e' +
'ach record that is contained in more than one mod of the modgrou' +
'p, only the last (in load order) is visible. That'#39's it. The invi' +
'sible record versions simply don'#39't participate in the normal con' +
'flict detection mechanisms at all.'
''
'A modgroup does not perform any merge or make any changes to any' +
' mod. All it does it hide away version of records that you'#39've st' +
'ated (by defining the modgroup) that you'#39've already checked them' +
' against each other and the hidden record is simply irrelevant.'
''
'Modgroups File and Syntax:'
''
'[xEdit EXE Name].modgroups i.e. SSEEdit.modgroups for SSEEdit. S' +
'ave in the same folder as the EXE.'
'[Plugin Name].modgroups i.e. for Someplugin.esp, Someplugin.modg' +
'roups. Save the file in your Data folder instead.'
''
'Prefixes are processed from left to right. #@Plugin.esp is the s' +
'ame -Plugin.esp. They combine "negatively" not positively.'
''
'without prefix file is both a target and a source'
'+ The file is optional'
'- The file is neither a target nor a source.'
'} Ignore load order completely'
'{ Ignore load order among a consecutive block of mods marked wit' +
'h this.'
'@ File is not a source'
'# File is not a target'
'! File is forbidden. If the listed module is active, the modgrou' +
'p is invalid.'
'<filename>:CRC32'
''
'If a module is followed by a list of one or more CRC values, the' +
' modgroup is only available if the module has one of the listed ' +
'CRCs. Source means that if a record in this mod is found, then i' +
't will hide the versions of the same record from all mods listed' +
' above it that are targets.'
''
'[Modgroup Name]'
'MainPlugin.esm'
'MainPlugin - A.esp'
'MainPlugin - B.esp'
'MainPlugin - C.esp'
'MainPlugin - D.esp'
'MainPlugin - E.esp'
''
'The above example means that all in that particular order for th' +
'e modgroup to be activateable.'
''
'[Modgroup Name A]'
'-MainPlugin - C.esp'
'MainPlugin - D.esp'
'MainPlugin - E.esp'
''
'[Modgroup Name B]'
'MainPlugin - C.esp'
'-MainPlugin - D.esp'
'MainPlugin - E.esp'
''
'Group A) If a record is present in E and D, the records from plu' +
'gin D will be hidden.'
'Group B) If a record is present in E and C, the records from plu' +
'gin C will be hidden.'
''
'[Modgroup Name]'
'MainPlugin - C.esp:12345678'
'MainPlugin - D.esp:A1B2C3D4,F9E8D7C6'
'MainPlugin - E.esp'
''
''
'Not all mod groups defined in that file will necessarily show up' +
' in the selection list. Mod groups for which less then 2 plugins' +
' are currently active are filtered. If the load order of plugins' +
' doesn'#39't match the order in the mod group it is also filtered.'
''
'What'#39's the effect of having a mod group active?'
''
'When a record for the view treeview is generated and multiple fi' +
'les of the same mod group modify this record, then only the newe' +
'st of the files in that modgroup will be shown. So instead of se' +
'eing 5 different files with numerous conflicts you are only seei' +
'ng the newest file in that mod group. This also affects conflict' +
' classification.'
''
'It'#39's worth pointing out here that if a record is overridden by b' +
'oth plugins in a mod group and other plugins that normal conflic' +
't detection will still work perfectly.'
''
'Basically this system can be used to reduce a lot of noise from ' +
'the conflict reports.'
''
'Reference Caching:'
''
'[GameMode]\Data\FO4Edit Cache'
''
'Cache files are based on the CRC of the xEdit EXE, then the plug' +
'in filename. For example 3917E178_DLCNukaWorld_esm_43D25C56.refc' +
'ache. Once built xEdit will load the cache file rather then buil' +
'd the references again. This reduces load time.'
''
'xEdit Backup Files:'
''
'[GameMode]\Data\FO4Edit Backups'
''
'Backups are saved with the file name [PluginName].[esm/esp/els].' +
'backup.[Date Stamp} For example PluginName.esp.backup.2018_07_25' +
'_20_52_10. These can be renamed and copied to the Data folder.'
''
'Show Only Master and Leafs:'
''
'What this does is, similar to modgroups, reduce which records ar' +
'e being show in the view treeview (and are taken into account fo' +
'r calculating conflict information).'
''
'Suppose you have the following mods:'
''
''
'+------------+'
'| |'
'| Master |'
'| |'
'+----^-------+'
' |'
' | +--------------+ +-------------+'
' | | <----------------+ |'
' +-------+ A | | D |'
' | | <-----+ | |'
' | +--------------+ | +-------------+'
' | |'
' | +--------------+ | +-------------+'
' | | | +----------+ |'
' +-------+ B | | E |'
' | | <----------------+ |'
' | +--------------+ +-------------+'
' |'
' | +--------------+'
' | | |'
' +-------+ C |'
' | |'
' +--------------+'
''
'Then with active "Only Master and Leafs" only Master, D, E, and ' +
'C will be shown. The assumption here being that whatever the con' +
'tents of A or B, it'#39's already being taken into account by D and/' +
'or E.'
''
'This assumption is obviously only true if the author of mods D a' +
'nd E did their job correctly, so this isn'#39't a good option to hav' +
'e always enabled. As long as that assumption holds true, it can ' +
'declutter the reported conflicts significantly.'
'')
ParentColor = True
ParentFont = False
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
WordWrap = False
end
end
object tbsWEAPSpreadsheet: TTabSheet
Caption = 'Weapon Spreadsheet'
ImageIndex = 4
OnShow = tbsSpreadsheetShow
object vstSpreadSheetWeapon: TVirtualEditTree
Tag = 3
Left = 0
Top = 0
Width = 894
Height = 573
Align = alClient
Color = clInfoBk
DefaultText = 'Node'
DragOperations = [doCopy]
Header.AutoSizeIndex = 0
Header.Options = [hoColumnResize, hoDblClickResize, hoRestrictDrag, hoShowSortGlyphs, hoVisible]
Header.SortColumn = 1
HintMode = hmTooltip
HotCursor = crHandPoint
IncrementalSearch = isAll
ParentShowHint = False
PopupMenu = pmuSpreadsheet
SelectionBlendFactor = 32
ShowHint = True
TabOrder = 0
TreeOptions.MiscOptions = [toAcceptOLEDrop, toEditable, toGridExtensions, toInitOnSave, toToggleOnDblClick, toWheelPanning, toFullRowDrag, toEditOnClick]
TreeOptions.PaintOptions = [toHotTrack, toShowHorzGridLines, toShowVertGridLines, toThemeAware, toUseBlendedImages, toFullVertGridLines, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toExtendedFocus, toFullRowSelect, toMultiSelect, toRightClickSelect, toSimpleDrawSelection]
TreeOptions.StringOptions = [toAutoAcceptEditChange]
OnClick = vstSpreadSheetClick
OnCompareNodes = vstSpreadSheetCompareNodes
OnCreateEditor = vstSpreadSheetCreateEditor
OnDragAllowed = vstSpreadSheetDragAllowed
OnDragOver = vstSpreadSheetDragOver
OnDragDrop = vstSpreadSheetDragDrop
OnEditing = vstSpreadSheetEditing
OnFreeNode = vstSpreadSheetFreeNode
OnGetText = vstSpreadSheetGetText
OnPaintText = vstSpreadSheetPaintText
OnGetHint = vstSpreadSheetGetHint
OnHeaderClick = vstNavHeaderClick
OnIncrementalSearch = vstSpreadSheetIncrementalSearch
OnInitNode = vstSpreadSheetWeaponInitNode
OnNewText = vstSpreadSheetNewText
Columns = <
item
MinWidth = 150
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 0
Text = 'File Name'
Width = 150
end
item
MinWidth = 75
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 1
Text = 'FormID'
Width = 75
end
item
MinWidth = 150
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 2
Text = 'EditorID'
Width = 150
end
item
MinWidth = 150
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 3
Text = 'Weapon Name'
Width = 150
end
item
MinWidth = 150
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 4
Text = 'Enchantment'
Width = 150
end
item
MinWidth = 120
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 6
Text = 'Type'
Width = 120
end
item
Alignment = taRightJustify
MinWidth = 85
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 8
Text = 'Speed'
Width = 85
end
item
Alignment = taRightJustify
MinWidth = 85
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 9
Text = 'Reach'
Width = 85
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 10
Text = 'Value'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 11
Text = 'Health'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 85
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 12
Text = 'Weight'
Width = 85
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]
Position = 13
Text = 'Damage'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 70
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 5
Text = 'Amount'
Width = 70
end
item
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 7
Text = 'Skill'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 14
Text = 'Stagger'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 15
Text = 'Crit. Damage'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 16
Text = 'Crit. % Mult.'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 17
Text = 'Range Min'
Width = 65
end
item
Alignment = taRightJustify
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 18
Text = 'Range Max'
Width = 65
end
item
MinWidth = 65
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 19
Text = 'Sound'
Width = 65
end
item
MinWidth = 120
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 20
Text = 'Template'
Width = 120
end>
end
end
object tbsARMOSpreadsheet: TTabSheet
Caption = 'Armor Spreadsheet'
ImageIndex = 5
OnShow = tbsSpreadsheetShow
object vstSpreadsheetArmor: TVirtualEditTree
Tag = 3
Left = 0
Top = 0
Width = 894
Height = 573
Align = alClient
Color = clInfoBk
DefaultText = 'Node'
DragOperations = [doCopy]
Header.AutoSizeIndex = 0
Header.Options = [hoColumnResize, hoDblClickResize, hoRestrictDrag, hoShowSortGlyphs, hoVisible]
Header.SortColumn = 1
HintMode = hmTooltip
HotCursor = crHandPoint
IncrementalSearch = isAll
ParentShowHint = False
PopupMenu = pmuSpreadsheet
SelectionBlendFactor = 32
ShowHint = True
TabOrder = 0
TreeOptions.MiscOptions = [toAcceptOLEDrop, toEditable, toGridExtensions, toInitOnSave, toToggleOnDblClick, toWheelPanning, toFullRowDrag]
TreeOptions.PaintOptions = [toShowHorzGridLines, toShowVertGridLines, toThemeAware, toUseBlendedImages, toFullVertGridLines, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toExtendedFocus, toFullRowSelect, toMultiSelect, toRightClickSelect]
TreeOptions.StringOptions = [toAutoAcceptEditChange]
OnClick = vstSpreadSheetClick
OnCompareNodes = vstSpreadSheetCompareNodes
OnCreateEditor = vstSpreadSheetCreateEditor
OnDragAllowed = vstSpreadSheetDragAllowed
OnDragOver = vstSpreadSheetDragOver
OnDragDrop = vstSpreadSheetDragDrop
OnEditing = vstSpreadSheetEditing
OnFreeNode = vstSpreadSheetFreeNode
OnGetText = vstSpreadSheetGetText
OnPaintText = vstSpreadSheetPaintText
OnGetHint = vstSpreadSheetGetHint
OnHeaderClick = vstNavHeaderClick
OnIncrementalSearch = vstSpreadSheetIncrementalSearch
OnInitNode = vstSpreadSheetArmorInitNode
OnNewText = vstSpreadSheetNewText
Columns = <
item
MinWidth = 150
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible]