-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDependencyTreeForm.dfm
More file actions
93 lines (93 loc) · 2.08 KB
/
Copy pathDependencyTreeForm.dfm
File metadata and controls
93 lines (93 loc) · 2.08 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
object fDependencyTreeForm: TfDependencyTreeForm
Left = 302
Top = 126
BorderStyle = bsDialog
Caption = 'Dependency tree'
ClientHeight = 560
ClientWidth = 960
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
PixelsPerInch = 96
TextHeight = 13
object trvDepsTree: TTreeView
Left = 8
Top = 32
Width = 545
Height = 521
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
HideSelection = False
Indent = 32
ParentFont = False
PopupMenu = pmTreeControl
ReadOnly = True
RightClickSelect = True
TabOrder = 1
OnChange = trvDepsTreeChange
end
object cbFullNames: TCheckBox
Left = 8
Top = 8
Width = 97
Height = 17
Caption = 'Show full names'
TabOrder = 0
OnClick = cbFullNamesClick
end
object gbSelectedNode: TGroupBox
Left = 560
Top = 8
Width = 393
Height = 545
Caption = 'Selected node dependency chain'
TabOrder = 2
object bvlChainSeparator: TBevel
Left = 8
Top = 496
Width = 377
Height = 9
Shape = bsBottomLine
end
object scbDependencies: TScrollBox
Left = 8
Top = 16
Width = 377
Height = 481
HorzScrollBar.Visible = False
VertScrollBar.Smooth = True
VertScrollBar.Tracking = True
BorderStyle = bsNone
TabOrder = 0
end
object btnShowAllCondNotes: TButton
Left = 200
Top = 512
Width = 185
Height = 25
Caption = 'Show all condition notes...'
TabOrder = 1
OnClick = btnShowAllCondNotesClick
end
end
object pmTreeControl: TPopupMenu
OnPopup = pmTreeControlPopup
Left = 528
object pmiTree_Expand: TMenuItem
Caption = 'Expand subtree'
OnClick = pmiTree_ExpandClick
end
object pmiTree_Collapse: TMenuItem
Caption = 'Collapse subtree'
OnClick = pmiTree_CollapseClick
end
end
end