source: MicroThreading/UMicroThreadCallStack.lfm

Last change on this file was 168, checked in by george, 13 years ago
  • Added: Context menu in microthreads list to show microthread call stack.
File size: 908 bytes
Line 
1object CallStackForm: TCallStackForm
2 Left = 257
3 Height = 438
4 Top = 107
5 Width = 611
6 Caption = 'Call stack'
7 ClientHeight = 438
8 ClientWidth = 611
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 LCLVersion = '0.9.31'
12 object ListView1: TListView
13 Left = 8
14 Height = 424
15 Top = 8
16 Width = 595
17 Anchors = [akTop, akLeft, akRight, akBottom]
18 Columns = <
19 item
20 Caption = 'Sequence'
21 end
22 item
23 Caption = 'Address'
24 Width = 70
25 end
26 item
27 Caption = 'Line'
28 end
29 item
30 Caption = 'Class'
31 Width = 100
32 end
33 item
34 Caption = 'Procedure/Method'
35 Width = 120
36 end
37 item
38 Caption = 'Source file'
39 Width = 200
40 end>
41 ReadOnly = True
42 TabOrder = 0
43 ViewStyle = vsReport
44 end
45end
Note: See TracBrowser for help on using the repository browser.