This repository was archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathreplacefuncsunit.lfm
116 lines (116 loc) · 2.66 KB
/
replacefuncsunit.lfm
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
object ReplaceFuncsForm: TReplaceFuncsForm
Left = 374
Height = 626
Top = 49
Width = 928
Caption = 'Functions to replace'
ClientHeight = 626
ClientWidth = 928
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '0.9.31'
object ButtonPanel: TButtonPanel
Left = 6
Height = 34
Top = 586
Width = 916
OKButton.Name = 'OKButton'
OKButton.OnClick = OKButtonClick
HelpButton.Name = 'HelpButton'
CloseButton.Name = 'CloseButton'
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
TabOrder = 0
ShowButtons = [pbOK, pbCancel, pbHelp]
end
object Grid: TStringGrid
AnchorSideLeft.Control = Splitter1
AnchorSideLeft.Side = asrBottom
AnchorSideBottom.Control = ButtonPanel
Left = 162
Height = 580
Top = 0
Width = 766
Anchors = [akTop, akLeft, akRight, akBottom]
ColumnClickSorts = True
Columns = <
item
Title.Caption = 'Category'
Width = 100
end
item
Title.Caption = 'Delphi Function'
Width = 150
end
item
Title.Caption = 'Replacement'
Width = 310
end
item
Title.Caption = 'Package'
Width = 90
end
item
Title.Caption = 'Unit'
Width = 90
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goEditing, goAutoAddRows, goSmoothScroll]
PopupMenu = PopupMenu1
RowCount = 2
TabOrder = 1
OnPrepareCanvas = GridPrepareCanvas
ColWidths = (
100
150
310
90
90
)
end
object CategoryListBox: TCheckListBox
AnchorSideTop.Control = CategoriesLabel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Splitter1
AnchorSideBottom.Control = ButtonPanel
Left = 0
Height = 553
Top = 27
Width = 157
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 5
ItemHeight = 0
OnClickCheck = CategoryListBoxClickCheck
TabOrder = 2
end
object Splitter1: TSplitter
Left = 157
Height = 270
Top = 0
Width = 5
Align = alNone
end
object CategoriesLabel: TLabel
Left = 6
Height = 14
Top = 8
Width = 110
BorderSpacing.Right = 6
Caption = 'Categories to convert:'
ParentColor = False
ParentFont = False
end
object PopupMenu1: TPopupMenu
OnPopup = PopupMenu1Popup
left = 248
top = 152
object InsertRow1: TMenuItem
Caption = 'Insert Row'
OnClick = InsertRow1Click
end
object DeleteRow1: TMenuItem
Caption = 'Delete Row'
OnClick = DeleteRow1Click
end
end
end