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
|
object HeapTrcViewForm: THeapTrcViewForm
Left = 320
Height = 444
Top = 164
Width = 637
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'HeapTrcViewForm'
ClientHeight = 444
ClientWidth = 637
FormStyle = fsStayOnTop
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poScreenCenter
LCLVersion = '1.9.0.0'
object lblTrcFile: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = edtTrcFileName
AnchorSideTop.Side = asrCenter
Left = 6
Height = 13
Top = 15
Width = 40
BorderSpacing.Left = 6
Caption = '.trc file'
ParentColor = False
end
object btnUpdate: TButton
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = edtTrcFileName
AnchorSideTop.Side = asrBottom
Left = 6
Height = 25
Top = 41
Width = 52
AutoSize = True
BorderSpacing.Left = 6
BorderSpacing.Top = 6
Caption = 'Update'
OnClick = btnUpdateClick
TabOrder = 2
end
object chkStayOnTop: TCheckBox
AnchorSideTop.Control = btnUpdate
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 543
Height = 24
Top = 41
Width = 88
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Stay on top'
OnChange = chkStayOnTopChange
TabOrder = 6
end
object btnBrowse: TButton
AnchorSideTop.Control = edtTrcFileName
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = edtTrcFileName
AnchorSideBottom.Side = asrBottom
Left = 564
Height = 27
Top = 8
Width = 67
Anchors = [akTop, akRight, akBottom]
BorderSpacing.Left = 6
BorderSpacing.Right = 6
Caption = '...'
OnClick = btnBrowseClick
TabOrder = 1
end
object chkUseRaw: TCheckBox
AnchorSideLeft.Control = BtnResolve
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = btnUpdate
AnchorSideTop.Side = asrCenter
Left = 248
Height = 24
Top = 41
Width = 101
BorderSpacing.Left = 6
Caption = 'Raw leak data'
Checked = True
OnChange = chkUseRawChange
State = cbChecked
TabOrder = 5
end
object ctrlPanel: TPanel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = btnUpdate
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 366
Top = 72
Width = 625
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
BevelOuter = bvNone
ClientHeight = 366
ClientWidth = 625
TabOrder = 7
object trvTraceInfo: TTreeView
AnchorSideTop.Side = asrBottom
Left = 0
Height = 274
Top = 6
Width = 625
Align = alClient
BorderSpacing.Top = 6
ReadOnly = True
TabOrder = 0
OnDblClick = trvTraceInfoDblClick
Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
end
object memoSummary: TMemo
Left = 0
Height = 81
Top = 285
Width = 625
Align = alBottom
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 1
end
object splitter: TSplitter
Cursor = crVSplit
Left = 0
Height = 5
Top = 280
Width = 625
Align = alBottom
ResizeAnchor = akBottom
end
end
object btnClipboard: TButton
AnchorSideLeft.Control = btnUpdate
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = btnUpdate
Left = 64
Height = 25
Top = 41
Width = 97
AutoSize = True
BorderSpacing.Left = 6
Caption = 'Paste Clipboard'
OnClick = btnClipboardClick
TabOrder = 3
end
object edtTrcFileName: TComboBox
AnchorSideLeft.Control = lblTrcFile
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = btnBrowse
Left = 52
Height = 27
Top = 8
Width = 506
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
ItemHeight = 0
TabOrder = 0
end
object BtnResolve: TButton
AnchorSideLeft.Control = btnClipboard
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = btnUpdate
AnchorSideTop.Side = asrCenter
Left = 167
Height = 25
Top = 41
Width = 75
AutoSize = True
BorderSpacing.Left = 6
Caption = 'BtnResolve'
OnClick = BtnResolveClick
TabOrder = 4
end
object OpenDialog: TOpenDialog
Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing, ofViewDetail]
left = 579
top = 142
end
end
|