-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuFrmFindRefs.dfm
92 lines (92 loc) · 2.1 KB
/
uFrmFindRefs.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
object frmFindRefs: TfrmFindRefs
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'List of "Jump to conversation" events'
ClientHeight = 422
ClientWidth = 433
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poMainFormCenter
DesignSize = (
433
422)
TextHeight = 15
object Label1: TLabel
Left = 8
Top = 391
Width = 160
Height = 15
Anchors = [akLeft, akBottom]
Caption = 'DblClick on item to jump to it.'
ExplicitTop = 342
end
object btnClose: TButton
Left = 355
Top = 391
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 0
OnClick = btnCloseClick
end
object GroupBox1: TGroupBox
AlignWithMargins = True
Left = 3
Top = 3
Width = 427
Height = 382
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = 'List of events'
DefaultHeaderFont = False
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -12
HeaderFont.Name = 'Segoe UI'
HeaderFont.Style = [fsBold]
TabOrder = 1
object lvRefs: TListView
AlignWithMargins = True
Left = 5
Top = 20
Width = 417
Height = 357
Align = alClient
Columns = <
item
Caption = 'Conversation/Event'
Width = 200
end
item
Caption = 'Jump to label'
Width = 200
end>
GridLines = True
Items.ItemData = {}
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnCustomDrawItem = lvRefsCustomDrawItem
OnDblClick = lvRefsDblClick
OnEditing = lvRefsEditing
ExplicitLeft = 7
ExplicitTop = 22
end
end
object btnReload: TButton
Left = 274
Top = 391
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Reload'
TabOrder = 2
OnClick = lstRefsClick
end
end